/* ================================
   ふわり - Minimal Monochrome + Red Accent
   with Animations  v2.0
   ================================ */

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

:root {
    --black: #111111;
    --dark: #222222;
    --gray: #666666;
    --light-gray: #E0E0E0;
    --off-white: #F7F7F7;
    --white: #FFFFFF;
    --accent: #E63946;
    --accent-dark: #C62828;
    --accent-light: #FFE5E7;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--white);
    color: var(--black);
    line-height: 1.7;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

/* ================================
   Header
   ================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 16px 0;
    border-bottom: 1px solid transparent;
    transition: var(--transition), transform 0.3s ease;
}

.header.scrolled {
    border-bottom-color: var(--light-gray);
    padding: 12px 0;
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
}

.header.hidden {
    transform: translateY(-100%);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ================================
   Logo with Red Circle (FV Style)
   ================================ */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    z-index: 10;
}

.logo-circle {
    display: block;
    width: 38px;
    height: 38px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 12px rgba(230, 57, 70, 0.3);
}

/* Pulse animation on the circle */
.logo-circle::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    opacity: 0;
    animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% { opacity: 0; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(1.15); }
}

/* Inner dot on circle */
.logo-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    letter-spacing: -0.02em;
    transition: var(--transition);
}

.logo:hover .logo-circle {
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(230, 57, 70, 0.4);
}

.logo:hover .logo-text {
    color: var(--accent);
}

/* ================================
   Desktop Navigation
   ================================ */
.nav {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--gray);
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--black);
}

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

.nav-link.active {
    color: var(--black);
    font-weight: 600;
}

/* CTA Button in Nav */
.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    background: var(--black);
    color: var(--white);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 6px;
    transition: var(--transition);
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent);
    transition: left 0.3s ease;
    z-index: 0;
}

.nav-cta:hover::before {
    left: 0;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(230, 57, 70, 0.3);
}

.nav-cta span,
.nav-cta svg {
    position: relative;
    z-index: 1;
}

.nav-cta--full {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 0.9rem;
    border-radius: 8px;
}

/* ================================
   Hamburger Button (Mobile)
   ================================ */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.is-open .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.is-open .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.is-open .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ================================
   Mobile Menu Overlay
   ================================ */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.is-open {
    display: block;
    opacity: 1;
}

/* ================================
   Mobile Menu
   ================================ */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--white);
    z-index: 999;
    padding: 88px 0 40px;
    overflow-y: auto;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
}

.mobile-menu.is-open {
    right: 0;
}

.mobile-nav {
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    color: var(--dark);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.mobile-nav-link svg {
    flex-shrink: 0;
    color: var(--gray);
    transition: color 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: var(--accent-light);
    color: var(--accent);
}

.mobile-nav-link:hover svg,
.mobile-nav-link.active svg {
    color: var(--accent);
}

.mobile-nav-link--sub {
    font-size: 0.85rem;
    color: var(--gray);
    padding: 10px 16px;
}

.mobile-nav-divider {
    height: 1px;
    background: var(--light-gray);
    margin: 8px 16px;
}

.mobile-nav-cta {
    margin-top: 16px;
    padding: 0 8px;
}

/* ================================
   Hero Section
   ================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Animated Background */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

/* Grid pattern */
.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

/* Gradient overlay */
.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(230, 57, 70, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(230, 57, 70, 0.05) 0%, transparent 40%),
        radial-gradient(ellipse at 60% 80%, rgba(0, 0, 0, 0.03) 0%, transparent 50%);
}

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

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

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -5%;
    background: linear-gradient(135deg, var(--accent-light) 0%, transparent 70%);
    animation: float1 15s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 5%;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.1) 0%, transparent 70%);
    animation: float2 12s ease-in-out infinite;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 20%;
    right: 20%;
    border: 2px solid rgba(230, 57, 70, 0.1);
    background: transparent;
    animation: float3 18s ease-in-out infinite;
}

.shape-4 {
    width: 80px;
    height: 80px;
    top: 70%;
    left: 15%;
    background: rgba(0, 0, 0, 0.02);
    animation: float4 10s ease-in-out infinite;
}

.shape-5 {
    width: 120px;
    height: 120px;
    top: 40%;
    left: 60%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: float5 20s ease-in-out infinite, morph 8s ease-in-out infinite;
}

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

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-40px, -20px) scale(1.1); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(20px, 30px) rotate(180deg); }
}

@keyframes float4 {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(20px, -20px); }
    50% { transform: translate(40px, 0); }
    75% { transform: translate(20px, 20px); }
}

@keyframes float5 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-30px, 40px) rotate(180deg); }
}

@keyframes morph {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
}

/* Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 4s ease-in-out infinite;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) scale(1);
    }
}

/* Hero content */
.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 80px;
}

.hero-content {
    animation: fadeInUp 0.8s ease forwards;
}

.hero-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
    animation: fadeIn 0.6s ease 0.2s forwards;
    opacity: 0;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: var(--black);
}

.hero-title .highlight {
    color: var(--accent);
    position: relative;
    display: inline-block;
    animation: fuwatto 3s ease-in-out infinite;
    text-shadow: 0 0 0 transparent;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--accent-light);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    animation: highlightIn 0.6s ease 0.8s forwards;
}

@keyframes fuwatto {
    0%, 100% {
        transform: translateY(0);
        text-shadow: 0 0 0 transparent;
    }
    25% {
        transform: translateY(-8px);
        text-shadow: 0 8px 20px rgba(230, 57, 70, 0.3);
    }
    50% {
        transform: translateY(-4px);
        text-shadow: 0 4px 15px rgba(230, 57, 70, 0.2);
    }
    75% {
        transform: translateY(-6px);
        text-shadow: 0 6px 18px rgba(230, 57, 70, 0.25);
    }
}

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

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

