/* ========================================
   LAMMĀ Café - Artisanal Coffee Experience
   A Creative & Unique Design
   ======================================== */

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CSS Variables - Brand Colors */
:root {
    /* Primary - Sage Green */
    --sage: #9CAF88;
    --sage-dark: #6B8060;
    --sage-light: #C5D4B8;
    --sage-pale: #E8F0E3;
    --sage-muted: #A8B99A;
    
    /* Secondary - Warm Earthy Tones */
    --terracotta: #C4956A;
    --terracotta-light: #D4B08C;
    --clay: #B8977B;
    --wood: #8B6F47;
    
    /* Neutrals */
    --cream: #FAF8F5;
    --cream-warm: #F7F3ED;
    --sand: #E8E4DC;
    --stone: #D5CFC5;
    --charcoal: #2C2416;
    --espresso: #3D3024;
    --brown: #4A3F2F;
    --brown-light: #6B5D4D;
    
    /* Accents */
    --gold: #C9A961;
    --copper: #B87333;
    
    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Jost', -apple-system, sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 3rem;
    --space-xl: 5rem;
    --space-2xl: 8rem;
    
    /* Transitions */
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--charcoal);
    background-color: var(--cream);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

::selection {
    background-color: var(--sage-light);
    color: var(--charcoal);
}

/* ========================================
   DECORATIVE ELEMENTS
   ======================================== */
.leaf-decoration {
    position: absolute;
    font-size: 2rem;
    color: var(--sage-light);
    opacity: 0.5;
    pointer-events: none;
}

/* ========================================
   NAVIGATION - Elegant Centered
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 70px;
}

.navbar.scrolled {
    background: rgba(250, 248, 245, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.navbar.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--space-lg);
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
}

.nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    top: 10px;
}

.logo {
    height: 150px;
    width: auto;
    transition: transform var(--transition);
    filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.2));
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.logo:hover {
    transform: scale(1.08) rotate(-2deg);
    filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.25));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--space-lg);
}

.nav-left {
    justify-content: flex-start;
}

.nav-right {
    justify-content: flex-end;
}

.nav-links a {
    text-decoration: none;
    color: var(--brown);
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all var(--transition);
    position: relative;
    padding: var(--space-xs) 0;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--sage), var(--terracotta));
    transition: all var(--transition);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-links a:hover {
    color: var(--sage-dark);
}

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

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 100;
}

.mobile-toggle span {
    width: 28px;
    height: 2px;
    background-color: var(--brown);
    transition: var(--transition);
    border-radius: 2px;
}

/* Mobile Menu Styles */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 248, 245, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.mobile-menu.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.mobile-menu a {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--charcoal);
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: all var(--transition);
    position: relative;
}

.mobile-menu a:hover {
    color: var(--sage-dark);
}

.mobile-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--sage), var(--terracotta));
    transition: width var(--transition);
}

.mobile-menu a:hover::after {
    width: 100%;
}

/* Mobile toggle animation when active */
.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ========================================
   HERO SECTION - Artistic & Bold
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(
        135deg, 
        var(--sage-pale) 0%, 
        var(--cream) 30%,
        var(--cream-warm) 70%,
        var(--sand) 100%
    );
    overflow: hidden;
    padding-top: 100px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse at center, var(--sage-light) 0%, transparent 70%);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at center, var(--terracotta-light) 0%, transparent 70%);
    opacity: 0.15;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, -30px) rotate(5deg); }
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.4;
    background-image: 
        radial-gradient(circle at 20% 30%, var(--sage) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, var(--sage) 1px, transparent 1px),
        radial-gradient(circle at 40% 80%, var(--terracotta) 0.5px, transparent 0.5px);
    background-size: 80px 80px, 60px 60px, 40px 40px;
    pointer-events: none;
    animation: patternMove 30s linear infinite;
}

@keyframes patternMove {
    0% { background-position: 0 0, 0 0, 0 0; }
    100% { background-position: 80px 80px, -60px 60px, 40px -40px; }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: var(--space-xl) var(--space-md);
}

.hero-location-top {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--sage-dark);
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}

.hero-location-top::before,
.hero-location-top::after {
    content: '';
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sage));
}

