/* =============================================
   Häts vun Kölle - Stylesheet
   ============================================= */

:root {
    --weinrot: #901E41;
    --weinrot-dark: #6d1731;
    --weinrot-light: #b52854;
    --petrol: #007883;
    --petrol-dark: #005a63;
    --petrol-light: #00a3b0;
    --white: #fff;
    --cream: #fdfaf7;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -2px rgba(0,0,0,.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.1);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all .2s ease; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.text-gradient {
    background: linear-gradient(135deg, var(--weinrot), var(--petrol));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px) { .container { padding: 0 32px; } }
.section { padding: 80px 0; }
@media (min-width: 768px) { .section { padding: 120px 0; } }

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px;
    transition: all .3s ease;
}
.nav.scrolled { padding: 8px 16px; }
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255,255,255,.5);
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { width: 44px; height: 44px; object-fit: contain; }
.nav-logo span {
    font-family: 'Fredoka', cursive;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
}
@media (max-width: 480px) { .nav-logo span { display: none; } }

.nav-links { display: none; align-items: center; gap: 4px; }
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-links a {
    padding: 10px 16px;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: .95rem;
    color: var(--gray-600);
}
.nav-links a:hover { color: var(--weinrot); background: rgba(144,30,65,.06); }
.nav-cta {
    background: linear-gradient(135deg, var(--weinrot), var(--weinrot-light));
    color: var(--white) !important;
    padding: 10px 24px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 14px rgba(144,30,65,.3);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(144,30,65,.4); }

.nav-mobile-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    color: var(--gray-700);
}
.nav-mobile-btn:hover { background: var(--gray-100); }
@media (min-width: 768px) { .nav-mobile-btn { display: none; } }

.mobile-menu {
    display: none;
    position: fixed;
    top: 90px;
    left: 16px;
    right: 16px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 8px;
    box-shadow: var(--shadow-xl);
    z-index: 999;
    border: 1px solid var(--gray-100);
}
.mobile-menu.active { display: block; animation: slideDown .3s ease; }
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
.mobile-menu a {
    display: block;
    padding: 16px 20px;
    font-weight: 500;
    color: var(--gray-700);
    border-radius: var(--radius);
}
.mobile-menu a:hover { background: var(--gray-50); color: var(--weinrot); }
.mobile-menu .nav-cta { margin: 8px; text-align: center; display: block; }

/* Hero */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(to bottom, rgba(255,255,255,.92) 0%, rgba(255,255,255,.8) 40%, rgba(255,255,255,.95) 100%);
}
.hero-content { padding: 120px 0 80px; text-align: center; width: 100%; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,120,131,.1);
    color: var(--petrol);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: .875rem;
    font-weight: 600;
    margin-bottom: 24px;
}
.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--petrol);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .6; transform: scale(.9); }
}
.hero-title {
    font-family: 'Fredoka', cursive;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
}
.hero-tagline {
    font-family: 'Fredoka', cursive;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 20px;
}
.hero-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 580px;
    margin: 0 auto 32px;
    line-height: 1.7;
}
.hero-description strong { color: var(--weinrot); }
.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    margin-bottom: 48px;
}
@media (min-width: 480px) { .hero-buttons { flex-direction: row; gap: 16px; } }
.hero-stats { display: flex; flex-wrap: wrap; gap: 32px; justify-content: center; }
.hero-stat { text-align: center; }
.hero-stat-value {
    font-family: 'Fredoka', cursive;
    font-size: 2rem;
    font-weight: 700;
    color: var(--weinrot);
    display: block;
}
.hero-stat-value.petrol { color: var(--petrol); }
.hero-stat-label { font-size: .875rem; color: var(--gray-500); }
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray-400);
    font-size: .875rem;
}
.hero-scroll-icon {
    width: 24px;
    height: 40px;
    border: 2px solid currentColor;
    border-radius: 12px;
    position: relative;
}
.hero-scroll-icon::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: currentColor;
    border-radius: 2px;
    animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(8px); opacity: .4; }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-weight: 600;
    transition: all .25s ease;
}
.btn svg { width: 20px; height: 20px; transition: transform .2s ease; }
.btn:hover svg { transform: translateX(3px); }
.btn-primary {
    background: linear-gradient(135deg, var(--weinrot), var(--weinrot-light));
    color: var(--white);
    box-shadow: 0 4px 14px rgba(144,30,65,.3);
}
.btn-primary:hover { box-shadow: 0 8px 25px rgba(144,30,65,.4); transform: translateY(-2px); }
.btn-secondary {
    background: var(--white);
    color: var(--gray-700);
    border: 2px solid var(--gray-200);
}
.btn-secondary:hover { border-color: var(--petrol); color: var(--petrol); }
.btn-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(220,39,67,.3);
}
.btn-instagram:hover { box-shadow: 0 8px 25px rgba(220,39,67,.4); transform: translateY(-2px); }
.btn-email {
    background: linear-gradient(135deg, var(--petrol), var(--petrol-light));
    color: var(--white);
    box-shadow: 0 4px 14px rgba(0,120,131,.3);
}
.btn-email:hover { box-shadow: 0 8px 25px rgba(0,120,131,.4); transform: translateY(-2px); }

