/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #b59b6f;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background-color: rgba(181, 155, 111, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* Logo Styles */
.logo {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-container {
    position: relative;
    width: 178px;
    height: 63px;
}

.logo-text-safari {
    position: absolute;
    font-family: 'Fredoka', sans-serif;
    font-weight: 500;
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2.3px;
    left: 55px;
    top: 42px;
}

.logo-text-main {
    position: absolute;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    color: #473318;
    font-size: 26px;
    text-transform: uppercase;
    letter-spacing: 0.26px;
    left: 32px;
    top: 17px;
}

.logo-icon-small {
    position: absolute;
    width: 14px;
    height: 13px;
    left: 36px;
    top: 20px;
}

.logo-icon-main {
    position: absolute;
    width: 40px;
    height: 62px;
    left: 0;
    top: 0;
}

.logo-icon-small svg,
.logo-icon-main svg {
    width: 100%;
    height: 100%;
}

/* Navigation Styles */
.nav-desktop {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-item {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 14px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 4px;
}

.nav-item:hover {
    background-color: #473318;
    transform: scale(1.05);
}

.nav-item.active {
    font-weight: bold;
}

.nav-item.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #473318;
    border-radius: 2px;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    gap: 4px;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
    display: none;
    background-color: #b59b6f;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.mobile-nav {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-item {
    background: none;
    border: none;
    color: white;
    padding: 0.75rem 1rem;
    text-align: left;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
    background-color: #473318;
}

/* Hero Section */
.hero {
    position: relative;
    height: 75vh; /* Changed from 100vh to 60vh */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/images/main-bg.webp') center/cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.hero-logo-circle {
    position: absolute;
    top: 8rem;
    left: 50%;
    transform: translateX(-50%);
    width: 176px;
    height: 176px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(2px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-logo-text-safari {
    position: absolute;
    font-family: 'Fredoka', sans-serif;
    font-weight: 500;
    color: white;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.16px;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.hero-logo-text-main {
    position: absolute;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    color: #473318;
    font-size: 29px;
    text-transform: uppercase;
    letter-spacing: 0.29px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 10px;
}

.hero-logo-icon {
    position: absolute;
    width: 68px;
    height: 87px;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.hero-logo-icon svg {
    width: 100%;
    height: 100%;
}

.hero-content {
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    max-width: 600px;
    padding: 0 1rem;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    color: white;
    font-size: 3rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 1.5rem 0;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.star-line {
    flex: 1;
    height: 3px;
    background-color: white;
    border-radius: 10px;
    max-width: 86px;
}

.star-icon {
    width: 36px;
    height: 36px;
}

.star-icon svg {
    width: 100%;
    height: 100%;
}

.hero-description {
    color: white;
    font-size: 1rem;
    margin: 1.5rem 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: none;
    border: 2px solid white;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 2rem auto 0;
}

.hero-cta-btn:hover {
    background-color: white;
    color: #473318;
    transform: scale(1.05);
}

.hero-cta-btn svg {
    width: 24px;
    height: 24px;
}

/* Section Styles */
section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    color: #473318;
    font-size: 3rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-line {
    width: 200px;
    height: 3px;
    background-color: #473318;
    border-radius: 10px;
    margin: 0 auto;
}

/* Home Section */
.home-section {
    background-color: white;
}

.section-intro {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.section-intro p {
    font-size: 1rem;
    color: #2c3e50;
}

.content-block {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
}

.content-block-reverse {
    flex-direction: row-reverse;
}

.content-image {
    flex: 1;
}

.content-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.content-text {
    flex: 1;
}

.content-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.content-text p {
    margin-bottom: 1rem;
}

.content-text ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.content-text li {
    margin-bottom: 0.5rem;
}

/* Accommodation Section */
.accommodation-section {
    background-color: #e5d7be;
}

.accommodation-content {
    display: flex;
    gap: 2rem;
    margin-bottom: 4rem;
}

.accommodation-banner {
    flex: 2;
}

.accommodation-banner img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.services-card {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.services-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    color: #2c3e50;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.services-card p {
    margin-bottom: 1rem;
}

.services-list {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.services-icons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-icon {
    font-size: 1.2rem;
}

.services-text {
    flex: 1;
}

.services-text p {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.room-features-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 2rem;
}

.room-icons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.room-icon {
    font-size: 2rem;
}

.room-features-text {
    flex: 1;
}

.room-features-text p {
    margin-bottom: 1rem;
}

/* Entertainment Section */
.entertainment-section {
    background-color: #f8f9fa;
}

.entertainment-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
}

.entertainment-banner {
    flex: 2;
}

.entertainment-banner img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.entertainment-text {
    flex: 1;
}

.entertainment-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.attractions-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-direction: row-reverse;
}

.attractions-images {
    flex: 2;

}

.attraction-images img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.attractions-text {
    flex: 1;
}

.attractions-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.attractions-text ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.attractions-text li {
    margin-bottom: 0.5rem;
}

.attractions-text .note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
}

/* Tariffs Section */
.tariffs-section {
    background-color: #e5d7be;
}

.tariffs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.tariff-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.tariff-image {
    height: 250px;
}

.tariff-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tariff-content {
    padding: 1.5rem;
}

.tariff-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    color: #2c3e50;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

/* Footer */
.footer-contact {
    background-color: #825f41;
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    color: white;
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: white;
    margin-bottom: 0.5rem;
}

.tripadvisor-logo {
    color: white;
    font-weight: bold;
    margin-bottom: 1rem;
}

.hey-breakfast {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-style: italic;
    color: white;
    font-size: 1.25rem;
    text-transform: uppercase;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 48px;
    height: 48px;
    background-color: #e5d7be;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: white;
    border-color: #e5d7be;
}

.footer-copyright {
    background-color: #544432;
    padding: 1rem 0;
    text-align: center;
}

.footer-copyright p {
    color: white;
    font-size: 0.9rem;
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu.active {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .content-block,
    .content-block-reverse {
        flex-direction: column;
    }
    
    .accommodation-content {
        flex-direction: column;
    }
    
    .entertainment-content {
        flex-direction: column;
    }
    
    .attractions-content {
        flex-direction: column;
    }
    
    .attractions-images {
        grid-template-columns: 1fr 1fr;
        height: 300px;
    }
    
    .attraction-image-wide {
        grid-column: span 2;
    }
    
    .tariffs-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .room-features-card {
        flex-direction: column;
        text-align: center;
    }
    
    .room-icons {
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 50vh; /* Smaller height on mobile */
    }
    
    .hero-logo-circle {
        width: 128px;
        height: 128px;
        top: 4rem;
    }
    
    .hero-content {
        top: 65%;
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .services-list {
        flex-direction: column;
        gap: 1rem;
    }
    
    .services-icons {
        flex-direction: row;
        gap: 1rem;
    }
    
    .attractions-images {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .attraction-image {
        height: 200px;
    }
    
    .attraction-image-wide {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .hero-logo-circle {
        width: 100px;
        height: 100px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-stars {
        gap: 0.25rem;
    }
    
    .star-icon {
        width: 24px;
        height: 24px;
    }
    
    section {
        padding: 2rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
}