/* ================================
   THE GREENHOUSE CAFÉ - STYLES
   Theme: Calm • Natural • Cozy • Minimal
   Colors: Sage green, olive, beige, off-white
   ================================ */

/* CSS Variables - Color Palette */
:root {
    /* Primary Colors - Earthy Greens */
    --sage-green: #8fbc8f;
    --sage-light: #a8d5a8;
    --sage-dark: #6b9b6b;
    --olive: #808000;
    --olive-dark: #556b2f;
    --forest-green: #228b22;
    
    /* Neutral Colors */
    --beige: #f5f5dc;
    --beige-light: #faf8f0;
    --off-white: #fefefe;
    --cream: #fffdd0;
    --warm-white: #f9f6f0;
    --linen: #faf0e6;
    
    /* Accent Colors */
    --brown-light: #d4a574;
    --brown: #8b7355;
    --terracotta: #e07b53;
    
    /* Text Colors */
    --text-dark: #2d3b2d;
    --text-medium: #4a5d4a;
    --text-light: #6b7c6b;
    --text-muted: #8a9a8a;
    
    /* Shadows & Effects */
    --shadow-soft: 0 4px 20px rgba(45, 59, 45, 0.08);
    --shadow-medium: 0 8px 30px rgba(45, 59, 45, 0.12);
    --shadow-hover: 0 12px 40px rgba(45, 59, 45, 0.15);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-blur: blur(10px);
    
    /* Typography */
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;
    
    /* Border Radius - Organic Shapes */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 50%;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.6s ease;
}

/* ================================
   RESET & BASE STYLES
   ================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--warm-white);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Selection Color */
::selection {
    background-color: var(--sage-light);
    color: var(--text-dark);
}

/* Smooth Scrolling for Links */
a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* ================================
   TYPOGRAPHY
   ================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p {
    color: var(--text-medium);
    font-weight: 400;
}

/* ================================
   LAYOUT UTILITIES
   ================================ */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--sage-light), var(--sage-green));
    color: var(--text-dark);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ================================
   BUTTONS
   ================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-medium);
    border: none;
    outline: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--sage-green), var(--sage-dark));
    color: white;
    box-shadow: 0 4px 15px rgba(107, 155, 107, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(107, 155, 107, 0.4);
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--text-dark);
    border: 2px solid var(--sage-green);
    backdrop-filter: var(--glass-blur);
}

.btn-secondary:hover {
    background: var(--sage-light);
    transform: translateY(-3px);
}

.btn-full {
    width: 100%;
}

/* ================================
   NAVIGATION
   ================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid rgba(143, 188, 143, 0.2);
    transition: all var(--transition-medium);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-soft);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 1.8rem;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
}

.nav-links {
    display: flex;
    gap: 36px;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-medium);
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--sage-green);
    transition: width var(--transition-medium);
    border-radius: 2px;
}

.nav-links a:hover {
    color: var(--sage-dark);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

/* ================================
   HERO SECTION
   ================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: 
        linear-gradient(
            135deg,
            rgba(250, 248, 240, 0.85) 0%,
            rgba(249, 246, 240, 0.8) 50%,
            rgba(168, 213, 168, 0.7) 100%
        ),
        url('https://images.unsplash.com/photo-1600093463592-8e36ae95ef56?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-parallax {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(143, 188, 143, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(168, 213, 168, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(143, 188, 143, 0.1) 0%, transparent 70%);
    animation: parallaxFloat 20s ease-in-out infinite;
}

@keyframes parallaxFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.02); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 Q35 15 30 25 Q25 15 30 5' fill='none' stroke='%238fbc8f' stroke-width='0.5' opacity='0.3'/%3E%3C/svg%3E");
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 24px;
}

.hero-badge {
    display: inline-block;
    padding: 10px 24px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-medium);
    margin-bottom: 24px;
    border: 1px solid rgba(143, 188, 143, 0.3);
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 600;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-dark), var(--sage-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 16px;
}

.hero-location {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.85rem;
    animation: bounce 2s ease-in-out infinite;
}

.leaf-float {
    font-size: 1.5rem;
    animation: leafSway 3s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes leafSway {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

/* ================================
   ABOUT SECTION
   ================================ */
.about {
    background: var(--off-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.image-frame::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: linear-gradient(135deg, var(--sage-light), var(--sage-green));
    border-radius: var(--radius-xl);
    z-index: -1;
    opacity: 0.5;
}

.floating-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    padding: 20px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-icon {
    font-size: 2rem;
}

.card-text {
    font-family: var(--font-serif);
    font-weight: 600;
    color: var(--text-dark);
}

.about-content {
    padding: 20px 0;
}

.about-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--beige-light);
    border-radius: var(--radius-md);
    transition: all var(--transition-medium);
}

.feature:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}

.feature-icon {
    font-size: 1.5rem;
}

.feature-text {
    font-weight: 500;
    color: var(--text-medium);
}

/* ================================
   HIGHLIGHTS SECTION
   ================================ */