/* Infografik Section */
.infografik-section {
    background: linear-gradient(135deg, var(--cream) 0%, rgba(232,245,245,.5) 100%);
    padding: 80px 0;
}
.infografik-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.infografik-wrapper img { width: 100%; display: block; }

/* Section Header */
.section-header { text-align: center; margin-bottom: 48px; }
@media (min-width: 768px) { .section-header { margin-bottom: 64px; } }
.section-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: .875rem;
    font-weight: 600;
    margin-bottom: 16px;
}
.section-badge.petrol { background: rgba(0,120,131,.1); color: var(--petrol); }
.section-badge.weinrot { background: rgba(144,30,65,.1); color: var(--weinrot); }
.section-title {
    font-family: 'Fredoka', cursive;
    font-size: clamp(1.75rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 12px;
}
.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-section { background: linear-gradient(to bottom, var(--white), var(--cream)); }
.about-grid { display: grid; gap: 24px; margin-bottom: 48px; }
@media (min-width: 768px) { .about-grid { grid-template-columns: 1fr 1fr; } }

.member-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all .3s ease;
}
.member-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.member-image { position: relative; height: 280px; overflow: hidden; }
.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.member-card:hover .member-image img { transform: scale(1.05); }
.member-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--weinrot) 0%, rgba(144,30,65,.3) 50%, transparent 100%);
}
.member-overlay.petrol {
    background: linear-gradient(to top, var(--petrol) 0%, rgba(0,120,131,.3) 50%, transparent 100%);
}
.member-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    color: var(--white);
}
.member-emoji { font-size: 2rem; margin-bottom: 4px; }
.member-name { font-family: 'Fredoka', cursive; font-size: 1.75rem; font-weight: 700; }
.member-role { font-size: .95rem; opacity: .9; }
.member-body { padding: 24px; }
.member-body p { color: var(--gray-600); line-height: 1.7; margin-bottom: 16px; }
.member-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.tag { padding: 6px 14px; border-radius: 50px; font-size: .8rem; font-weight: 600; }
.tag.weinrot { background: rgba(144,30,65,.1); color: var(--weinrot); }
.tag.petrol { background: rgba(0,120,131,.1); color: var(--petrol); }

/* Features */
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (min-width: 768px) { .features-grid { grid-template-columns: repeat(4, 1fr); } }
.feature-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: all .3s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-icon { font-size: 2.5rem; margin-bottom: 12px; }
.feature-card h4 { font-weight: 700; margin-bottom: 4px; }
.feature-card p { font-size: .875rem; color: var(--gray-500); }

/* Termine Section */
.termine-section { background: linear-gradient(to bottom, var(--cream), rgba(232,245,245,.5)); }