.hero-location-top::after {
    background: linear-gradient(90deg, var(--sage), transparent);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 10vw, 9rem);
    font-weight: 400;
    color: var(--charcoal);
    letter-spacing: 0.08em;
    margin-bottom: var(--space-sm);
    line-height: 0.95;
    position: relative;
    white-space: nowrap;
}

.hero-title span {
    display: inline-block;
    animation: titleReveal 1s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

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

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: var(--space-lg) 0;
    gap: var(--space-sm);
}

.divider-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sage-muted), transparent);
}

.divider-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.divider-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--sage);
}

.hero-tagline {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 400;
    font-style: italic;
    color: var(--brown);
    margin-bottom: var(--space-xs);
    letter-spacing: 0.02em;
}

.hero-subtitle {
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--brown-light);
    opacity: 0.8;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    color: var(--brown-light);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

.scroll-indicator::after {
    content: '';
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--sage), transparent);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ========================================
   SECTION LABELS & TITLES
   ======================================== */
.section-label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--sage-dark);
    text-align: center;
    margin-bottom: var(--space-xs);
    font-weight: 400;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 400;
    color: var(--charcoal);
    text-align: center;
    margin-bottom: var(--space-lg);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--sage), var(--terracotta));
    margin: var(--space-sm) auto 0;
    border-radius: 2px;
}

/* ========================================
   ABOUT SECTION - Creative Split Layout
   ======================================== */
.about {
    padding: var(--space-2xl) 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--sage-pale) 0%, transparent 70%);
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: var(--space-xl);
    align-items: center;
}

.about-image-col {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: 200px 200px 20px 20px;
    overflow: hidden;
    box-shadow: 
        0 30px 60px -20px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(156, 175, 136, 0.2);
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, var(--sage) 0%, var(--terracotta) 100%);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition);
}

.about-image-wrapper:hover::before {
    opacity: 1;
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-slow);
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.05);
}

/* Floating badge */
.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--sage-light);
}

.about-badge-icon {
    font-size: 2rem;
    margin-bottom: 4px;
}

.about-badge-text {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brown);
    text-align: center;
    line-height: 1.3;
}

.about-text-col {
    padding: var(--space-md);
}

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

.about-text-col .section-title::after {
    margin-left: 0;
}

.about-description {
    font-size: 1.1rem;
    color: var(--brown);
    margin-bottom: var(--space-md);
    line-height: 1.9;
}

.about-description:first-of-type::first-letter {
    font-family: var(--font-display);
    font-size: 3.2rem;
    float: left;
    line-height: 0.85;
    margin-right: 0.5rem;
    margin-top: 0.15rem;
    color: var(--sage-dark);
    font-weight: 600;
}

.about-features {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-md);
    background: linear-gradient(135deg, var(--sage-pale) 0%, var(--cream) 100%);
    border-radius: 50px;
    border: 1px solid var(--sage-light);
    transition: all var(--transition);
}

.feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(156, 175, 136, 0.2);
}

.feature-icon {
    font-size: 1.3rem;
}

.feature-text {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--brown);
    letter-spacing: 0.03em;
}

/* ========================================
   GALLERY SECTION - Artistic Grid
   ======================================== */
.gallery {
    padding: var(--space-2xl) 0;
    background: linear-gradient(180deg, var(--cream-warm) 0%, var(--sand) 100%);
    position: relative;
    overflow: hidden;
}

.gallery-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.15;
    background-image: 
        repeating-linear-gradient(
            45deg,
            var(--sage) 0,
            var(--sage) 1px,
            transparent 1px,
            transparent 20px
        );
    pointer-events: none;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 220px);
    gap: var(--space-sm);
    position: relative;
    z-index: 1;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.gallery-item:nth-child(1) { grid-column: 1 / 6; grid-row: 1 / 3; }
.gallery-item:nth-child(2) { grid-column: 6 / 9; grid-row: 1 / 2; }
.gallery-item:nth-child(3) { grid-column: 9 / 13; grid-row: 1 / 2; }
.gallery-item:nth-child(4) { grid-column: 6 / 10; grid-row: 2 / 3; }
.gallery-item:nth-child(5) { grid-column: 10 / 13; grid-row: 2 / 3; }

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(44, 36, 22, 0.5) 0%,
        transparent 50%
    );
    opacity: 0;
    transition: opacity var(--transition);
    z-index: 1;
}

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

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

