/* ========================================
   SR60 Event Recap - Stylish Gallery Styles
   ======================================== */

/* CSS Variables - Matching main site */
:root {
    --navy-blue: #1e3a8a;
    --maroon: #991b1b;
    --olive-green: #6B8E23;
    --white: #ffffff;
    --diamond: #f8fafc;
    --dark-text: #1f2937;
    --gray-text: #6b7280;
    --light-gray: #f3f4f6;
    --gold-accent: #d4af37;
    --gradient-primary: linear-gradient(135deg, var(--navy-blue) 0%, var(--olive-green) 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.15);
    --shadow-strong: 0 15px 50px rgba(0, 0, 0, 0.25);
}

/* ========================================
   Video Hero Section
   ======================================== */
.video-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-dark);
    overflow: hidden;
    padding-top: 80px;
}

.video-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(107, 142, 35, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(30, 58, 138, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(153, 27, 27, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.video-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.8s ease-out 0.2s both;
}

.badge-icon {
    font-size: 1.1rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

.video-hero-title {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

.title-line {
    display: block;
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    animation: slideInFromLeft 0.8s ease-out 0.3s both;
}

.title-accent {
    display: block;
    font-size: clamp(1.5rem, 5vw, 3rem);
    font-weight: 400;
    color: var(--olive-green);
    font-style: italic;
    animation: slideInFromRight 0.8s ease-out 0.4s both;
}

.video-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    margin: 1.5rem auto;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.video-hero-date {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--gold-accent);
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.date-icon {
    font-size: 1.2rem;
}

/* Floating Decorative Shapes */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--olive-green);
    top: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--maroon);
    bottom: -50px;
    left: -50px;
    animation: float 10s ease-in-out infinite reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--gold-accent);
    top: 50%;
    left: 10%;
    animation: float 12s ease-in-out infinite;
}

.shape-4 {
    width: 100px;
    height: 100px;
    background: var(--white);
    bottom: 20%;
    right: 15%;
    animation: float 9s ease-in-out infinite reverse;
}

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

/* ========================================
   Video Player Section
   ======================================== */
.video-player-section {
    padding: 5rem 0;
    background: var(--light-gray);
    position: relative;
}

.video-player-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, var(--gradient-dark), transparent);
    pointer-events: none;
}

.video-intro {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.video-intro .section-title {
    color: var(--navy-blue);
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 0.5rem;
}

.video-intro .section-subtitle {
    color: var(--gray-text);
    font-family: 'Inter', sans-serif;
}

.video-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.video-frame {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    background: #000;
}

.video-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: var(--gradient-primary);
    opacity: 0.3;
    filter: blur(40px);
    z-index: -1;
    border-radius: 30px;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.placeholder-content {
    text-align: center;
    color: var(--white);
}

.play-button-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
}

.play-button-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: var(--olive-green);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.1; }
}

.play-button {
    position: relative;
    width: 80px;
    height: 80px;
    background: var(--olive-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(107, 142, 35, 0.4);
}

.play-button svg {
    width: 30px;
    height: 30px;
    margin-left: 5px;
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 50px rgba(107, 142, 35, 0.5);
}

.placeholder-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.placeholder-subtext {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.video-description {
    margin-top: 2rem;
}

.description-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    max-width: 800px;
    margin: 0 auto;
}

.description-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.description-text h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--navy-blue);
    margin-bottom: 0.5rem;
}

.description-text p {
    font-family: 'Inter', sans-serif;
    color: var(--gray-text);
    line-height: 1.6;
}

/* ========================================
   Event Gallery Section
   ======================================== */
.event-gallery-section {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.event-gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 0% 0%, rgba(107, 142, 35, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(30, 58, 138, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.gallery-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.gallery-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.gallery-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--navy-blue);
    margin-bottom: 0.5rem;
}

.gallery-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: var(--gray-text);
    max-width: 500px;
    margin: 0 auto 2rem;
}

.gallery-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--olive-green);
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--gray-text), transparent);
}

/* ========================================
   Masonry Gallery Grid
   ======================================== */
.masonry-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 0 1rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    background: var(--light-gray);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUpItem 0.6s ease-out forwards;
}

/* Staggered animation delays */
.gallery-item:nth-child(1) { animation-delay: 0.05s; }
.gallery-item:nth-child(2) { animation-delay: 0.1s; }
.gallery-item:nth-child(3) { animation-delay: 0.15s; }
.gallery-item:nth-child(4) { animation-delay: 0.2s; }
.gallery-item:nth-child(5) { animation-delay: 0.25s; }
.gallery-item:nth-child(6) { animation-delay: 0.3s; }
.gallery-item:nth-child(7) { animation-delay: 0.35s; }
.gallery-item:nth-child(8) { animation-delay: 0.4s; }
.gallery-item:nth-child(9) { animation-delay: 0.45s; }
.gallery-item:nth-child(10) { animation-delay: 0.5s; }
.gallery-item:nth-child(11) { animation-delay: 0.55s; }
.gallery-item:nth-child(12) { animation-delay: 0.6s; }
.gallery-item:nth-child(n+13) { animation-delay: 0.65s; }

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