.highlight-event { position: relative; }
.highlight-event-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--weinrot), var(--petrol));
    border-radius: var(--radius-xl);
    transform: rotate(1deg);
}
.highlight-event-inner {
    position: relative;
    background: linear-gradient(135deg, var(--weinrot), var(--weinrot-dark));
    border-radius: var(--radius-xl);
    overflow: hidden;
}
.highlight-event-grid { display: grid; }
@media (min-width: 768px) { .highlight-event-grid { grid-template-columns: 1fr 200px; } }

.highlight-event-main { padding: 32px; color: var(--white); }
@media (min-width: 768px) { .highlight-event-main { padding: 40px; } }

.highlight-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; }
.badge-highlight {
    background: rgba(255,255,255,.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 700;
}
.badge-jubilee {
    background: var(--petrol);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 700;
}
.highlight-event-main h3 {
    font-family: 'Fredoka', cursive;
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 12px;
}
.highlight-event-main > p { opacity: .9; margin-bottom: 24px; line-height: 1.6; }
.highlight-details { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.highlight-detail { display: flex; align-items: flex-start; gap: 10px; font-size: .95rem; }
.highlight-detail-icon { font-size: 1.25rem; flex-shrink: 0; }
.highlight-detail span { line-height: 1.4; }
.ticket-hint {
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(10px);
    padding: 16px 20px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 12px;
}
.ticket-hint-icon { font-size: 1.5rem; }
.ticket-hint p { font-size: .9rem; line-height: 1.5; }
.ticket-hint a { text-decoration: underline; font-weight: 600; }

.highlight-poster {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 767px) {
    .highlight-poster { padding: 0 32px 32px; }
}
.poster-thumb {
    width: 160px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.3);
    cursor: pointer;
    transition: transform .3s ease;
    position: relative;
}
.poster-thumb:hover { transform: scale(1.05); }
.poster-thumb img { width: 100%; display: block; }
.poster-zoom {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s ease;
}
.poster-thumb:hover .poster-zoom { opacity: 1; }
.poster-zoom svg { width: 32px; height: 32px; color: white; }

/* Weitere Termine */
.weitere-termine {
    margin-top: 48px;
}
.weitere-termine h3 {
    font-family: 'Fredoka', cursive;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: var(--gray-700);
}
.termine-list {
    display: grid;
    gap: 16px;
}
@media (min-width: 640px) { .termine-list { grid-template-columns: repeat(2, 1fr); } }
.termin-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow);
    transition: all .3s ease;
    flex-wrap: wrap;
}
.termin-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.termin-date {
    background: linear-gradient(135deg, var(--petrol), var(--petrol-light));
    color: var(--white);
    border-radius: var(--radius);
    padding: 12px 16px;
    text-align: center;
    min-width: 60px;
}
.termin-day {
    display: block;
    font-family: 'Fredoka', cursive;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}
.termin-month {
    display: block;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.termin-info {
    flex: 1;
    min-width: 120px;
}
.termin-info strong {
    display: block;
    font-weight: 700;
    margin-bottom: 2px;
}
.termin-info span {
    font-size: .9rem;
    color: var(--gray-500);
}
.termin-badge {
    padding: 6px 12px;
    border-radius: 50px;
    font-size: .75rem;
    font-weight: 600;
}
.termin-badge.closed {
    background: rgba(144,30,65,.1);
    color: var(--weinrot);
}

.booking-cta {
    background: linear-gradient(135deg, rgba(0,120,131,.05), rgba(144,30,65,.05));
    border: 2px dashed var(--gray-300);
    border-radius: var(--radius-xl);
    padding: 40px;
    text-align: center;
    margin-top: 48px;
}
.booking-cta-icon { font-size: 3rem; margin-bottom: 16px; }
.booking-cta h4 { font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; }
.booking-cta a { color: var(--weinrot); font-weight: 600; }
.booking-cta a:hover { text-decoration: underline; }

/* Repertoire & Leistungen Section */
.repertoire-section { background: var(--white); position: relative; overflow: hidden; }

.leistungen-grid { display: grid; gap: 16px; margin-bottom: 48px; }
@media (min-width: 640px) { .leistungen-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .leistungen-grid { grid-template-columns: repeat(4, 1fr); } }

.leistung-card {
    background: linear-gradient(135deg, rgba(0,120,131,.05), rgba(144,30,65,.05));
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    transition: all .3s ease;
    border: 1px solid transparent;
}
.leistung-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--petrol);
}
.leistung-icon { font-size: 2.5rem; margin-bottom: 12px; }
.leistung-card h4 { font-weight: 700; margin-bottom: 6px; color: var(--gray-800); }
.leistung-card p { font-size: .875rem; color: var(--gray-600); line-height: 1.5; }

