/* CSS Variables for Premium Theme */
:root {
    --primary-color: #B5A886; /* Sophisticated muted champagne/grey-gold */
    --primary-light: #d1c8b0;
    --primary-dark: #8c7e5a;
    --bg-dark: #faf9f5; /* Light cream base */
    --bg-lighter: #ffffff; /* Pure white */
    --bg-card: #ffffff;
    --text-main: #2c3539; /* Dark charcoal */
    --text-muted: #5a6268;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

ul { list-style: none; }
a { text-decoration: none; color: inherit; }

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    text-align: center;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(250, 249, 245, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1d24; /* Dark for light background */
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo span {
    font-size: 0.9rem;
    color: var(--primary-color);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links li a {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-links li a:hover::after {
    width: 100%;
}

.nav-links li a:hover {
    color: var(--primary-color);
}

.book-btn {
    padding: 0.8rem 1.8rem;
    border: 1px solid rgba(181, 168, 134, 0.5); /* Muted border */
    color: var(--primary-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    transition: var(--transition);
    background: transparent;
    border-radius: 2px; /* Sharper, more premium */
}

.book-btn:hover {
    background: rgba(181, 168, 134, 0.1);
    color: var(--primary-light);
    border-color: var(--primary-light);
}

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

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(15,17,21,0.9) 100%);
}

.hero-content {
    z-index: 1;
    max-width: 800px;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 4.5rem;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 2px 4px 10px rgba(0,0,0,0.5);
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--primary-light);
    margin-bottom: 2.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.explore-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-radius: 2px;
    transition: var(--transition);
}

.explore-btn:hover {
    background: rgba(181, 168, 134, 0.1);
    color: var(--primary-light);
    transform: translateY(-2px);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards cubic-bezier(0.2, 0.8, 0.2, 1);
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Services Section (Cards overlapping hero) */
.services {
    position: relative;
    z-index: 10;
    margin-top: -150px; /* Overlap hero */
    padding-bottom: 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.service-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 4px;
    padding: 2.5rem 1.5rem;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(181, 168, 134, 0.3);
    background: #181a20;
    box-shadow: 0 15px 40px rgba(0,0,0,0.7);
}

.service-card h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 1rem;
}

.service-card ul {
    list-style: none;
}

.service-card ul li {
    color: var(--text-main);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.service-card ul li::before {
    content: '\f105'; /* FontAwesome angle-right */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-color);
    font-size: 0.8rem;
    margin-top: 4px;
}

/* About Section */
.about {
    padding: 8rem 0;
    background: var(--bg-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text .section-title {
    text-align: left;
}

.about-text .section-subtitle {
    text-align: left;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

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

.feature i {
    font-size: 2rem;
    color: var(--primary-color);
}

.feature span {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.about-images {
    position: relative;
    height: 500px;
}

.img-wrapper {
    position: absolute;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    transition: var(--transition);
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* CSS enhancement for provided photos */
    filter: contrast(1.1) brightness(1.05) saturate(1.2);
    transition: var(--transition);
}

.img-1 {
    width: 70%;
    height: 80%;
    top: 0;
    right: 0;
    z-index: 2;
}

.img-2 {
    width: 60%;
    height: 60%;
    bottom: 0;
    left: 0;
    z-index: 3;
    border: 5px solid var(--bg-dark);
}

.img-wrapper:hover {
    transform: scale(1.03);
    z-index: 10;
}

.img-wrapper:hover img {
    filter: contrast(1.1) brightness(1.1) saturate(1.3);
}

/* Gallery Section */
.gallery {
    padding: 6rem 0;
    background: var(--bg-lighter);
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Enhancing photos */
    filter: contrast(1.15) brightness(0.95) saturate(1.2);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(170, 140, 44, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i {
    font-size: 2rem;
    color: #fff;
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: contrast(1.2) brightness(1.1) saturate(1.3);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Reviews Marquee Section */
.reviews {
    padding: 6rem 0;
    background: var(--bg-lighter);
    overflow: hidden;
    position: relative;
}

.review-header {
    text-align: center;
    margin-bottom: 3rem;
}

.text-light {
    color: #1a1d24;
}

.stars {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.review-count {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.review-count strong {
    color: #1a1d24;
}

.marquee-container {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    overflow: hidden;
    padding: 2rem 0;
}

.marquee-content {
    display: flex;
    gap: 2rem;
    animation: scroll 35s linear infinite;
    /* Ensure content is wide enough for infinite scroll */
    min-width: 200%;
}

.marquee-content:hover {
    animation-play-state: paused;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    padding: 2.5rem;
    min-width: 380px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(181, 168, 134, 0.4);
    background: #faf9f5;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-dark);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: bold;
}

.review-author h4 {
    color: #1a1d24;
    margin-bottom: 0.2rem;
}

.stars-small {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.review-text {
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.7;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Scrolls exactly half the duplicated content width */
}

/* Footer & Contact */
.footer {
    background: #ffffff;
    padding: 5rem 0 0 0;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-info h3 {
    font-size: 2rem;
    color: #1a1d24;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.footer-info h3 span {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.footer-info > p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 400px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #1a1d24;
    font-size: 1.05rem;
}

.contact-details i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
}

.contact-details a {
    transition: var(--transition);
}
.contact-details a:hover {
    color: var(--primary-color);
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(0,0,0,0.05);
    color: #1a1d24;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-map {
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(0,0,0,0.05);
}

.map-container {
    width: 100%;
    height: 100%;
}

.footer-bottom {
    background: #ffffff;
    padding: 1.5rem 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

/* Responsive */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-images {
        height: 400px;
        order: -1;
    }
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 3rem; }
    .nav-links { display: flex; gap: 0; margin: 0; padding: 0; }
    .nav-links li { display: none; }
    .nav-links li:first-child { display: block; }
    .nav-links li:first-child a {
        color: var(--primary-color);
        font-weight: 600;
        font-size: 0.85rem;
        text-transform: uppercase;
        padding: 0.5rem;
    }
    .nav-links li:first-child a::after { display: none; }
    .book-btn { display: inline-block; padding: 0.5rem 0.8rem; font-size: 0.75rem; }
    .navbar { flex-wrap: nowrap; justify-content: space-between; padding: 1rem 3%; align-items: center; gap: 5px;}
    .logo { font-size: 1.1rem; line-height: 1.2; }
    .logo span { display: block; font-size: 0.55rem; letter-spacing: 2px; margin-top: 2px; }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
    .marquee-content {
        animation: scroll 10s linear infinite;
    }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.2rem; }
    .navbar { flex-wrap: wrap; justify-content: center; padding: 1rem; gap: 0.8rem; }
    .logo { width: 100%; align-items: center; justify-content: center; text-align: center; }
    .nav-links li:first-child a { font-size: 0.75rem; }
    .book-btn { font-size: 0.75rem; padding: 0.5rem 0.8rem; }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .features {
        grid-template-columns: 1fr;
    }
    .review-card {
        min-width: 280px;
        max-width: 280px;
        padding: 1.5rem;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.whatsapp-float:hover {
    background-color: #1ebe5d;
    transform: scale(1.1) translateY(-5px);
    box-shadow: 2px 10px 20px rgba(37, 211, 102, 0.4);
    color: #FFF;
}