/* Gallery Grid Hidden State */
.gallery-grid.hidden {
    display: none;
}

/* ========================================
   CAROUSEL - Image Slider
   ======================================== */
.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    z-index: 1;
}

.carousel-track-container {
    overflow: hidden;
    flex: 1;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    min-width: 100%;
    aspect-ratio: 16 / 10;
    flex-shrink: 0;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--cream);
    border: 2px solid var(--sage);
    color: var(--sage-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: var(--sage);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(156, 175, 136, 0.4);
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: var(--space-md);
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--sand);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

.carousel-dot:hover,
.carousel-dot.active {
    background: var(--sage);
    transform: scale(1.2);
}

/* Gallery View Toggle */
.gallery-toggle {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.toggle-btn {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--cream-warm);
    border: 2px solid transparent;
    color: var(--brown-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.toggle-btn:hover {
    border-color: var(--sage);
    color: var(--sage-dark);
}

.toggle-btn.active {
    background: var(--sage);
    color: white;
    border-color: var(--sage);
}

/* Carousel Hidden State */
.carousel-container.hidden,
.carousel-dots.hidden {
    display: none;
}

/* ========================================
   MENU SECTION - Elegant Cards
   ======================================== */
.menu {
    padding: var(--space-2xl) 0;
    background: var(--cream);
    position: relative;
}

.menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100px;
    background: linear-gradient(to bottom, var(--sage), transparent);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.menu-column {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.menu-card {
    background: white;
    border-radius: 20px;
    padding: var(--space-lg);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--sand);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--sage), var(--sage-light));
    opacity: 0;
    transition: opacity var(--transition);
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.menu-card:hover::before {
    opacity: 1;
}

.menu-card-featured {
    background: linear-gradient(135deg, var(--sage-pale) 0%, white 100%);
    border-color: var(--sage-light);
}

.menu-card-featured::before {
    background: linear-gradient(to bottom, var(--sage-dark), var(--sage));
    opacity: 1;
}

.menu-card-highlight {
    background: linear-gradient(135deg, #FDF8F3 0%, white 100%);
    border-color: var(--terracotta-light);
    position: relative;
}

.menu-card-highlight::before {
    background: linear-gradient(to bottom, var(--terracotta), var(--terracotta-light));
    opacity: 1;
}

.menu-card-highlight::after {
    content: '★';
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    font-size: 1.5rem;
    color: var(--terracotta);
    opacity: 0.3;
}

.menu-category {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.category-icon {
    font-size: 1.3rem;
    opacity: 0.8;
}

.menu-card-subtitle {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-top: calc(var(--space-sm) * -1);
    margin-bottom: var(--space-md);
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.menu-item {
    display: flex;
    align-items: baseline;
    gap: var(--space-xs);
    padding: 8px 0;
    border-bottom: 1px dashed var(--sand);
    transition: all var(--transition);
}

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

.menu-item:hover {
    padding-left: 8px;
    background: linear-gradient(90deg, var(--sage-pale), transparent);
    margin-left: -8px;
    margin-right: -8px;
    padding-right: 8px;
    border-radius: 4px;
}

.item-name {
    font-size: 0.95rem;
    color: var(--brown);
    flex-shrink: 0;
}

.item-name small {
    display: block;
    font-size: 0.8rem;
    color: var(--brown-light);
    font-style: italic;
    margin-top: 2px;
}

.item-dots {
    flex: 1;
    border-bottom: 2px dotted var(--stone);
    margin: 0 var(--space-xs);
    min-width: 20px;
    align-self: center;
    margin-bottom: 5px;
}

.item-price {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--sage-dark);
    flex-shrink: 0;
}

.menu-note {
    font-size: 0.8rem;
    font-style: italic;
    color: var(--brown-light);
    text-align: center;
    margin-top: var(--space-md);
    padding-top: var(--space-sm);
    border-top: 1px solid var(--sand);
}

/* ========================================
   CONTACT SECTION - Warm & Inviting
   ======================================== */
.contact {
    padding: var(--space-2xl) 0;
    background: linear-gradient(
        135deg,
        var(--sage-pale) 0%,
        var(--cream-warm) 50%,
        var(--sand) 100%
    );
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -25%;
    width: 50%;
    height: 150%;
    background: radial-gradient(ellipse at center, var(--sage-light) 0%, transparent 60%);
    opacity: 0.3;
}

.contact-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image: 
        radial-gradient(circle at 15% 85%, var(--sage) 3px, transparent 3px),
        radial-gradient(circle at 85% 15%, var(--terracotta) 2px, transparent 2px);
    background-size: 100px 100px;
    pointer-events: none;
}

.contact-location {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--brown);
    text-align: center;
    margin-bottom: var(--space-xl);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xl) var(--space-md);
    background: white;
    border-radius: 24px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all var(--transition);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sage), var(--terracotta));
    opacity: 0;
    transition: opacity var(--transition);
}