/* Varied heights for masonry effect */
.gallery-item:nth-child(3n+1) { grid-row: span 1; }
.gallery-item:nth-child(3n+2) { grid-row: span 1; }
.gallery-item:nth-child(5n) { grid-row: span 1; }

.gallery-item img {
    width: 100%;
    height: 100%;
    min-height: 250px;
    max-height: 400px;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(30, 58, 138, 0.8) 0%,
        rgba(107, 142, 35, 0.8) 100%
    );
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease;
}

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

.overlay-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    backdrop-filter: blur(5px);
}

.gallery-item:hover .overlay-icon {
    transform: scale(1);
}

.overlay-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.overlay-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease 0.1s;
}

.gallery-item:hover .overlay-text {
    opacity: 1;
    transform: translateY(0);
}

/* Load More Button */
.gallery-load-more {
    text-align: center;
    margin-top: 3rem;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--white);
    border: 2px solid var(--olive-green);
    color: var(--olive-green);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.load-more-btn:hover {
    background: var(--olive-green);
    color: var(--white);
}

.load-more-btn:hover svg {
    transform: translateY(3px);
}

/* ========================================
   Lightbox Modal
   ======================================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

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

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.lightbox-container {
    position: relative;
    height: calc(100% - 100px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lightbox-close svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

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

.lightbox-nav:hover {
    background: var(--olive-green);
}

.lightbox-nav svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    position: relative;
}

.lightbox-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.lightbox-image.loaded {
    opacity: 1;
}

.lightbox-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--olive-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.lightbox-caption {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--white);
}

.caption-counter {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--olive-green);
    margin-bottom: 0.5rem;
}

.caption-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Thumbnail Strip */
.lightbox-thumbnails {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 2rem;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--olive-green) transparent;
}

.lightbox-thumbnails::-webkit-scrollbar {
    height: 6px;
}

.lightbox-thumbnails::-webkit-scrollbar-track {
    background: transparent;
}

.lightbox-thumbnails::-webkit-scrollbar-thumb {
    background: var(--olive-green);
    border-radius: 3px;
}

.thumbnail-item {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumbnail-item:hover {
    opacity: 0.8;
}

.thumbnail-item.active {
    opacity: 1;
    border-color: var(--olive-green);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================================
   Floating Action Buttons
   ======================================== */
.floating-actions {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 100;
}

.floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
    text-decoration: none;
}

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

.home-btn {
    background: var(--navy-blue);
    color: var(--white);
}

.home-btn:hover {
    background: var(--olive-green);
    transform: translateY(-3px);
}

.top-btn {
    background: var(--olive-green);
    color: var(--white);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all 0.3s ease;
}

.top-btn.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.top-btn:hover {
    background: var(--navy-blue);
    transform: translateY(-3px);
}

/* ========================================
   Footer
   ======================================== */
.recap-footer {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.recap-footer .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.footer-brand p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--olive-green);
}

.recap-footer .footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.recap-footer .footer-bottom a {
    color: var(--olive-green);
    text-decoration: none;
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .masonry-gallery {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .lightbox-nav {
        width: 45px;
        height: 45px;
    }

    .lightbox-prev {
        left: 1rem;
    }

    .lightbox-next {
        right: 1rem;
    }
}

@media (max-width: 768px) {
    .video-hero {
        min-height: 60vh;
    }

    .masonry-gallery {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }

    .gallery-stats {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-divider {
        height: 30px;
    }

    .description-card {
        flex-direction: column;
        text-align: center;
    }

    .lightbox-thumbnails {
        height: 80px;
        padding: 0 1rem;
    }

    .thumbnail-item {
        width: 55px;
        height: 55px;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
    }

    .lightbox-nav svg {
        width: 20px;
        height: 20px;
    }

    .floating-actions {
        bottom: 1rem;
        right: 1rem;
    }

    .floating-btn {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .video-hero {
        min-height: 50vh;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }

    .masonry-gallery {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .gallery-item img {
        min-height: 200px;
        max-height: 300px;
    }

    .lightbox-content {
        padding: 0 0.5rem;
    }

    .lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }

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

/* Navigation fixes for recap page */
.recap-nav .logo-text {
    text-decoration: none;
    color: inherit;
}

.recap-nav .nav-menu {
    gap: 1.5rem;
}
