:root {
    --primary: #2d4a22;
    /* Forest Green */
    --primary-light: #4a6d3c;
    --accent: #d4a373;
    /* Earthy Gold */
    --bg-light: #fefae0;
    /* Cream */
    --text-dark: #283618;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Glassmorphism Utility */
.glass {
    background: var(--glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade {
    animation: fadeInUp 0.8s ease forwards;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 0.8rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
    background: white;
    box-shadow: var(--shadow);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    /* Center alignment */
}

.nav-links a:not(.btn) {
    color: var(--text-dark);
    font-weight: 600;
    transition: var(--transition);
}

.nav-links a:hover:not(.btn) {
    color: var(--accent);
}

.logo span {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 50px;
    width: auto;
    border-radius: 8px;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
    z-index: 1002;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a:hover {
    color: var(--accent);
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4)), url('../images/hero.jpg') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 2rem 5%;
    margin-top: 0;
    box-sizing: border-box;
    overflow: hidden;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    margin-bottom: 1rem;
    line-height: 1.1;
    font-weight: 400;
}

.hero h1 i {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 700;
}

.hero p {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    max-width: 600px;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.9;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translate(-50%, 0);
    }

    40% {
        transform: translate(-50%, -10px);
    }

    60% {
        transform: translate(-50%, -5px);
    }
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(45, 74, 34, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--white);
}

.btn-white:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-3px);
}

.btn-dark {
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
    padding: 0.8rem 2rem;
    border-radius: 50px;
}

.btn-dark:hover {
    background: transparent;
    color: var(--primary);
    transform: translateY(-3px);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    position: relative;
    animation: fadeInUp 0.5s ease;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-dark);
}

/* Gallery Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    padding: 0 5%;
}

.gallery-item {
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Testimonial Section */
.testimonial-section {
    padding: 100px 5%;
    text-align: center;
    background: #2d4a22;
    /* Forest Green */
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    color: white;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto 0;
}

.testimonial-card {
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

/* CTA Section */
.cta-section {
    background-color: #8e7d66;
    /* Earthy Brown */
    padding: 100px 5%;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-btn {
    background: var(--primary);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.cta-btn:hover {
    background: #3e5c33;
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.room-images::-webkit-scrollbar {
    display: none;
}

.room-images {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

footer {
    background: #0a1128;
    /* Dark Navy */
    color: var(--white);
    padding: 80px 5% 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-about .footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-about .footer-logo img {
    height: 45px;
    border-radius: 6px;
    background: white;
    padding: 2px;
}

.footer-about .footer-logo span {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: var(--white);
}

.footer-about p {
    opacity: 0.8;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 25px;
    max-width: 400px;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    font-size: 1.5rem;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--accent);
    opacity: 1;
    transform: translateY(-3px);
}

.footer-links h3,
.footer-contact h3 {
    font-size: 1.1rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
    font-size: 1rem;
    font-weight: 600;
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--accent);
}

.footer-contact>div {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.footer-contact div i {
    color: #4a6d3c;
    font-size: 1.4rem;
    margin-top: 3px;
    background: rgba(255, 255, 255, 0.05);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.footer-contact div p {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    opacity: 0.8;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    opacity: 0.5;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    font-size: 0.9rem;
    opacity: 0.5;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    opacity: 1;
}

.branding {
    font-size: 0.9rem;
    opacity: 0.7;
}

.branding a {
    color: #d4a373;
    font-weight: 600;
    text-decoration: underline !important;
}

/* About Us Enhancements */
.about-image-container {
    position: relative;
    border-radius: 20px;
    overflow: visible;
    /* To allow floating badge */
}

.about-image-container img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.hospitality-badge {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background: #2d4a22;
    color: white;
    padding: 25px 35px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    z-index: 5;
}

.hospitality-badge h3 {
    font-size: 2rem;
    margin: 0;
    line-height: 1;
}

.hospitality-badge p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
    opacity: 0.9;
}

.about-tag {
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 15px;
    display: block;
}

.about-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f8f9f5;
    padding: 15px 20px;
    border-radius: 12px;
}

.info-item i {
    color: var(--primary);
    font-size: 1.5rem;
}

.info-content h4 {
    font-size: 1rem;
    margin-bottom: 2px;
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
}

.info-content p {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
}

/* Facilities Section Upgrade */
#facilities {
    background: #fbfbfb !important;
    padding: 120px 5% !important;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1240px;
    margin: 60px auto 0;
}

.facility-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.facility-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.facility-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.facility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.facility-card:hover .facility-image img {
    transform: scale(1.1);
}

.facility-content {
    padding: 45px 30px;
    text-align: center;
}

.facility-icon {
    font-size: 2.2rem;
    color: var(--accent);
    margin-bottom: 25px;
    display: block;
    transition: transform 0.3s ease;
}

.facility-card:hover .facility-icon {
    transform: scale(1.1);
}

.facility-content h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.facility-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.about-section {
    background: #fff;
    padding: 120px 5%;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive Media Queries - Must be at VERY bottom */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 75%;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        box-shadow: -15px 0 40px rgba(0, 0, 0, 0.15);
        z-index: 1001;
        transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .nav-links.active {
        display: flex;
        animation: slideIn 0.3s ease-out;
    }

    @keyframes slideIn {
        from {
            transform: translateX(100%);
        }

        to {
            transform: translateX(0);
        }
    }

    .mobile-menu-btn {
        display: block !important;
    }

    .nav-links a {
        font-size: 1.3rem;
        font-weight: 600;
        color: var(--primary) !important;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
        padding: 0 5%;
    }

    .about-section {
        padding: 60px 5%;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about-image-container {
        margin-bottom: 25px;
    }

    .hospitality-badge {
        bottom: -15px;
        right: 0;
        padding: 15px 25px;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        gap: 15px;
        padding: 0 10%;
    }

    .hero-btns .btn {
        width: 100%;
        text-align: center;
    }

    /* Footer Responsive Fixes */
    footer {
        padding: 60px 5% 40px;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-about .footer-logo {
        flex-direction: column;
        justify-content: center;
        gap: 10px;
        margin-bottom: 15px;
    }

    .footer-about p {
        margin: 0 auto 25px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact>div {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .footer-links ul li {
        margin-bottom: 12px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        padding-top: 30px;
    }
}