/* 
    CIELO KL - Airy Light Theme 
    CSS Architecture: Custom Properties, Glassmorphism, Responsive Grid
*/

:root {
    /* Color Palette - Brightned up! */
    --bg-deep: #FDFBF7;           /* Warm, bright airy white */
    --bg-glass: rgba(255, 255, 255, 0.85); 
    --glass-border: rgba(0, 0, 0, 0.06);
    --glass-blur: blur(16px);
    
    --accent-gold: #B38645;       /* Darker gold for light bg contrast */
    --accent-gold-hover: #D4AF37;
    --accent-glow: rgba(179, 134, 69, 0.15);
    
    --text-main: #2C3E50;         /* Sophisticated dark slate */
    --text-muted: #5D6D7E;
    
    /* Typography */
    --font-sans: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
    
    /* Layout */
    --nav-height: 80px;
    --container-max: 1200px;
    --radius-lg: 20px;
    --radius-md: 12px;
}

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

html {
    scroll-behavior: smooth;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.2;
}

h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
}

h3 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.subtitle {
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-weight: 500;
}

p {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 300;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Components */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.glass {
    background: var(--bg-glass);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05); /* Softer shadow for light theme */
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-sans);
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
    text-align: center;
}

.btn-primary {
    background: var(--accent-gold);
    color: #FFF;
    border: none;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.btn-primary:hover {
    background: var(--accent-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--accent-glow);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
}

.btn-outline:hover {
    background: rgba(179, 134, 69, 0.05);
    color: var(--text-main);
    border-color: var(--text-main);
}

.btn-text {
    background: transparent;
    color: var(--text-main);
    padding: 1rem;
}

.btn-text:hover {
    color: var(--accent-gold);
}

/* Force light text for Hero Button since background is dark */
.hero .btn-outline {
    border-color: #FFF;
    color: #FFF;
}
.hero .btn-outline:hover {
    background: rgba(255,255,255,0.1);
}
.hero .btn-text {
    color: #FFF;
}

.btn.compact {
    padding: 0.8rem 1.8rem;
    font-size: 0.95rem;
}

.text-center {
    text-align: center;
}
.mt-4 { margin-top: 3rem; }

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: rgba(253, 251, 247, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    height: 70px;
    background: rgba(253, 251, 247, 0.95);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    font-family: var(--font-sans);
    font-weight: 600;
    letter-spacing: 2px;
}

.logo span {
    color: var(--accent-gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a:not(.btn) {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.nav-links a:not(.btn):hover {
    color: var(--accent-gold);
}

/* Hamburger Menu (Sandwich Menu) */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--text-main);
    transition: all 0.3s ease;
}

/* Hamburger Active State */
.hamburger.active span:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: rgba(253, 251, 247, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0,0,0,0.05);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    color: var(--text-main);
}

.mobile-menu a:hover {
    color: var(--accent-gold);
}

.mobile-menu .btn {
    margin-top: 1rem;
    font-size: 1rem;
    padding: 1rem 2rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--nav-height);
    color: #FFF; /* Force white text over the dark city image */
}

/* Make sure the hero subtitle and p element stay white/light */
.hero .subtitle {
    color: var(--accent-gold-hover);
}
.hero p {
    color: #F8FAFC;
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transform: scale(1.05);
}

.hero-bg .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.6) 60%,
        rgba(0, 0, 0, 0.8) 100%
    );
}

.hero-content {
    position: relative;
    max-width: 800px;
    z-index: 1;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    align-items: center;
}

.social-proof-badge {
    margin-top: 3rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    color: #FFF;
}

.social-proof-badge .star {
    color: var(--accent-gold-hover);
    font-size: 1.2rem;
}

/* Sections */
.section {
    padding: 8rem 0;
    position: relative;
}

/* Sundowners Section */
.sundowner {
    background: #FFF; /* Slight contrast from warm white */
}

.sundowner .section-header {
    margin-bottom: 2rem;
}

.sundowner-gallery {
    display: flex;
    overflow-x: auto;
    gap: 1.5rem;
    padding: 1rem 0 3rem 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    /* Hide scrollbar for a cleaner look */
    scrollbar-width: none; 
}
.sundowner-gallery::-webkit-scrollbar {
    display: none; 
}

