/* 
   Çamlı Bahçe Restaurant Design System
   Color Palette: Warm forest greens, organic cream backdrops, and sunset amber accents.
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    --primary: #1A3B22; /* Rich Forest Green */
    --primary-light: #2D6A4F; /* Soft Mint Green */
    --primary-dark: #0F2516; /* Deep Pine Green */
    --accent: #E28743; /* Warm Terracotta / Amber */
    --accent-hover: #C56F2F;
    --bg-cream: #FCFAF6; /* Organic Cream Background */
    --bg-white: #FFFFFF;
    --text-dark: #1F2937; /* Dark Slate Gray */
    --text-muted: #6B7280; /* Soft Gray */
    --gold: #F59E0B; /* Golden Honey Accent */
    
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.05), 0 4px 6px -2px rgba(0,0,0,0.02);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.08), 0 10px 10px -5px rgba(0,0,0,0.03);
    --shadow-glow: 0 0 20px rgba(226, 135, 67, 0.4);
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-dark);
    font-weight: 700;
}

p {
    font-weight: 300;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }

.section-padding {
    padding: 100px 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
    outline: none;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--bg-white);
    box-shadow: var(--shadow-md);
}

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

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.badge {
    background-color: var(--gold);
    color: var(--primary-dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

/* Header & Navbar */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(252, 250, 246, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(26, 59, 34, 0.05);
    transition: var(--transition-normal);
}

header.scrolled {
    background-color: rgba(26, 59, 34, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

header.scrolled .logo-text {
    color: var(--bg-cream);
}

header.scrolled .logo-sub {
    color: var(--gold);
}

header.scrolled nav a {
    color: rgba(252, 250, 246, 0.8);
}

header.scrolled nav a:hover, header.scrolled nav a.active {
    color: var(--gold);
}

header.scrolled .menu-toggle span {
    background-color: var(--bg-cream);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: var(--transition-normal);
}

header.scrolled .navbar {
    height: 70px;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--primary-dark);
}

.logo-sub {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-light);
}

nav ul {
    display: flex;
    align-items: center;
    gap: 32px;
}

nav a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition-normal);
}

nav a:hover::after, nav a.active::after {
    width: 100%;
}

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    background: transparent;
    border: none;
}

.menu-toggle span {
    width: 100%;
    height: 2.5px;
    background-color: var(--primary-dark);
    border-radius: 2px;
    transition: var(--transition-normal);
}

/* Hero Section - Spotlight on Gözleme */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.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;
    filter: brightness(0.45);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(180deg, rgba(26, 59, 34, 0.4) 0%, rgba(15, 37, 22, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    text-align: center;
    color: var(--bg-cream);
    padding: 0 20px;
}

.hero-badge {
    margin-bottom: 24px;
    animation: pulseGlow 2s infinite alternate;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 5px rgba(245, 158, 11, 0.3);
        transform: scale(1);
    }
    100% {
        box-shadow: 0 0 20px rgba(245, 158, 11, 0.7);
        transform: scale(1.05);
    }
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--bg-cream);
    line-height: 1.1;
    margin-bottom: 20px;
    font-style: italic;
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 40px;
    color: rgba(252, 250, 246, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Features Banner */
.features-banner {
    background-color: var(--bg-white);
    padding: 40px 0;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid rgba(26, 59, 34, 0.05);
    position: relative;
    z-index: 10;
    margin-top: -30px;
    border-radius: 12px 12px 0 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(26, 59, 34, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.4rem;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Section Header */
.section-header {
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.section-title-sub {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* Spotlight Section (Special Gözleme showcase) */
.spotlight {
    background-color: var(--bg-white);
    overflow: hidden;
}

.spotlight-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.spotlight-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.spotlight-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 50%);
}

.spotlight-image {
    width: 100%;
    object-fit: cover;
    height: 550px;
    transition: var(--transition-slow);
}

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

.spotlight-image-tag {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 10;
}

.spotlight-content {
    padding-right: 20px;
}

.spotlight-title {
    font-size: clamp(2.2rem, 3.5vw, 3.2rem);
    margin-bottom: 24px;
    line-height: 1.15;
}

.spotlight-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.spotlight-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.highlight-card {
    background-color: var(--bg-cream);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--accent);
    box-shadow: var(--shadow-sm);
}

.highlight-card h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: var(--primary-dark);
}

.highlight-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Full Menu Section */
.menu {
    background-color: var(--bg-cream);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.menu-tab {
    background-color: var(--bg-white);
    border: 1px solid rgba(26, 59, 34, 0.1);
    color: var(--primary-dark);
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-normal);
}

.menu-tab:hover, .menu-tab.active {
    background-color: var(--primary);
    color: var(--bg-white);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.menu-card {
    background-color: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.menu-card-img-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.menu-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.menu-card-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
}

.menu-card-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.menu-card-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 12px;
}

.menu-card-title {
    font-size: 1.4rem;
    font-weight: 700;
}

.menu-card-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent);
    font-family: 'Outfit', sans-serif;
}

.menu-card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.menu-card-footer {
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-card-author {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--primary-light);
    font-weight: 500;
}

.menu-card-author i {
    font-size: 1rem;
}

/* Starred Item Highlight (Special Gözleme card style) */
.menu-card.featured-card {
    border: 2px solid var(--accent);
    box-shadow: 0 15px 30px -5px rgba(226, 135, 67, 0.15);
}

.menu-card.featured-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--accent);
    z-index: 10;
}

/* About Us Section */
.about {
    background-color: var(--bg-white);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    height: 480px;
}

