/* ========================================
   Penya Tant M'en Fot - Styles
   ======================================== */

/* Variables */
:root {
    --orange-50: #fff7ed;
    --orange-100: #ffedd5;
    --orange-200: #fed7aa;
    --orange-300: #fdba74;
    --orange-400: #fb923c;
    --orange-500: #f97316;
    --orange-600: #ea580c;
    --orange-700: #c2410c;
    --orange-800: #9a3412;
    --orange-900: #7c2d12;

    --gray-50: #fafafa;
    --gray-100: #f4f4f5;
    --gray-200: #e4e4e7;
    --gray-300: #d4d4d8;
    --gray-600: #52525b;
    --gray-700: #3f3f46;
    --gray-800: #27272a;
    --gray-900: #18181b;

    --white: #ffffff;
    --font-display: 'Fredoka', sans-serif;
    --font-body: 'Inter', sans-serif;

    --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
    --shadow-md: 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;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--orange-600);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 0 0 var(--radius) var(--radius);
    font-weight: 600;
    z-index: 2000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* Focus styles */
:focus-visible {
    outline: 3px solid var(--orange-400);
    outline-offset: 2px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

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

/* ========================================
   Navigation
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    padding: 10px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--white);
    transition: color 0.3s;
}

.navbar.scrolled .nav-logo {
    color: var(--orange-600);
}

.logo-icon {
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--white);
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange-400);
    transition: width 0.3s;
}

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

.navbar.scrolled .nav-links a {
    color: var(--gray-700);
}

.navbar.scrolled .nav-links a:hover {
    color: var(--orange-600);
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
}

.navbar.scrolled .nav-toggle span {
    background: var(--gray-700);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--orange-600) 0%, var(--orange-500) 30%, var(--orange-400) 70%, var(--orange-300) 100%);
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255,255,255,0.08) 0%, transparent 40%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(1deg); }
    66% { transform: translate(-20px, 20px) rotate(-1deg); }
}

.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%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='m36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.hero-title {
    margin-bottom: 16px;
}

.hero-penya {
    display: block;
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.hero-name {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    text-shadow: 2px 4px 8px rgba(0,0,0,0.15);
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 48px;
    font-weight: 500;
}

/* Countdown */
.countdown {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 12px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: var(--radius);
    padding: 16px 24px;
    min-width: 90px;
}

.countdown-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.countdown-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.countdown-text {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    margin-bottom: 32px;
}

.hero-cta {
    display: inline-block;
    background: var(--white);
    color: var(--orange-600);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 14px 36px;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: var(--shadow-lg);
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    background: var(--orange-50);
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    opacity: 0.7;
}

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

/* ========================================
   Sections General
   ======================================== */
.section {
    padding: 100px 0;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--gray-900);
    text-align: center;
    margin-bottom: 48px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--orange-500);
    margin: 16px auto 0;
    border-radius: 2px;
}

.section-title--light {
    color: var(--white);
}

.section-title--light::after {
    background: rgba(255,255,255,0.6);
}

/* ========================================
   About Section
   ======================================== */
.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-lead {
    font-size: 1.2rem;
    color: var(--gray-800);
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-text p {
    color: var(--gray-600);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-text em {
    color: var(--orange-600);
    font-style: italic;
    font-weight: 600;
}

.about-stats {
    display: flex;
    gap: 24px;
    margin-top: 32px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    padding: 20px 12px;
    background: var(--orange-50);
    border-radius: var(--radius);
    border: 1px solid var(--orange-100);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--orange-600);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--gray-600);
    margin-top: 2px;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    max-width: 400px;
    background: linear-gradient(135deg, var(--orange-400), var(--orange-600));
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.about-image-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.08' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}

.placeholder-emoji {
    font-size: 5rem;
    position: relative;
    z-index: 1;
}

.about-image-placeholder p {
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 12px;
}

/* ========================================
   Aplec Section
   ======================================== */
.aplec {
    background: linear-gradient(135deg, var(--orange-600), var(--orange-700));
    color: var(--white);
}

.aplec-intro {
    text-align: center;
    font-size: 1.15rem;
    max-width: 700px;
    margin: -24px auto 48px;
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
}

.aplec-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.aplec-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.3s, background 0.3s;
}

.aplec-card:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.15);
}

.aplec-card-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.aplec-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.aplec-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

/* ========================================
   Planning Section
   ======================================== */
.planning {
    background: var(--gray-50);
}

.planning-subtitle {
    text-align: center;
    color: var(--gray-600);
    margin-top: -32px;
    margin-bottom: 48px;
    font-size: 1.1rem;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.timeline-day {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s;
}

.timeline-day:hover {
    transform: translateY(-4px);
}

.timeline-header {
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.timeline-header h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--white);
}

.timeline-badge {
    background: rgba(255,255,255,0.25);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timeline-events {
    padding: 20px 24px;
}

.timeline-event {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
}

.timeline-event:last-child {
    border-bottom: none;
}

.event-time {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--orange-600);
    font-size: 0.9rem;
    white-space: nowrap;
    min-width: 60px;
}

.event-desc {
    color: var(--gray-700);
    font-size: 0.9rem;
}

/* ========================================
   Gallery Section
   ======================================== */
.galeria {
    background: linear-gradient(135deg, var(--gray-800), var(--gray-900));
    color: var(--white);
}

