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

:root {
    --bg-dark: #0a0a0f;
    --bg-darker: #05050a;
    --bg-card: #14141f;
    --text-primary: #fff;
    --text-secondary: #a0a0b0;
    --accent-primary: #ff3366;
    --accent-secondary: #6366f1;
    --gradient: linear-gradient(135deg, #ff3366 0%, #6366f1 100%);
    --gradient-hover: linear-gradient(135deg, #ff4477 0%, #7477ff 100%);
    --border-color: rgba(255, 255, 255, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

/* Logo Styles */
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-svg {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 10px rgba(255, 51, 102, 0.5));
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(255, 51, 102, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.8));
    }
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.logo-svg path[style*="fill:url"] {
    animation: gradientRotate 4s linear infinite;
}

.logo-text {
    font-size: 24px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    background: linear-gradient(270deg, #ff3366, #6366f1, #ff3366);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientAnimation 3s ease infinite;
}

.logo {
    font-size: 20px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

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

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    flex-direction: column;
    gap: 16px;
    border-bottom: 1px solid var(--border-color);
    z-index: 999;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s;
}

.mobile-menu a:hover {
    color: var(--text-primary);
    background: var(--bg-card);
}

/* Buttons */
.btn-primary {
    background: var(--gradient);
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--gradient-hover);
    transform: translateY(-2px);
}

.btn-large {
    background: var(--gradient);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-large:hover {
    background: var(--gradient-hover);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline:hover {
    border-color: var(--accent-primary);
    background: rgba(255, 51, 102, 0.1);
}

.btn-small {
    background: var(--bg-darker);
    color: var(--text-primary);
    padding: 8px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-block;
    border: 1px solid var(--border-color);
}

.btn-small:hover {
    background: var(--gradient);
    border-color: transparent;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 51, 102, 0.15), transparent 70%),
                radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.15), transparent 60%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 1;
}

.hero-title {
    font-size: clamp(48px, 10vw, 96px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
}

.title-line {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease forwards;
}

.title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.title-line:nth-child(2) {
    animation-delay: 0.4s;
}

.title-line:nth-child(3) {
    animation-delay: 0.6s;
}

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

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(18px, 3vw, 24px);
    color: var(--text-secondary);
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards 0.8s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards 1s;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--accent-primary));
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0%, 100% {
        opacity: 0.3;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(10px);
    }
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 16px;
}

/* Section Styles */
section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 51, 102, 0.1);
    color: var(--accent-primary);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 700;
    line-height: 1.2;
}

.gallery-description {
    color: var(--text-secondary);
    font-size: 18px;
    margin-top: 16px;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text p {
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 24px;
}

.feature-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.feature-item:hover {
    border-color: var(--accent-primary);
    transform: translateX(8px);
}

.feature-item svg {
    color: var(--accent-primary);
    flex-shrink: 0;
}

.about-image {
    position: relative;
    aspect-ratio: 1;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--bg-card);
    border-radius: 24px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 51, 102, 0.2), transparent 60%);
}

.image-placeholder svg {
    width: 100px;
    height: 100px;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

.about-image .image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Events Section */
.events {
    background: var(--bg-darker);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.event-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-primary);
    box-shadow: 0 20px 40px rgba(255, 51, 102, 0.2);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--gradient);
    width: 70px;
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.date-day {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.date-month {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-content {
    flex: 1;
}

.event-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.event-location {
    color: var(--accent-primary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.event-description {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
}

.event-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.tag {
    padding: 4px 12px;
    background: rgba(99, 102, 241, 0.2);
    color: var(--accent-secondary);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.event-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.event-price {
    font-size: 18px;
    font-weight: 700;
}

/* Gallery Section */
.gallery {
    background: var(--bg-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

/* Ensure 3 columns on larger screens */
@media (min-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-item {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--accent-primary);
    box-shadow: 0 20px 40px rgba(255, 51, 102, 0.3);
}

.gallery-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.gallery-image .image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-card) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s;
}

.gallery-image .image-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 51, 102, 0.15), transparent 70%);
    animation: pulseGallery 4s ease-in-out infinite;
}

@keyframes pulseGallery {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

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

.gallery-image .image-placeholder svg {
    width: 60px;
    height: 60px;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
    opacity: 0.5;
    transition: all 0.3s;
}

.gallery-item:hover .gallery-image .image-placeholder svg {
    opacity: 0.8;
    transform: scale(1.1);
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

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

.gallery-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s, opacity 0.3s;
    border-radius: 16px 16px 0 0;
}

.gallery-item:hover .gallery-image video {
    transform: scale(1.05);
}

/* Video preview controls */
#previewVideo {
    opacity: 0.9;
}

.video-trigger:hover #previewVideo {
    opacity: 1;
}

/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s;
}

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