.about-img-1 {
    grid-column: 1 / 10;
    grid-row: 1 / 11;
    z-index: 2;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-2 {
    grid-column: 5 / 13;
    grid-row: 4 / 13;
    z-index: 3;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 8px solid var(--bg-white);
}

.about-img-1 img, .about-img-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-badge-floating {
    position: absolute;
    bottom: -20px;
    left: 20px;
    z-index: 4;
    background-color: var(--primary);
    color: var(--bg-cream);
    padding: 20px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-badge-floating .years {
    font-size: 2.2rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    line-height: 1;
}

.about-badge-floating .text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.about-content h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin-bottom: 24px;
}

.about-content p {
    margin-bottom: 24px;
    color: var(--text-dark);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 4px;
}

.stat-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Instagram Showcase */
.instagram-sec {
    background-color: var(--primary-dark);
    color: var(--bg-cream);
}

.instagram-sec .section-title {
    color: var(--bg-cream);
}

.instagram-sec .section-desc {
    color: rgba(252, 250, 246, 0.7);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.instagram-card {
    position: relative;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.instagram-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.instagram-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 59, 34, 0.8);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: var(--transition-normal);
    z-index: 2;
}

.instagram-card:hover img {
    transform: scale(1.08);
}

.instagram-card:hover .instagram-card-overlay {
    opacity: 1;
}

.instagram-icon {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 12px;
}

.instagram-card-text {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Contact & Info Section */
.contact {
    background-color: var(--bg-cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
}

.contact-info-panel {
    background-color: var(--primary);
    color: var(--bg-cream);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info-panel h3 {
    color: var(--bg-cream);
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.contact-info-panel > p {
    color: rgba(252, 250, 246, 0.7);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-detail-text h4 {
    color: var(--bg-cream);
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.contact-detail-text p, .contact-detail-text a {
    color: rgba(252, 250, 246, 0.85);
    font-size: 0.95rem;
}

.contact-detail-text a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 40px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-cream);
    font-size: 1.2rem;
    transition: var(--transition-normal);
}

.social-link:hover {
    background-color: var(--accent);
    color: var(--bg-white);
    transform: translateY(-3px);
}

.contact-form-panel {
    background-color: var(--bg-white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(26, 59, 34, 0.03);
}

.contact-form-panel h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.contact-form-panel > p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 14px 20px;
    border-radius: 12px;
    border: 1px solid rgba(26, 59, 34, 0.15);
    background-color: var(--bg-cream);
    color: var(--text-dark);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition-normal);
    outline: none;
}

.form-control:focus {
    border-color: var(--primary);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(26, 59, 34, 0.08);
}

textarea.form-control {
    resize: none;
    min-height: 120px;
}

/* Map Section */
.map-sec {
    height: 400px;
    position: relative;
    overflow: hidden;
}

.map-sec iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background-color: var(--bg-white);
    padding: 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    max-width: 320px;
    z-index: 10;
    border-left: 6px solid var(--primary);
}

.map-card h4 {
    margin-bottom: 8px;
}

.map-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

/* Toast Message */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-dark);
    color: var(--bg-cream);
    padding: 16px 28px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    z-index: 2000;
    transform: translateY(100px);
    opacity: 0;
    transition: var(--transition-normal);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast i {
    color: var(--gold);
    font-size: 1.2rem;
}

/* Footer */
footer {
    background-color: var(--primary-dark);
    color: rgba(252, 250, 246, 0.7);
    padding: 60px 0 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo-text {
    color: var(--bg-cream);
}

.footer-brand .logo-sub {
    color: var(--gold);
}

.footer-brand p {
    font-size: 0.95rem;
    max-width: 320px;
}

.footer-widget h4 {
    color: var(--bg-cream);
    font-size: 1.15rem;
    margin-bottom: 24px;
    font-family: 'Playfair Display', serif;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-hours-list li {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 8px;
    border-bottom: 1px dotted rgba(255,255,255,0.1);
    padding-bottom: 6px;
}

.footer-hours-list .day {
    font-weight: 500;
    color: rgba(252, 250, 246, 0.9);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-credit {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: rgba(252, 250, 246, 0.6);
}

.credit-btn {
    border: 1px solid var(--accent);
    padding: 6px 18px;
    border-radius: 30px;
    color: var(--accent) !important;
    font-weight: 600;
    font-size: 0.8rem;
    transition: var(--transition-normal);
}

.credit-btn:hover {
    background-color: var(--accent);
    color: var(--bg-white) !important;
    box-shadow: var(--shadow-glow);
}

/* Image Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-normal);
}

.lightbox.show {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    border-radius: 12px;
    overflow: hidden;
    transform: scale(0.9);
    transition: var(--transition-normal);
    box-shadow: var(--shadow-lg);
}

.lightbox.show .lightbox-content {
    transform: scale(1);
}

.lightbox-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 80vh;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: var(--bg-cream);
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    transition: var(--transition-fast);
}

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

/* Responsive CSS */
@media (max-width: 1024px) {
    .spotlight-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .spotlight-image-wrapper {
        order: 1;
    }
    
    .spotlight-content {
        order: 2;
        padding-right: 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-images {
        height: 400px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--bg-white);
        box-shadow: var(--shadow-lg);
        padding: 40px 24px;
        border-bottom: 2px solid var(--primary);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: var(--transition-normal);
        z-index: 999;
    }
    
    header.scrolled nav {
        top: 70px;
    }
    
    nav.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    
    nav a {
        font-size: 1.1rem;
    }
    
    .nav-cta {
        display: none;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info-panel {
        padding: 30px;
    }
    
    .contact-form-panel {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .instagram-grid {
        grid-template-columns: 1fr;
    }
    
    .spotlight-highlights {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .about-badge-floating {
        padding: 15px 20px;
    }
    
    .about-badge-floating .years {
        font-size: 1.8rem;
    }
}