.sundowner-gallery .gallery-item {
    flex: 0 0 85%; /* Show 85% of current item to peek at next */
    max-width: 400px;
    height: 320px;
    scroll-snap-align: center;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

@media (min-width: 768px) {
    .sundowner-gallery .gallery-item {
        flex: 0 0 calc(33.333% - 1rem);
        height: 350px;
    }
}

.sundowner-gallery .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.sundowner-gallery .gallery-item:hover img {
    transform: scale(1.05);
}

/* Vibe Section */
.vibe-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.vibe-text .section-title span {
    color: var(--text-muted);
    font-style: italic;
    opacity: 0.8;
}

.vibe-text p {
    margin-bottom: 2rem;
}

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

.features-list li {
    margin-bottom: 1rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
}

.vibe-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.glass-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
    aspect-ratio: 4/5;
    object-fit: cover;
    filter: brightness(1); /* Un-darken */
}

.floating-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    padding: 1.5rem;
    max-width: 250px;
    z-index: 2;
}

.floating-card h4 {
    font-size: 1.1rem;
    font-family: var(--font-serif);
    color: var(--accent-gold);
}

/* Menu Grid */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-inline: auto;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.menu-card {
    overflow: hidden;
    transition: transform 0.4s ease;
}

.menu-card:hover {
    transform: translateY(-10px);
}

.menu-card .img-container {
    width: 100%;
    /* Removed aspect-ratio: 1/1 to allow tall menus */
    height: 400px; /* Fixed height so they align */
    overflow: hidden;
    background-color: #FFF; /* Ensure white background for transparent menus */
}

.menu-card img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Changed from cover to contain for text menus */
    transition: transform 0.6s ease;
    padding: 10px;
}

.menu-card:hover img {
    transform: scale(1.02);
}

.menu-content {
    padding: 1.5rem;
}

.menu-content h4 {
    font-family: var(--font-sans);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.menu-content p {
    font-size: 0.95rem;
    margin: 0;
}

/* Impressions Grid */
.impressions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.impression-item {
    overflow: hidden;
    position: relative;
    border-radius: var(--radius-lg);
    aspect-ratio: 4/5;
}

.impression-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.impression-item:hover img {
    transform: scale(1.05);
}

/* FAQ Page Styles */
.faq-page .navbar {
    background: rgba(253, 251, 247, 0.95);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.faq-header p {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.pt-0 {
    padding-top: 0 !important;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.faq-item {
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 2rem;
}

.faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.faq-question {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.faq-answer p {
    font-size: 1.05rem;
    color: var(--text-muted);
}

/* Birthday Section */
.birthday-section {
    background-color: var(--bg-deep);
}

.bday-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .bday-grid-2 {
        grid-template-columns: 1fr 1fr;
    }
}

.bday-grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .bday-grid-3 {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

.bday-card {
    padding: 2.5rem 2rem;
    height: 100%;
}

.bday-card h4 {
    font-family: var(--font-serif);
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.bday-img {
    border-radius: var(--radius-md);
    width: 100%;
    height: 300px;
    object-fit: cover;
    padding: 0; /* Remove glass padding for images */
}

.bday-caption {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 0.8rem;
    text-align: center;
}

.bday-divider {
    border: none;
    border-top: 1px solid rgba(0,0,0,0.06);
    margin: 5rem 0;
}

.bday-faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.bday-faq-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.bday-faq-item:last-child {
    border-bottom: none;
}

.bday-faq-item h4 {
    font-family: var(--font-sans);
    font-weight: 500;
    margin-bottom: 0.8rem;
    font-size: 1.15rem;
    color: var(--text-main);
}

.bday-cta {
    text-align: center;
    padding: 4rem 2rem;
    margin-top: 5rem;
    border-radius: var(--radius-lg);
    max-width: 800px;
    margin-inline: auto;
}

/* Footer */
.footer {
    background: #F4F1EA; /* Very light beige bottom */
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.footer-brand h2 {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.footer-brand span {
    color: var(--accent-gold);
}

.footer-brand p {
    font-size: 0.9rem;
}

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

.copyright {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0,0,0,0.1);
    padding: 1rem 1.5rem;
    z-index: 1000;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.05);
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
}

.cta-text {
    display: flex;
    flex-direction: column;
}

.cta-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
}

.cta-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Animations */
.fade-in-up, .fade-in-left, .fade-in-right {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up {
    transform: translateY(30px);
}

.fade-in-left {
    transform: translateX(-30px);
}

.fade-in-right {
    transform: translateX(30px);
}

.is-visible {
    opacity: 1;
    transform: translate(0);
}

/* Responsive Design */
@media (max-width: 992px) {
    .vibe-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .floating-card {
        bottom: 20px;
        left: 20px;
        background: rgba(255, 255, 255, 0.9);
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 80px;
    }
    
    .nav-links {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .mobile-sticky-cta {
        display: block;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .section {
        padding: 5rem 0;
    }
}