.gallery-overlay svg {
    color: var(--text-primary);
    margin-bottom: 12px;
}

.gallery-overlay span {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 14px;
}

/* Video Overlay */
.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s;
}

.video-trigger:hover .video-overlay {
    opacity: 1;
}

.video-overlay svg {
    color: var(--text-primary);
    margin-bottom: 12px;
}

.video-overlay span {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 14px;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox.active {
    display: flex;
}

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

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s;
}

.lightbox-close:hover {
    color: var(--accent-primary);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 20px;
    z-index: 10;
}

.lightbox-prev,
.lightbox-next {
    background: rgba(255, 51, 102, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--text-primary);
    cursor: pointer;
    padding: 20px;
    border-radius: 50%;
    pointer-events: all;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 11;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
}

.lightbox-prev svg,
.lightbox-next svg {
    width: 24px;
    height: 24px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 51, 102, 1);
    transform: scale(1.15);
    box-shadow: 0 12px 40px rgba(255, 51, 102, 0.6);
}

/* Add pulse animation to arrows */
@keyframes arrowPulse {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    }
    50% {
        box-shadow: 0 8px 32px rgba(255, 51, 102, 0.8);
    }
}

.lightbox-prev,
.lightbox-next {
    animation: arrowPulse 2s ease-in-out infinite;
}

/* Add arrow hint text */
.lightbox-prev::after,
.lightbox-next::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: var(--text-secondary);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
}

.lightbox-prev::after {
    content: 'Forrige';
}

.lightbox-next::after {
    content: 'Neste';
}

.lightbox-prev:hover::after,
.lightbox-next:hover::after {
    opacity: 1;
}

.lightbox-image {
    position: relative;
    text-align: center;
}

.lightbox-image img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    margin-top: 20px;
    color: var(--text-primary);
}

.lightbox-caption h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.lightbox-caption p {
    color: var(--text-secondary);
    font-size: 16px;
}

.lightbox-counter {
    margin-top: 12px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: inline-block;
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* Video Modal */
.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.video-modal.active {
    display: flex;
}

.video-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.video-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s;
}

.video-close:hover {
    color: var(--accent-primary);
    transform: scale(1.1);
}

.video-content video {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.gallery-info {
    padding: 20px;
    background: var(--bg-card);
}

.gallery-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.gallery-info p {
    font-size: 14px;
    color: var(--accent-primary);
    font-weight: 600;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-description {
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 40px;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-decoration: none;
    transition: all 0.3s;
}

.contact-item:hover {
    border-color: var(--accent-primary);
    transform: translateX(8px);
}

.contact-item svg {
    color: var(--accent-primary);
    flex-shrink: 0;
}

.contact-item div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.contact-value {
    color: var(--text-primary);
    font-weight: 600;
}

.contact-form-wrapper {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 16px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: var(--bg-dark);
}

/* Footer */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.logo-svg-footer {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 0 8px rgba(255, 51, 102, 0.4));
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 16px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-section h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    font-weight: 600;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    margin-right: 16px;
}

.footer-section a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 968px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .about-content,
    .contact-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }

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

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    section {
        padding: 80px 0;
    }

    .stats-grid {
        gap: 32px;
    }

    .logo-text {
        font-size: 18px;
    }

    .logo-svg {
        width: 32px;
        height: 32px;
    }

    /* On mobile: keep footer links stacked under each heading */
    .footer-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-section a {
        margin-right: 0;
    }
}

/* On larger screens: show footer links in two-column pairs */
@media (min-width: 969px) {
    .footer-section {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
        row-gap: 8px;
        column-gap: 16px;
    }

    .footer-section h4 {
        flex-basis: 100%;
    }

    .footer-section a {
        flex-basis: calc(50% - 8px);
        margin-right: 0;
    }
}
