
/* Variables for easy color management */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&display=swap');
    
        body { font-family: 'Inter', sans-serif; margin: 0; padding: 0; line-height: 1.6; }
        
        /* Layout Helpers */
        .container { max-width: 1100px; margin: auto; padding: 40px 20px; }
        .flex-section { display: flex; align-items: center; gap: 40px; margin-bottom: 60px; }
        .flex-reverse { flex-direction: row-reverse; }
        .flex-section div { flex: 1; }
        img { max-width: 100%; height: auto; border-radius: 8px; }
       
        .bg-banner {
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://via.placeholder.com/1200x400');
            background-size: cover;
            background-position: center;
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
        }

        /* Gallery Grid (3 columns, 6 items total) */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin: 50px 0;
        }
        
        /* Footer */
        footer {
            background: #f9f9f9;
            padding: 40px 20px;
            border-top: 1px solid #ddd;
            text-align: center;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }
        .subscription-input {
            margin-top: 15px;
        }
        .subscription-input input { padding: 10px; width: 250px; border: 1px solid #ccc; }
        .subscription-input button { padding: 10px 20px; background: #333; color: white; border: none; cursor: pointer; }

        /* Nav & Buttons */
        header { display: flex; justify-content: space-between; align-items: center; padding: 20px 5%; position: sticky; top: 0; background: white; z-index: 1000; }
        .btn-yellow { background: #ffcc00; padding: 10px 20px; text-decoration: none; color: black; font-weight: bold; border-radius: 5px; }
    
        :root {
            --primary-yellow: #fcc419;
            --dark-text: #1a1a1a;
            --light-bg: #fdfaf5;
            --white: #ffffff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }

        body {
            background-color: var(--light-bg);
            color: var(--dark-text);
            line-height: 1.6;
        }

        /* --- Header / Navigation --- */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 50px;
            background: var(--light-bg);
        }

        .nav-links {
            display: flex;
            gap: 20px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark-text);
            font-size: 0.9rem;
        }

        .logo img {
            height: 50px; /* Adjust based on actual logo size */
            filter: grayscale(1);
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .btn-yellow {
            background-color: var(--primary-yellow);
            color: black;
            padding: 10px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: transform 0.2s;
        }

        .btn-yellow:hover {
            transform: scale(1.05);
        }

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

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                        url('https://images.unsplash.com/photo-1470509037663-253afd7f0f51?auto=format&fit=crop&w=1920&q=80'); /* Sunflower placeholder */
            background-size: cover;
            background-position: center;
            z-index: -1;
        }

        .hero-content h1 {
            font-size: 2.5rem;
            letter-spacing: 2px;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .hero-content p {
            max-width: 600px;
            margin: 0 auto 20px;
            font-weight: 300;
        }

        /* --- Content Section --- */
        .intro-section {
            display: flex;
            padding: 80px 10%;
            gap: 50px;
            align-items: center;
            flex-wrap: wrap;
        }

        .intro-image {
            flex: 1;
            min-width: 300px;
        }

        .intro-image img {
            width: 100%;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .intro-text {
            flex: 1;
            min-width: 300px;
        }

        .intro-text h2 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .intro-text ul {
            list-style: none;
        }

        .intro-text li {
            margin-bottom: 12px;
            position: relative;
            padding-left: 20px;
        }

        .intro-text li::before {
            content: "•";
            position: absolute;
            left: 0;
            color: var(--dark-text);
        }

        /* Float Text Button */
        .text-us-btn {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: white;
            padding: 10px 20px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            z-index: 100;
        }

        @media (max-width: 768px) {
            header { padding: 15px 20px; }
            .nav-links { display: none; }
            .intro-section { flex-direction: column; text-align: center; }
            .intro-text li { text-align: left; }
        }
   
        body {
            font-family: 'Inter', sans-serif;
            background-color: #fcfcfc;
        }

        .booking-card {
            background: #e5e5e5; /* Matches the soft grey in your image */
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .booking-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        }

        .btn-gold {
            background-color: #f1b90d; /* Matching the yellow/gold buttons */
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }

        .btn-gold:hover {
            background-color: #d9a60b;
        }

        .badge-popular {
            background-color: #f1b90d;
            color: black;
            font-weight: bold;
        }

:root {
    --primary-gold: #fcc419;
    --bg-cream: #fdfaf5;
    --text-dark: #2d2d2d;
    --white: #ffffff;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.6;
}

/* Header Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: var(--bg-cream);
}

.nav-left a, .nav-right .icon {
    text-decoration: none;
    color: var(--text-dark);
    margin-right: 20px;
    font-size: 0.9rem;
}

.btn-cta {
    background-color: var(--primary-gold);
    color: #000;
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: background 0.3s ease;
}

.btn-cta:hover {
    background-color: #e5b017;
}

/* Hero Section */
.hero {
    height: 70vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                url('https://images.unsplash.com/photo-1470509037663-253afd7f0f51?auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
}

.hero-subtitle { letter-spacing: 4px; font-size: 0.9rem; }
.hero-title { font-size: 2.5rem; margin: 10px 0; font-weight: 600; }
.hero-tagline { font-size: 1.1rem; margin-bottom: 5px; }
.hero-description { font-weight: 300; margin-bottom: 30px; font-size: 0.95rem; }

/* Intro Section */
.intro-container {
    display: flex;
    max-width: 1100px;
    margin: 80px auto;
    padding: 0 20px;
    gap: 60px;
    align-items: center;
}

.intro-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 12px;
    display: block;
}

.intro-text h2 {
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.check-list {
    list-style: none;
}

.check-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
    font-size: 0.95rem;
}

.check-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--text-dark);
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--white);
    padding: 12px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar { flex-direction: column; gap: 15px; }
    .intro-container { flex-direction: column; text-align: center; }
    .check-list li { text-align: left; }
    .hero-title { font-size: 1.8rem; }
}
.main-content-section {
background-color: #fdfaf5; /* Cream background from your image */
    padding: 80px 10%; /* Main div padding */
    display: flex;
    justify-content: center;
}

.content-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1100px;
    width: 100%;
}