@keyframes highlightIn {
    to { transform: scaleX(1); }
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.9;
    animation: fadeIn 0.6s ease 0.4s forwards;
    opacity: 0;
}

.hero-btn {
    display: inline-block;
    padding: 16px 40px;
    background: var(--black);
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    animation: fadeIn 0.6s ease 0.6s forwards;
    opacity: 0;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent);
    transition: left 0.3s ease;
    z-index: 0;
}

.hero-btn:hover::before {
    left: 0;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.hero-btn span {
    position: relative;
    z-index: 1;
}

.hero-image {
    animation: slideInRight 0.8s ease 0.3s forwards;
    opacity: 0;
}

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

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.hero-image:hover img {
    transform: scale(1.02) translateY(-5px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--black), transparent);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: var(--accent);
    animation: scrollDown 1.5s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { transform: translateY(-20px); opacity: 0; }
    30% { opacity: 1; }
    100% { transform: translateY(60px); opacity: 0; }
}

/* ================================
   Categories
   ================================ */
.categories {
    padding: 60px 0;
    background: var(--off-white);
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
}

.category-list {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 10px 24px;
    background: var(--white);
    border: 1px solid var(--light-gray);
    color: var(--gray);
    font-size: 0.875rem;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.category-btn:hover {
    border-color: var(--black);
    color: var(--black);
    transform: translateY(-2px);
}

.category-btn.active {
    background: var(--black);
    border-color: var(--black);
    color: var(--white);
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ================================
   Events Section
   ================================ */
.events {
    padding: 80px 0;
    background: var(--white);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Event Card */
.event-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
    will-change: transform, opacity;
}

.event-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.event-card:hover {
    border-color: var(--black);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.event-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-gray);
    font-size: 0.75rem;
    overflow: hidden;
}

.event-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-card:hover .event-card-image img {
    transform: scale(1.05);
}

.event-card-content {
    padding: 24px;
}

.event-card-category {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.event-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
    line-height: 1.4;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.event-card:hover .event-card-title {
    color: var(--accent);
}

.event-card-meta {
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Progress */
.progress-section {
    padding: 16px;
    background: var(--off-white);
    margin-bottom: 16px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.progress-text {
    font-size: 0.75rem;
    color: var(--gray);
}

.progress-count {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--black);
}

.progress-bar {
    height: 4px;
    background: var(--light-gray);
    overflow: hidden;
    border-radius: 2px;
}

.progress-fill {
    height: 100%;
    background: var(--black);
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.progress-status {
    margin-top: 8px;
    font-size: 0.75rem;
    color: var(--gray);
    text-align: right;
}

.progress-status.ready {
    color: var(--accent);
    font-weight: 500;
}

/* Event Card Link */
.event-card-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--black);
    color: var(--black);
    text-align: center;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: var(--transition);
}

.event-card-link svg {
    transition: transform 0.3s ease;
}

.event-card-link:hover {
    background: var(--black);
    color: var(--white);
}

.event-card-link:hover svg {
    transform: translateX(4px);
}

/* Loading */
.loading {
    text-align: center;
    padding: 60px 0;
}

.loading-spinner {
    width: 32px;
    height: 32px;
    border: 2px solid var(--light-gray);
    border-top-color: var(--black);
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 0.8s linear infinite;
}

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

.no-events {
    text-align: center;
    padding: 80px 0;
    color: var(--gray);
}

/* ================================
   About Section
   ================================ */
.about {
    padding: 100px 0;
    background: var(--off-white);
    border-top: 1px solid var(--light-gray);
}

.section-title {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    text-align: center;
    margin-bottom: 60px;
    color: var(--gray);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.about-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.about-item:hover {
    transform: translateY(-8px);
}

.about-number {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.about-item h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
}

.about-item p {
    font-size: 0.875rem;
    color: var(--gray);
    line-height: 1.8;
}

/* Animate targets */
.animate-target {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-target.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.about-item:nth-child(1) { transition-delay: 0s; }
.about-item:nth-child(2) { transition-delay: 0.1s; }
.about-item:nth-child(3) { transition-delay: 0.2s; }

/* ================================
   Footer
   ================================ */
.footer {
    padding: 60px 0 40px;
    background: var(--black);
    color: var(--white);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: var(--transition);
}

.footer-logo .logo-circle-sm {
    display: block;
    width: 28px;
    height: 28px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 2px 8px rgba(230, 57, 70, 0.4);
}

.footer-logo .logo-circle-sm::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.footer-logo-text {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
    transition: color 0.3s ease;
}

.footer-logo:hover .footer-logo-text {
    color: var(--accent);
}

.footer-logo:hover .logo-circle-sm {
    transform: scale(1.15);
    transition: transform 0.3s ease;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.footer-links a {
    font-size: 0.8125rem;
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-copy {
    font-size: 0.75rem;
    color: var(--gray);
}

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

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .shape-1, .shape-2, .shape-3 {
        display: none;
    }
}

@media (max-width: 600px) {
    .header {
        position: fixed;
        padding: 12px 0;
    }

    .hero {
        padding-top: 60px;
    }

    .hero .container {
        padding-top: 40px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .category-list {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
    }

    .category-btn {
        flex-shrink: 0;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .scroll-indicator {
        display: none;
    }

    .mobile-menu {
        width: 100vw;
    }
}