.repertoire-intro {
    text-align: center;
    margin-bottom: 32px;
    padding: 24px;
    background: var(--cream);
    border-radius: var(--radius-lg);
}
.repertoire-intro p {
    color: var(--gray-700);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.bands-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 32px; }
@media (min-width: 640px) { .bands-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .bands-grid { grid-template-columns: repeat(5, 1fr); } }
.band-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 24px 16px;
    text-align: center;
    transition: all .3s ease;
}
.band-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: transparent; }
.band-icon { font-size: 2.5rem; margin-bottom: 12px; }
.band-card strong { display: block; font-size: 1rem; margin-bottom: 4px; }
.band-card small { color: var(--gray-500); font-size: .8rem; }

.instagram-hint {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-radius: var(--radius-xl);
    padding: 32px;
    text-align: center;
    color: white;
}
.instagram-hint h4 {
    font-family: 'Fredoka', cursive;
    font-size: 1.5rem;
    margin-bottom: 12px;
}
.instagram-hint p { opacity: .95; margin-bottom: 20px; }
.instagram-hint .btn {
    background: white;
    color: var(--gray-800);
}
.instagram-hint .btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,.2); }

/* Contact Section */
.contact-section { background: linear-gradient(to bottom, rgba(232,245,245,.3), var(--white)); }
.contact-grid { display: grid; gap: 24px; max-width: 700px; margin: 0 auto; }
@media (min-width: 640px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-xl);
    text-align: center;
    transition: all .3s ease;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: 0 25px 50px rgba(0,0,0,.15); }
.contact-card-icon { font-size: 3rem; margin-bottom: 16px; }
.contact-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; }
.contact-card p { color: var(--gray-600); margin-bottom: 20px; line-height: 1.6; }
.contact-card .btn { width: 100%; }
.contact-response {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(0,120,131,.08), rgba(144,30,65,.08));
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
}
.contact-response-icon { font-size: 2rem; margin-bottom: 8px; }
.contact-response strong { display: block; margin-bottom: 4px; }
.contact-response small { color: var(--gray-600); }

/* Footer */
.footer { background: var(--gray-900); color: var(--white); padding: 64px 0; }
.footer-grid { display: grid; gap: 32px; margin-bottom: 40px; text-align: center; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr; text-align: left; align-items: center; } }
.footer-brand { display: flex; flex-direction: column; align-items: center; }
@media (min-width: 768px) { .footer-brand { align-items: flex-start; } }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.footer-logo img { width: 48px; height: 48px; }
.footer-logo span { font-family: 'Fredoka', cursive; font-size: 1.5rem; font-weight: 700; }
.footer-tagline { color: var(--gray-400); }
.footer-links { display: flex; justify-content: center; gap: 32px; }
.footer-links a { color: var(--gray-400); }
.footer-links a:hover { color: var(--white); }
.footer-social { display: flex; justify-content: center; }
@media (min-width: 768px) { .footer-social { justify-content: flex-end; } }
.footer-social a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.1);
    padding: 12px 24px;
    border-radius: var(--radius);
}
.footer-social a:hover { background: rgba(255,255,255,.15); }
.footer-social svg { width: 20px; height: 20px; fill: currentColor; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 32px;
    text-align: center;
    color: var(--gray-500);
    font-size: .875rem;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.lightbox.active { display: flex; }
.lightbox img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px rgba(0,0,0,.5);
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background .2s ease;
}
.lightbox-close:hover { background: rgba(255,255,255,.2); }