.highlights {
    background: linear-gradient(135deg, var(--sage-light) 0%, var(--beige-light) 100%);
    padding: 80px 0;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.highlight-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    padding: 40px 30px;
    border-radius: var(--radius-xl);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all var(--transition-medium);
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    background: white;
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.highlight-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.highlight-card p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* ================================
   MENU SECTION
   ================================ */
.menu {
    background: var(--warm-white);
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.menu-tab {
    padding: 12px 28px;
    background: var(--beige-light);
    border: 2px solid transparent;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-medium);
    cursor: pointer;
    transition: all var(--transition-medium);
}

.menu-tab:hover {
    background: var(--sage-light);
    color: var(--text-dark);
}

.menu-tab.active {
    background: var(--sage-green);
    color: white;
    border-color: var(--sage-dark);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.menu-item {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all var(--transition-medium);
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.menu-item-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.menu-item-content {
    padding: 24px;
}

.menu-item h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.menu-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

.price {
    display: inline-block;
    padding: 6px 16px;
    background: var(--sage-light);
    color: var(--text-dark);
    font-weight: 600;
    border-radius: 50px;
    font-size: 0.95rem;
}

/* ================================
   GALLERY SECTION
   ================================ */
.gallery {
    background: var(--beige-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item.large {
    grid-column: span 2;
    aspect-ratio: 2/1;
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45, 59, 45, 0.7), transparent);
    opacity: 0;
    transition: opacity var(--transition-medium);
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    color: white;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    transform: translateY(100%);
    transition: transform var(--transition-medium);
    z-index: 2;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* ================================
   INSTAGRAM SECTION
   ================================ */
.instagram {
    background: var(--warm-white);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.instagram-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.instagram-overlay {
    position: absolute;
    inset: 0;
    background: rgba(143, 188, 143, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

.heart {
    font-size: 2rem;
    color: white;
    transform: scale(0);
    transition: transform var(--transition-medium);
}

.instagram-item:hover .heart {
    transform: scale(1);
}

.instagram-cta {
    text-align: center;
}

/* ================================
   CONTACT SECTION
   ================================ */
.contact {
    background: linear-gradient(135deg, var(--sage-light) 0%, var(--beige-light) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-text {
    font-size: 1.1rem;
    margin-bottom: 32px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1rem;
    font-family: var(--font-sans);
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: var(--radius-full);
    font-size: 1.4rem;
    box-shadow: var(--shadow-soft);
    transition: all var(--transition-medium);
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    background: var(--sage-light);
}

.contact-form-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-medium);
}

.contact-form-card h3 {
    font-size: 1.5rem;
    margin-bottom: 28px;
    text-align: center;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-medium);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid var(--beige);
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--beige-light);
    transition: all var(--transition-fast);
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sage-green);
    background: white;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

/* ================================
   FOOTER
   ================================ */
.footer {
    background: var(--text-dark);
    color: var(--beige-light);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-brand .logo-icon {
    font-size: 2rem;
}

.footer-brand .logo-text {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--beige-light);
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: var(--beige);
    font-weight: 500;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--sage-light);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.footer-credit {
    color: var(--sage-light) !important;
}

.footer-disclaimer {
    font-size: 0.8rem !important;
    opacity: 0.7;
}

/* ================================
   IMAGE STYLES
   ================================ */
.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--sage-light), var(--beige));
    color: var(--text-medium);
}

.placeholder-icon {
    font-size: 3rem;
}

.placeholder-text {
    font-size: 0.9rem;
    font-weight: 500;
}

/* About Section Image */
.about-img,
.image-frame img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--radius-xl);
}

/* Menu Item Images */
.menu-img,
.menu-item-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.menu-item:hover .menu-item-image img {
    transform: scale(1.05);
}

/* Gallery Images */
.gallery-img,
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Instagram Images */
.insta-img,
.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.instagram-item:hover img {
    transform: scale(1.1);
}

/* ================================
   ANIMATIONS
   ================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--transition-slow);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all var(--transition-slow);
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all var(--transition-slow);
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */
@media (max-width: 1024px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-image {
        order: -1;
    }
    
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item.large {
        grid-column: span 2;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 70px 0;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--glass-bg);
        backdrop-filter: var(--glass-blur);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transform: translateY(-150%);
        transition: transform var(--transition-medium);
        border-bottom: 1px solid rgba(143, 188, 143, 0.2);
    }
    
    .nav-links.active {
        transform: translateY(0);
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item.large {
        grid-column: span 1;
        aspect-ratio: 16/9;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .menu-categories {
        flex-direction: column;
        align-items: center;
    }
    
    .menu-tab {
        width: 100%;
        max-width: 280px;
    }
    
    .contact-form-card {
        padding: 28px;
    }
    
    .floating-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
        justify-content: center;
    }
}

/* ================================
   LEAF PATTERN DECORATIONS
   ================================ */
.section::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 10 Q60 30 50 50 Q40 30 50 10' fill='%238fbc8f' opacity='0.1'/%3E%3C/svg%3E") no-repeat center;
    pointer-events: none;
}

.about::before {
    top: 50px;
    right: 50px;
}

.menu::before {
    top: 30px;
    left: 30px;
}

.gallery::before {
    bottom: 50px;
    right: 50px;
}

/* Make sections position relative for decorations */
.about, .menu, .gallery {
    position: relative;
    overflow: hidden;
}
