/* Color Palette & Variables (Soft iOS Aesthetic) */
:root {
    --bg-color: #FAFAFA; /* Very light iOS grey/white */
    --surface-color: #FFFFFF;
    --text-main: #1C1C1E; /* iOS dark text */
    --text-light: #8E8E93; /* iOS light text */
    --accent-blue: #8eb4be;
    --accent-pink: #d99c9c;
    --accent-green: #7D9771; /* Deepened slightly for contrast */
    --whatsapp-green: #25D366;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

/* Smooth Scrolling for entire page */
html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

a {
    text-decoration: none;
    color: inherit;
}

.section-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 20px;
}

/* --- Navigation (iOS Glassmorphism) --- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px); /* iOS Glass blur */
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px; /* slightly reduced padding to fit logo */
    max-width: 1200px;
    margin: 0 auto;
}

/* Updated Logo with Image styling */
.logo {
    display: flex;
    align-items: center;
    gap: 12px; /* space between image and text */
    font-family: var(--font-body);
    letter-spacing: 2px;
    font-size: 1.1rem;
    font-weight: 700;
}

.nav-logo-img {
    height: 40px; /* strict height so it doesn't break navbar */
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
    font-weight: 400;
}

.nav-menu a:hover, .active-link {
    color: var(--accent-green);
}

/* Mobile Menu Hamburger */
.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
}

.bar {
    height: 2px;
    width: 25px;
    background-color: var(--text-main);
    margin: 3px 0;
    transition: 0.3s;
}

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

.slider {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
}

.slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out; /* Super smooth fade */
}

.slide::after {
    content: '';
    position: absolute;
    top:0; left:0; width:100%; height:100%;
    background: rgba(255,255,255,0.2); /* Slight overlay to make text pop */
}

.slide.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 40px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    color: var(--text-main);
    font-weight: 400;
    margin-bottom: 10px;
    text-shadow: 0 4px 15px rgba(255,255,255,0.8); /* Glow effect for readability */
}

.hero-subtitle {
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: var(--text-main);
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(255,255,255,0.8);
}

/* Elegant Text Link */
.hero-text-link {
    font-size: 1rem;
    letter-spacing: 2px;
    color: var(--text-main);
    text-transform: uppercase;
    font-weight: 700;
    border-bottom: 1px solid var(--text-main);
    padding-bottom: 5px;
    transition: all 0.3s;
}

.hero-text-link:hover {
    color: var(--accent-green);
    border-bottom-color: var(--accent-green);
}

.slider-dots {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: rgba(0,0,0,0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background-color: var(--text-main);
    transform: scale(1.5);
}

/* --- Global Utilities & Animations --- */
.rounded-img {
    border-radius: 20px; /* iOS rounded corners */
}
.shadow {
    box-shadow: 0 20px 40px rgba(0,0,0,0.08); /* Soft iOS shadow */
}

h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--accent-green);
    margin-bottom: 20px;
}

.subtitle {
    display: block;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* Scroll Reveal Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Smooth iOS curve */
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Benefits Section --- */
.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.text-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

.image-content img {
    width: 100%;
    height: auto;
}

/* --- Reviews Section (iOS Horizontal Snap) --- */
.reviews-section {
    background-color: #F4EFEA;
    padding-bottom: 100px;
}

.reviews-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory; /* iOS native swiping feel */
    gap: 20px;
    padding: 40px 0 20px;
    -webkit-overflow-scrolling: touch; /* Smooth momentum scroll on iOS */
    scrollbar-width: none; /* Firefox */
}

.reviews-slider::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari */
}

.review-card {
    min-width: 320px;
    max-width: 350px;
    background: var(--surface-color);
    padding: 30px;
    border-radius: 20px;
    scroll-snap-align: start; /* Snaps perfectly into place */
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.review-card p {
    font-style: italic;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.review-card h4 {
    font-family: var(--font-heading);
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 600;
}

.swipe-hint {
    text-align: center;
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 10px;
    display: none; /* Hidden on desktop */
}

/* --- Booking CTA Section --- */
.booking-cta {
    padding: 120px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax */
}

.glass-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 50px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.3);
    text-align: center;
    max-width: 600px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.glass-card h2 {
    color: white;
    font-size: 3rem;
}

.glass-card p {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background-color: var(--whatsapp-green);
    color: white;
    font-weight: 700;
    border-radius: 50px; /* iOS pill button */
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: #1DA851;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(37, 211, 102, 0.4);
}

/* --- Footer --- */
footer {
    background-color: var(--surface-color);
    padding: 80px 20px 30px;
    border-top: 1px solid #eee;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    font-family: var(--font-heading);
    color: var(--text-main);
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.footer-col p, .footer-col a {
    color: var(--text-light);
    margin-bottom: 12px;
    display: block;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--accent-green);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 30px;
    color: var(--text-light);
    font-size: 0.85rem;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    /* Adjusted logo for smaller screens */
    .logo {
        font-size: 0.9rem;
        letter-spacing: 1px;
        gap: 8px;
    }
    
    .nav-logo-img {
        height: 30px;
    }

    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        text-align: center;
        border-bottom: 1px solid #eee;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        margin: 0;
        padding: 20px 0;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .content-split {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .slider-dots {
        flex-direction: row;
        top: auto;
        bottom: 30px;
        right: 50%;
        transform: translateX(50%);
    }

    .glass-card {
        padding: 30px 20px;
    }

    .glass-card h2 {
        font-size: 2.2rem;
    }

    .swipe-hint {
        display: block; /* Show hint on mobile */
    }
    }