.image-wrapper {
    flex: 1;
}

.image-wrapper img {
    width: 100%;
    border-radius: 20px; /* Matches the rounded corners in the photo */
    display: block;
}

.text-wrapper {
    flex: 1;
}

.text-wrapper h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 1px;
    margin-bottom: 25px;
    color: #2d2d2d;
    font-weight: 400;
}

.bullet-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.bullet-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #444;
}

.bullet-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2d2d2d;
}

.italic-tagline {
    font-style: italic;
    font-size: 0.9rem;
    color: #666;
}

/* --- Footer Elements (Image 1) --- */
.footer-signup-container {
    display: flex;
    align-items: center;
    max-width: 500px;
    margin: 20px 0;
}

.footer-signup-container input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-right: none;
    border-radius: 8px 0 0 8px;
    outline: none;
}

.footer-signup-container .btn-yellow {
    border-radius: 0 8px 8px 0;
    padding: 12px 25px;
    border: 1px solid var(--primary-yellow);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .content-container {
        flex-direction: column;
        text-align: center;
    }
    .bullet-list li {
        text-align: left;
    }
}

/* Container to hide the scrollbar "mess" if desired */
.gallery-scroll-wrapper {
    width: 100%;
    overflow-x: auto; /* Enables horizontal scrolling */
    padding-bottom: 20px; /* Space for the scrollbar */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}

/* Hide scrollbar for Chrome, Safari and Opera if you want a cleaner look */
.gallery-scroll-wrapper::-webkit-scrollbar {
    height: 6px;
}
.gallery-scroll-wrapper::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.gallery-grid {
    display: flex; /* Changed from grid to flex for scrolling */
    gap: 15px;
}

.gallery-item {
    /* (100% / 3) minus the gaps to show exactly 3 images */
    flex: 0 0 calc(33.333% - 10px); 
    background: #eee;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    border-radius: 20px; /* Rounded edges as requested */
    overflow: hidden;
}

/* Responsive: Show 1.5 images on mobile so users know they can scroll */
@media (max-width: 768px) {
    .gallery-item {
        flex: 0 0 calc(60% - 10px); 
    }
}

/* --- Calendar Page Specifics --- */
.calendar-page {
    background-color: #fdfaf5; /* Matches your cream background */
    min-height: 100vh;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
}

.back-link {
    text-decoration: none;
    color: #666;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.back-link:hover {
    color: var(--primary-yellow);
}

.calendar-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.calendar-intro h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.calendar-intro p {
    color: #666;
    margin-bottom: 40px;
}

/* The Aesthetic Card */
.aesthetic-card {
    background: #ffffff;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.03);
    min-height: 600px; /* Essential height for Calendly */
    padding: 20px;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.placeholder-content {
    color: #aaa;
}

.loader {
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--primary-yellow);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.secure-tag {
    display: block;
    margin-top: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.calendar-footer {
    margin-top: 30px;
    font-size: 0.9rem;
    color: #888;
}

.calendar-footer a {
    color: var(--dark-text);
    font-weight: 600;
}

.header-title-container {
    margin-left: 70px; /* Adjust this value as needed */
}