/* 🌟 General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #F2F4F3;
    color: #22333B;
    line-height: 1.6;
}

/* 🌟 Container */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

/* 🌟 Header */
header {
    background: #0A0908;
    padding: 20px 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header h1 {
    color: #A9927D;
    font-size: 2.2em;
    font-weight: 700;
    letter-spacing: 2px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: #F2F4F3;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
    transition: 0.3s ease-in-out;
}

nav ul li a:hover {
    background: #A9927D;
    color: #0A0908;
    border-radius: 5px;
}



/* 🌟 Mobile Menu Styles */
.mobile-menu-toggle {
    display: none; /* Hidden on desktop */
    background: none;
    border: none;
    font-size: 2em;
    color: #A9927D;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
}

/* 📱 Responsive Navigation */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block; /* Show on mobile */
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background: #0A0908;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        padding: 10px;
    }

    .nav-links a {
        color: #F2F4F3;
        font-size: 1.2em;
        display: block;
        padding: 10px 0;
    }

    .nav-links a:hover {
        background: #A9927D;
        color: #0A0908;
        border-radius: 5px;
    }
}

/* 🌟 Hero Section (Slideshow) */
.hero {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.hero-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-image.active {
    opacity: 1;
}

/* 🌟 Hero Text */
.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: rgba(10, 9, 8, 0.7);
    padding: 20px;
    border-radius: 10px;
}

.hero-text h2 {
    font-size: 2.5em;
    color: #A9927D;
}

.hero-text p {
    font-size: 1.2em;
    color: #F2F4F3;
}

.cta-btn {
    display: inline-block;
    background: #A9927D;
    color: #0A0908;
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 15px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s ease-in-out;
}

.cta-btn:hover {
    background: #5E503F;
    color: #F2F4F3;
}






/* ✅ Why Choose Us - Responsive Flexbox for Desktop, Grid for Mobile */
.why-choose {
    text-align: center;
    padding: 60px 20px;
    background: #F2F4F3;
}

.why-choose h2 {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 20px;
    color: #5E503F;
}

/* 🌟 Desktop: Flexbox Layout */
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 40px 0;
}

/* ✅ Feature Boxes */
.feature-box {
    flex: 1 1 calc(33.333% - 30px); /* 3 items per row on desktop */
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    max-width: 350px; /* Prevents oversized elements */
}

.feature-box:hover {
    transform: scale(1.03);
}

.feature-box img {
    width: 100%;
    height: auto;
    max-height: 220px; /* Slightly larger for desktop */
    object-fit: cover;
    border-radius: 8px;
}

.feature-box h3 {
    margin-top: 15px;
    font-size: 1.6em;
    color: #5E503F;
}

/* 🌟 Mobile: Switch to Grid Layout */
@media (max-width: 1024px) {
    .features {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .feature-box {
        flex: none; /* Remove flex settings */
        max-width: 100%; /* Allows full width on smaller screens */
    }

    .feature-box img {
        max-height: 180px; /* Adjust image size for mobile */
    }

    .why-choose h2 {
        font-size: 2.2em;
    }
}







/* ✅ Testimonials Section */
.testimonials {
    text-align: center;
    padding: 80px 20px;
    background: #3E3A36;
    color: #F2F4F3;
}

.testimonials h2 {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 10px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    justify-content: center;
    max-width: 1200px;
    margin: auto;
}

.testimonial-box {
    background: #A9927D;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
    text-align: left;
}

.testimonial-box:hover {
    transform: scale(1.03);
}

/* 🌟 Booking Form */
.booking {
    text-align: center;
    padding: 60px 20px;
    background: #22333B;
    color: #F2F4F3;
}

.booking form {
    max-width: 600px;
    margin: auto;
    background: #A9927D;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.booking label {
    display: block;
    font-weight: bold;
    margin: 10px 0 5px;
    color: #0A0908;
}

.booking input, 
.booking select {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    margin-bottom: 10px;
}

.book-btn {
    background: #5E503F;
    color: #F2F4F3;
    padding: 12px;
    border: none;
    cursor: pointer;
    font-size: 1em;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

.book-btn:hover {
    background: #22333B;
}

/* 🌟 Footer */
footer {
    background: #0A0908;
    color: #F2F4F3;
    text-align: center;
    padding: 20px 0;
}

/* 🌟 Responsive Adjustments */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .hero-text h2 {
        font-size: 2em;
    }
}


