/* --- Basic Setup --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    overflow-x: hidden; /* ✅ FIX: Prevents horizontal scrolling */
}

/* This is a user preference, but it can hide overflow issues. */
/* It's better to fix the root cause like we did above. */
body::-webkit-scrollbar {
    display: none;
}

/* --- Header & Navigation Bar --- */
header {
    background-color: #ffffff;
    border-bottom: 3px solid #ff8c00;
    padding: 15px 5%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none
}

.logo img {
    height: 60px;
}

.logo span {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
}

.nav-links ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: #e67e22;
    font-weight: 500;
    font-size: 1.2rem;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a:hover {
    color: #d35400;
}

.nav-links a.active {
    color: #d35400;
    font-weight: 600;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #ff8c00;
}

.mobile-menu-button {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
}

/* --- Hero Section --- */
.hero {
    height: 80vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    color: #fff;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hero-content .tagline {
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background-color: #e67e22;
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #d35400;
    transform: translateY(-3px);
}

/* --- General Section Styling --- */
/* ✨ NOTE: Merged duplicated styles into one block for clarity */
.content-section {
    padding: 80px 5%;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff8c00; /* Using your brand orange */
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
    width: 80px;
    height: 4px;
    background-color: #ff8c00;
}

.btn {
    display: inline-block;
    background-color: #e67e22;
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn:hover {
    background-color: #d35400;
    transform: translateY(-3px);
}

/* --- About Us Section --- */
#about {
    padding: 80px 5%;
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.about-image,
.about-text {
    flex: 1;
    /* min-width: 320px; */
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.about-text h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #555;
}

/* --- Other Sections (Values, Gallery, Testimonials, etc.) --- */
/* Your other sections remain here... */

/* Grand Opening */
.grand-opening {
    text-align: center;
    margin-bottom: 50px;
}

.grand-opening h3 {
    color: #ff8c00;
    font-size: 24px;
    margin-bottom: 10px;
}

.grand-opening p {
    max-width: 700px;
    margin: 0 auto;
    color: #444;
}

/* Values Section */
.values-section {
    background: #fffaf5;
    padding: 80px 20px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: #ffffff;
    padding: 40px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.value-card i {
    font-size: 2.5rem;
    color: #ff8c00;
    margin-bottom: 20px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.value-card:hover i {
    transform: scale(1.2);
    color: #e67600;
}

.value-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.value-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 20px;
    background: #fff;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%; /* Changed to 100% to avoid distortion in some cases */
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.caption {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .caption {
    opacity: 1;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 20px;
    background: url('./src/guestsay_pic.jpeg') center/cover no-repeat;
    position: relative;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.testimonials-section h2 {
    color: white;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.testimonials-section .container {
    position: relative;
    z-index: 1;
}

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    max-width: 700px;
    margin: 0 auto;
    color: #fff;
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #ffd47f;
}

.owl-nav button {
    background: #ff8c00;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: #fff !important;
    font-size: 20px !important;
    margin: 0 5px;
    transition: background 0.3s;
}

.owl-nav button:hover {
    background: #e67600;
}

.owl-dots .owl-dot span {
    background: #ccc;
    transition: background 0.3s;
}

.owl-dots .owl-dot.active span {
    background: #ff8c00;
}

/* Sustainability Section */
.sustainability-section {
    padding: 80px 20px;
    background: #f7f7f7;
    text-align: center;
}

.sustainability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.sustain-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sustain-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.sustain-card i {
    font-size: 2rem;
    color: #ff8c00;
    margin-bottom: 15px;
}

.sustain-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.sustain-card p {
    font-size: 0.95rem;
    color: #555;
}

/* --- Footer --- */
.site-footer {
    background-color: #2c3e50;
    color: #bdc3c7;
    padding: 60px 0 20px 0;
    font-size: 0.95rem;
    border-bottom: 3px solid #ff8c00;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-column h3 {
    font-size: 1.2rem;
    color: #ff8c00;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 50px;
    height: 2px;
    background-color: #ff8c00;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    margin-bottom: 15px;
}

.footer-logo img {
    height: 60px;
}

.footer-logo span {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
}

.footer-tagline {
    line-height: 1.7;
}

.footer-links,
.contact-details,
.opening-hours {
    list-style: none;
    padding: 0;
}

.footer-links a,
.contact-details span,
.opening-hours li {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ff8c00;
    padding-left: 5px;
}

.contact-details li,
.opening-hours li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-details i {
    color: #ff8c00;
    margin-right: 15px;
    font-size: 1.1rem;
    margin-top: 4px;
}

.social-links {
    margin-top: 25px;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    text-decoration: none;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #ff8c00;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #34495e;
}

/* --- Back to Top Button --- */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #e67e22;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 999;
}

#backToTop:hover {
    background-color: #d35400;
    transform: translateY(-3px);
}

/* =========================================== */
/* --- Main Responsive Styles for Mobile --- */
/* =========================================== */
@media (max-width: 768px) {

    /* --- General Spacing & Typography --- */
    body {
        font-size: 15px;
    }

    .content-section {
        padding: 60px 5%;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    /* --- Header & Navigation --- */
    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links ul {
        flex-direction: column;
        width: 100%;
        align-items: center;
        gap: 20px;
    }

    .mobile-menu-button {
        display: block;
    }

    /* --- Hero Section --- */
    .hero {
        height: 70vh;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content .tagline {
        font-size: 1.2rem;
    }

    /* --- About Section --- */
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-text h3 {
        font-size: 1.8rem;
    }

    /* --- Testimonials --- */
    .testimonial {
        padding: 30px 20px;
    }

    .testimonial p {
        font-size: 1rem;
    }

    /* --- Footer --- */
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-details li,
    .opening-hours li {
        justify-content: center;
    }

    .footer-logo,
    .social-links {
        justify-content: center;
    }
}

/* Optional: Adjustments for very small screens */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}