.social-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.social-card:hover::before {
    opacity: 1;
}

.social-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--sage-pale) 0%, var(--cream) 100%);
    border-radius: 50%;
    transition: all var(--transition);
    border: 2px solid var(--sage-light);
}

.social-card:hover .social-icon {
    background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
    transform: scale(1.1) rotate(5deg);
}

.social-icon svg {
    width: 26px;
    height: 26px;
    color: var(--sage-dark);
    transition: color var(--transition);
}

.social-card:hover .social-icon svg {
    color: white;
}

.social-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--charcoal);
}

.social-cta {
    font-size: 0.8rem;
    color: var(--sage-dark);
    letter-spacing: 0.05em;
    transition: color var(--transition);
}

.social-card:hover .social-cta {
    color: var(--terracotta);
}

/* ========================================
   MAP SECTION
   ======================================== */
.map-container {
    margin-top: var(--space-xl);
    text-align: center;
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 4px solid var(--sage-pale);
    max-width: 1000px;
    margin: 0 auto;
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 400px;
}

.map-directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: var(--space-md);
    padding: 14px 28px;
    background: var(--sage);
    color: white;
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: all var(--transition);
    box-shadow: 0 8px 25px rgba(156, 175, 136, 0.3);
}

.map-directions-btn:hover {
    background: var(--sage-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(156, 175, 136, 0.4);
}

@media (max-width: 768px) {
    .map-wrapper iframe {
        height: 300px;
    }
    
    .map-directions-btn {
        padding: 12px 20px;
        font-size: 0.85rem;
    }
}

/* ========================================
   FOOTER - Elegant Dark
   ======================================== */
.footer {
    padding: var(--space-xl) 0 var(--space-lg);
    background: linear-gradient(180deg, var(--espresso) 0%, var(--charcoal) 100%);
    color: var(--cream);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    background-image: 
        radial-gradient(circle at 50% 50%, var(--sage) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-logo {
    height: 180px;
    width: auto;
    margin-bottom: var(--space-md);
    filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.3));
    opacity: 1;
    transition: all var(--transition);
}

.footer-logo:hover {
    opacity: 1;
    transform: scale(1.05);
    filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.4));
}

.footer-tagline {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--sage-light);
    margin-bottom: var(--space-xs);
}

.footer-location {
    font-size: 0.85rem;
    color: var(--brown-light);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* WhatsApp Button - Brand Colors */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--sage);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    margin: var(--space-md) 0;
    transition: all var(--transition);
    box-shadow: 0 8px 30px rgba(156, 175, 136, 0.4);
}