.galeria-subtitle {
    text-align: center;
    color: rgba(255,255,255,0.7);
    margin-top: -32px;
    margin-bottom: 48px;
    font-size: 1.1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: var(--radius);
    overflow: hidden;
}

.gallery-item--wide {
    grid-column: span 2;
    aspect-ratio: 2/1;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--orange-500), var(--orange-700));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: transform 0.3s;
    cursor: pointer;
}

.gallery-placeholder:hover {
    transform: scale(1.05);
}

.gallery-placeholder span {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.gallery-placeholder p {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.9rem;
}

.galeria-cta {
    text-align: center;
    margin-top: 40px;
}

.btn--outline {
    display: inline-block;
    border: 2px solid rgba(255,255,255,0.5);
    color: var(--white);
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
}

.btn--outline:hover {
    background: var(--white);
    color: var(--gray-900);
    border-color: var(--white);
}

/* Instagram Banner */
.instagram-section {
    margin-top: 48px;
}

.instagram-banner {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 24px 32px;
}

.instagram-banner-icon {
    color: var(--white);
    flex-shrink: 0;
}

.instagram-banner-text {
    flex: 1;
}

.instagram-banner-text h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 4px;
}

.instagram-banner-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.instagram-banner .btn--outline {
    flex-shrink: 0;
    padding: 10px 24px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .instagram-banner {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }
}

/* ========================================
   Contact Section
   ======================================== */
.contacte {
    background: var(--white);
}

.contacte-intro {
    text-align: center;
    color: var(--gray-600);
    margin-top: -24px;
    margin-bottom: 48px;
    font-size: 1.1rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.contacte-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
}

/* Contact Form */
.contacte-form-wrapper {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--gray-200);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--gray-800);
    background: var(--white);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange-400);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}

.form-group input.invalid,
.form-group textarea.invalid {
    border-color: #ef4444;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-error {
    display: none;
    color: #ef4444;
    font-size: 0.8rem;
    margin-top: 4px;
}

.form-error.visible {
    display: block;
}

.form-submit {
    width: 100%;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-submit .submit-loading {
    display: none;
}

.form-submit.loading .submit-text {
    display: none;
}

.form-submit.loading .submit-loading {
    display: inline;
}

.form-success {
    display: none;
    margin-top: 16px;
    padding: 14px 20px;
    background: #ecfdf5;
    color: #065f46;
    border-radius: var(--radius);
    font-weight: 500;
    text-align: center;
}

.form-success.visible {
    display: block;
}

.form-error-global {
    display: none;
    margin-top: 16px;
    padding: 14px 20px;
    background: #fef2f2;
    color: #991b1b;
    border-radius: var(--radius);
    font-weight: 500;
    text-align: center;
}

.form-error-global.visible {
    display: block;
}

/* Contact Info (vertical cards + map) */
.contacte-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contacte-cards-vertical {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contacte-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-radius: var(--radius);
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
}

.contacte-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--orange-200);
}

.contacte-icon {
    color: var(--orange-500);
    flex-shrink: 0;
}

.contacte-card h3 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    margin-bottom: 2px;
    color: var(--gray-800);
}

.contacte-card p {
    color: var(--gray-600);
    font-size: 0.85rem;
}

/* Map */
.map-container {
    height: 250px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 48px 0 24px;
}

.footer-content {
    text-align: center;
    margin-bottom: 24px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.footer-tagline {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--orange-500);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
    .aplec-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 32px 32px;
        gap: 20px;
        box-shadow: var(--shadow-xl);
        transition: right 0.3s;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: var(--gray-700);
        font-size: 1.1rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
    }

    .about-stats {
        flex-wrap: wrap;
    }

    .aplec-cards {
        grid-template-columns: 1fr;
    }

    .timeline {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item--wide {
        grid-column: span 2;
    }

    .contacte-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contacte-form-wrapper {
        padding: 24px;
    }

    .countdown {
        gap: 12px;
    }

    .countdown-item {
        padding: 12px 16px;
        min-width: 70px;
    }

    .countdown-number {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        margin-bottom: 32px;
    }
}

@media (max-width: 480px) {
    .countdown {
        gap: 8px;
    }

    .countdown-item {
        padding: 10px 12px;
        min-width: 60px;
    }

    .countdown-number {
        font-size: 1.5rem;
    }

    .section {
        padding: 64px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-item--wide {
        grid-column: span 1;
        aspect-ratio: 1;
    }
}

/* ========================================
   Lightbox
   ======================================== */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(0, 0, 0, 0.92);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

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

.lightbox-placeholder {
    width: 60vw;
    height: 60vh;
    max-width: 600px;
    max-height: 500px;
    background: linear-gradient(135deg, var(--orange-500), var(--orange-700));
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.lightbox-emoji {
    font-size: 6rem;
    margin-bottom: 16px;
}

.lightbox-caption {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s;
    font-size: 2rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.15);
}

.lightbox-close {
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-family: var(--font-display);
}

/* Gallery placeholder as button */
.gallery-placeholder {
    border: none;
    font-family: inherit;
}

@media (max-width: 768px) {
    .lightbox-placeholder {
        width: 85vw;
        height: 50vh;
    }

    .lightbox-prev {
        left: 8px;
    }

    .lightbox-next {
        right: 8px;
    }
}