.whatsapp-btn:hover {
    background: var(--sage-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(156, 175, 136, 0.5);
}

.whatsapp-btn svg {
    flex-shrink: 0;
}

.whatsapp-btn span {
    white-space: nowrap;
}

.whatsapp-number {
    font-weight: 600;
    padding-left: 8px;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

@media (max-width: 600px) {
    .whatsapp-btn {
        flex-direction: column;
        gap: 8px;
        padding: 14px 24px;
        font-size: 0.9rem;
    }
    
    .whatsapp-number {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.3);
        padding-top: 8px;
    }
}

.footer-divider {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sage), transparent);
    margin: var(--space-md) auto;
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--brown-light);
    opacity: 0.7;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (min-width: 901px) {
    .nav-links {
        display: flex !important;
    }
    
    .mobile-toggle {
        display: none !important;
    }
}

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .about-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .about-text-col .section-label,
    .about-text-col .section-title {
        text-align: center;
    }
    
    .about-text-col .section-title::after {
        margin: var(--space-sm) auto 0;
    }
    
    .about-text-col {
        padding: 0;
    }
    
    .about-features {
        justify-content: center;
    }
    
    .about-badge {
        right: 50%;
        transform: translateX(50%);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    
    .gallery-item:nth-child(1) { grid-column: 1 / 3; grid-row: auto; }
    .gallery-item:nth-child(2) { grid-column: 1 / 2; grid-row: auto; }
    .gallery-item:nth-child(3) { grid-column: 2 / 3; grid-row: auto; }
    .gallery-item:nth-child(4) { grid-column: 1 / 2; grid-row: auto; }
    .gallery-item:nth-child(5) { grid-column: 2 / 3; grid-row: auto; }
    
    .gallery-item {
        height: 250px;
    }
    
    /* Carousel responsive */
    .carousel-btn {
        width: 44px;
        height: 44px;
    }
    
    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .carousel-slide {
        aspect-ratio: 4 / 3;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .navbar {
        height: 60px;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 5px;
    }
    
    .logo {
        height: 130px;
    }
    
    .nav-container {
        justify-content: center;
        position: relative;
    }
    
    .mobile-toggle {
        display: flex;
        position: absolute;
        right: var(--space-md);
        top: 50%;
        transform: translateY(-50%);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(2.5rem, 12vw, 4rem);
        white-space: nowrap;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item:nth-child(n) {
        grid-column: auto;
        grid-row: auto;
        height: 280px;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
    }
    
    .about-description:first-of-type::first-letter {
        font-size: 2.5rem;
        line-height: 0.85;
        margin-top: 0.1rem;
    }
}

@media (max-width: 480px) {
    .about-features {
        flex-direction: column;
        align-items: stretch;
    }
    
    .feature {
        justify-content: center;
    }
    
    .menu-card {
        padding: var(--space-md);
    }
    
    .logo {
        height: 110px;
    }
    
    .about-badge {
        width: 100px;
        height: 100px;
    }
    
    .about-badge-icon {
        font-size: 1.5rem;
    }
    
    /* Carousel mobile */
    .carousel-container {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .carousel-btn {
        display: none;
    }
    
    .carousel-slide {
        aspect-ratio: 1 / 1;
    }
    
    .carousel-dots {
        gap: 8px;
    }
    
    .carousel-dot {
        width: 10px;
        height: 10px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item:nth-child(n) {
        grid-column: auto;
        grid-row: auto;
        height: 220px;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   GALLERY OVERLAY
   ======================================== */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 36, 22, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
    z-index: 2;
}

.gallery-overlay span {
    color: white;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.75rem 1.5rem;
    border: 2px solid white;
    border-radius: 30px;
    transition: all var(--transition);
}

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

.gallery-item:hover .gallery-overlay span {
    background: white;
    color: var(--charcoal);
}

/* ========================================
   LIGHTBOX MODAL
   ======================================== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: lightboxZoomIn 0.3s ease;
}

@keyframes lightboxZoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    z-index: 10;
}

.lightbox-close:hover {
    background: white;
    color: var(--charcoal);
    transform: rotate(90deg);
}

.lightbox-close svg {
    width: 24px;
    height: 24px;
}

.lightbox-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    z-index: 10;
}

.lightbox-btn:hover {
    background: white;
    color: var(--charcoal);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-btn svg {
    width: 28px;
    height: 28px;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
}

.lightbox-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

.lightbox-dot:hover,
.lightbox-dot.active {
    background: white;
    transform: scale(1.2);
}

/* Lightbox Mobile Responsive */
@media (max-width: 768px) {
    .lightbox-btn {
        width: 45px;
        height: 45px;
    }
    
    .lightbox-btn svg {
        width: 22px;
        height: 22px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }
    
    .lightbox-close svg {
        width: 20px;
        height: 20px;
    }
    
    .lightbox-dots {
        bottom: 20px;
    }
    
    .lightbox-dot {
        width: 10px;
        height: 10px;
    }
}
