:root {
    --primary-red: #d62828;
    --primary-red-hover: #b31e1e;
    --shield-blue: #00a2e8;
    --shield-blue-glow: rgba(0, 162, 232, 0.4);
    --navy-blue: #0b132b;
    --navy-blue-light: #1c2541;
    --accent-gold: #f59e0b;
    --accent-gold-hover: #d97706;
    --text-white: #ffffff;
    --text-muted: #abb2bf;
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.08);
    --card-gradient: linear-gradient(135deg, rgba(28, 37, 65, 0.85) 0%, rgba(11, 19, 43, 0.85) 100%);
    --gold-gradient: linear-gradient(135deg, #fef08a 0%, #f59e0b 50%, #b45309 100%);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-white);
    background-color: var(--navy-blue);
    line-height: 1.6;
    overflow-x: hidden;
}

#confetti-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography & Headers */
h1, h2, h3, h4 {
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

/* Buttons */
.btn-primary, .btn-outline, .btn-gold {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-red);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(214, 40, 40, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-red-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(214, 40, 40, 0.6);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

.btn-outline:hover {
    background-color: var(--text-white);
    color: var(--navy-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.btn-gold {
    background: var(--gold-gradient);
    color: var(--navy-blue);
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.6);
}

.w-full {
    width: 100%;
}

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

/* Glassmorphism Panel */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(11, 19, 43, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-white);
}

.logo-img {
    height: 45px;
    width: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-gold);
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    background: linear-gradient(to right, #ffffff, var(--shield-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2rem;
}

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

.nav-links a:hover:not(.btn-primary) {
    color: var(--shield-blue);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-white);
    margin: 4px 0;
    transition: 0.4s;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url('assets/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 0 1rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(11, 19, 43, 0.6) 0%, rgba(11, 19, 43, 0.92) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-logo {
    width: 150px;
    height: 150px;
    max-width: 150px;
    max-height: 150px;
    object-fit: contain;
    border-radius: 50%;
    margin-bottom: 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 162, 232, 0.4);
    border: 3px solid var(--shield-blue);
    animation: floatLogo 6s ease-in-out infinite;
}

@keyframes floatLogo {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.hero-content h1 {
    font-size: 3.8rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 15px rgba(0,0,0,0.8);
    background: linear-gradient(135deg, #ffffff 30%, var(--shield-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: #e2e8f0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* Section Common Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header p {
    color: var(--text-muted);
}

.divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-red), var(--shield-blue));
    margin: 1.5rem auto 0;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 162, 232, 0.5);
}

/* Countdown Section */
.countdown-section {
    background-color: var(--navy-blue-light);
    padding: 3.5rem 0;
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
}

.countdown-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
    text-shadow: 0 0 8px rgba(245, 158, 11, 0.3);
}

.countdown-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 110px;
    background: rgba(11, 19, 43, 0.6);
    padding: 1.2rem;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.countdown-item span {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-white);
    background: linear-gradient(135deg, #ffffff, var(--shield-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.countdown-item label {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* About Section */
.about-section {
    padding: 8rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 1.8rem;
    margin: 1.5rem 0 1rem;
    color: var(--shield-blue);
}

.about-text p {
    margin-bottom: 1.2rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.about-card {
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid rgba(0, 162, 232, 0.25);
    background: linear-gradient(135deg, rgba(11, 19, 43, 0.8) 0%, rgba(28, 37, 65, 0.8) 100%);
    box-shadow: 0 15px 40px rgba(0, 162, 232, 0.05);
}

.card-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(245, 158, 11, 0.3));
}

.about-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.about-card blockquote {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.song-melody {
    font-size: 0.95rem;
    color: var(--accent-gold);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.song-lyrics {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    max-height: 250px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

/* Custom scrollbar for song lyrics */
.song-lyrics::-webkit-scrollbar {
    width: 6px;
}
.song-lyrics::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}
.song-lyrics::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 4px;
}

.song-verse {
    margin-bottom: 1.5rem;
}

.song-chorus {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    background: rgba(0, 162, 232, 0.05);
    padding: 0.75rem;
    border-radius: 8px;
    border-left: 3px solid var(--accent-gold);
    display: inline-block;
    max-width: 100%;
}

.features-list {
    list-style: none;
    text-align: left;
    display: inline-block;
}

.features-list li {
    margin: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Garde Section */
.garde-section {
    padding: 8rem 0;
    background-color: var(--navy-blue-light);
}

.garde-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.garde-card {
    padding: 3.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 162, 232, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(0,162,232,0.03) 100%);
}

/* Shimmer sweep on hover */
.garde-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -75%;
    width: 50%;
    height: 200%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.07), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
    pointer-events: none;
}

.garde-card:hover::before {
    left: 130%;
}

/* Bottom glow line */
.garde-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--shield-blue), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.garde-card:hover {
    transform: translateY(-12px);
    border-color: rgba(0, 162, 232, 0.5);
    box-shadow:
        0 20px 50px rgba(0, 162, 232, 0.18),
        0 0 30px rgba(0, 162, 232, 0.08),
        inset 0 1px 0 rgba(255,255,255,0.08);
}

.garde-card:hover::after {
    opacity: 1;
}

.garde-card.featured {
    border: 1px solid rgba(214, 40, 40, 0.4);
    background: linear-gradient(135deg, rgba(214,40,40,0.06) 0%, rgba(255,255,255,0.03) 100%);
    box-shadow:
        0 10px 30px rgba(214, 40, 40, 0.12),
        inset 0 1px 0 rgba(255,255,255,0.06);
}

.garde-card.featured::after {
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
}

.garde-card.featured:hover {
    border-color: rgba(214, 40, 40, 0.8);
    box-shadow:
        0 20px 55px rgba(214, 40, 40, 0.28),
        0 0 40px rgba(214, 40, 40, 0.12),
        inset 0 1px 0 rgba(255,255,255,0.08);
    transform: translateY(-12px);
}

.card-icon-container {
    width: 80px;
    height: 80px;
    background: rgba(0, 162, 232, 0.08);
    border: 1px solid rgba(0, 162, 232, 0.25);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: var(--shield-blue);
    box-shadow:
        0 0 18px rgba(0, 162, 232, 0.2),
        inset 0 1px 0 rgba(255,255,255,0.1);
    transition: all 0.4s ease;
    position: relative;
}

/* Pulse ring on icon */
.card-icon-container::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px solid rgba(0, 162, 232, 0.2);
    animation: iconRingPulse 3s ease-in-out infinite;
}

@keyframes iconRingPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.08); }
}

.garde-card:hover .card-icon-container {
    background: rgba(0, 162, 232, 0.18);
    box-shadow:
        0 0 35px rgba(0, 162, 232, 0.45),
        inset 0 1px 0 rgba(255,255,255,0.15);
    transform: scale(1.1) rotate(5deg);
}

.garde-card.featured .card-icon-container {
    background: rgba(214, 40, 40, 0.15);
    border-color: rgba(214, 40, 40, 0.5);
    color: #ff6b6b;
    box-shadow:
        0 0 22px rgba(214, 40, 40, 0.3),
        inset 0 1px 0 rgba(255,255,255,0.1);
}

.garde-card.featured .card-icon-container::before {
    border-color: rgba(214, 40, 40, 0.3);
}

.garde-card.featured:hover .card-icon-container {
    background: rgba(214, 40, 40, 0.28);
    box-shadow:
        0 0 40px rgba(214, 40, 40, 0.55),
        inset 0 1px 0 rgba(255,255,255,0.15);
}

.garde-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.garde-card:hover h3 {
    color: #7dd3fc;
}

.garde-card.featured:hover h3 {
    color: #fca5a5;
}

.garde-card p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.age-info {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.4rem 1.2rem;
    background: rgba(0, 162, 232, 0.1);
    border: 1px solid rgba(0, 162, 232, 0.25);
    border-radius: 50px;
    color: var(--text-white);
    transition: all 0.3s ease;
    display: inline-block;
}

.garde-card:hover .age-info {
    background: rgba(0, 162, 232, 0.2);
    border-color: rgba(0, 162, 232, 0.5);
    box-shadow: 0 0 12px rgba(0, 162, 232, 0.25);
}

.garde-card.featured .age-info {
    background: rgba(214, 40, 40, 0.1);
    border-color: rgba(214, 40, 40, 0.25);
}

.garde-card.featured:hover .age-info {
    background: rgba(214, 40, 40, 0.2);
    border-color: rgba(214, 40, 40, 0.5);
    box-shadow: 0 0 12px rgba(214, 40, 40, 0.3);
}

/* Events Section */
.events-section {
    padding: 8rem 0;
}

.events-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.events-timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-red), var(--shield-blue));
    top: 0;
    bottom: 0;
    left: 120px;
    box-shadow: 0 0 5px rgba(0,162,232,0.3);
}

.timeline-item {
    display: flex;
    margin-bottom: 3.5rem;
    position: relative;
}

.timeline-date {
    width: 120px;
    flex-shrink: 0;
    padding-right: 2rem;
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.timeline-date .day {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--shield-blue);
    text-shadow: 0 0 10px var(--shield-blue-glow);
}

.timeline-date .year {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.timeline-content {
    flex-grow: 1;
    padding: 2rem;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--accent-gold);
    left: -48px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    box-shadow: 0 0 10px var(--accent-gold);
}

.timeline-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.timeline-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.location {
    font-size: 0.9rem;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Join Section */
.join-section {
    padding: 4rem 0;
    text-align: center;
}

.join-box {
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid rgba(0, 162, 232, 0.2);
    background: linear-gradient(135deg, rgba(11,19,43,0.9), rgba(28,37,65,0.9));
    box-shadow: 0 20px 50px rgba(0, 162, 232, 0.08);
}

.join-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.join-box p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Section */
.contact-section {
    padding: 8rem 0;
    background-color: var(--navy-blue-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    justify-content: center;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.info-item i {
    font-size: 1.8rem;
    color: var(--shield-blue);
    margin-top: 0.25rem;
    filter: drop-shadow(0 0 5px var(--shield-blue-glow));
}

.info-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.info-item p {
    color: var(--text-muted);
}

.contact-form {
    padding: 3.5rem;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(11, 19, 43, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text-white);
    font-family: inherit;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--shield-blue);
    box-shadow: 0 0 10px rgba(0, 162, 232, 0.3);
}

.form-feedback {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
}

.form-feedback.success {
    background-color: rgba(46, 204, 113, 0.2);
    border: 1px solid #2ecc71;
    color: #2ecc71;
}

.form-feedback.hidden {
    display: none;
}

/* Mascot (Gardist) */
.mascot-container {
    position: fixed;
    bottom: -15px;
    right: 25px;
    z-index: 1000;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: mascotFloat 4s ease-in-out infinite;
}

@keyframes mascotFloat {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

.mascot-img {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.6));
    transition: transform 0.2s ease;
}

.mascot-container:hover {
    /* Combine hover float with original animation */
    animation-play-state: paused;
    transform: translateY(-20px) scale(1.08);
}

.mascot-container:active .mascot-img {
    transform: scale(0.92);
}

.mascot-bubble {
    position: absolute;
    top: -55px;
    background: var(--gold-gradient);
    color: var(--navy-blue);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.5);
    opacity: 0;
    transform: scale(0.8) translateY(10px);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    white-space: nowrap;
    border: 1px solid rgba(255,255,255,0.2);
}

.mascot-bubble::after {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px 8px 0;
    border-style: solid;
    border-color: #f59e0b transparent;
    display: block;
    width: 0;
}

.mascot-bubble.show {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* Footer */
.footer {
    background-color: var(--navy-blue);
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    height: 70px;
    width: 70px;
    border-radius: 50%;
    border: 2px solid var(--shield-blue);
    box-shadow: 0 0 10px var(--shield-blue-glow);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--navy-blue-light);
    color: var(--text-white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gold-gradient);
    color: var(--navy-blue);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-legal h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--shield-blue);
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a,
.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bank h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--shield-blue);
}

.footer-bank p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.footer-bank p strong {
    color: var(--text-white);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

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

.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
}

.animate-slide-up {
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-slide-up-delay {
    opacity: 0;
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.animate-slide-up-delay-2 {
    opacity: 0;
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

/* Responsive CSS */
@media (max-width: 992px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: 3.5rem 0 !important;
    }

    .section-header {
        margin-bottom: 2rem !important;
    }

    .section-header h2 {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
        letter-spacing: 0.5px !important;
        padding: 0 1rem !important;
    }

    .about-text h3 {
        font-size: 1.3rem !important;
        margin: 1.5rem 0 0.5rem !important;
    }

    .nav-container {
        padding: 0.75rem 1rem !important;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 66px;
        left: 0;
        background-color: var(--navy-blue);
        padding: 1.5rem;
        border-bottom: 1px solid var(--glass-border);
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        z-index: 1100;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        margin: 0;
        width: 100%;
        text-align: center;
    }
    
    .nav-links li a {
        display: block;
        padding: 0.85rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    
    .nav-links li:last-child a {
        border-bottom: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-section {
        height: auto !important;
        min-height: 100vh !important;
        padding: 7.5rem 1rem 4rem !important;
    }

    .hero-logo {
        width: 120px !important;
        height: 120px !important;
        max-width: 120px !important;
        max-height: 120px !important;
        margin-bottom: 1.5rem !important;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .countdown-grid {
        gap: 0.35rem;
        flex-wrap: nowrap; /* Keep all 4 items on the same row for cohesive countdown design */
        justify-content: center;
    }
    
    .countdown-item {
        min-width: 55px;
        max-width: 75px;
        flex: 1;
        padding: 0.4rem 0.15rem;
        border-radius: 10px;
    }
    
    .countdown-item span {
        font-size: 1.35rem;
    }

    .countdown-item label {
        font-size: 0.55rem;
        letter-spacing: 0.02em;
    }
    
    .events-timeline::after {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: column;
    }
    
    .timeline-date {
        width: 100%;
        text-align: left;
        padding-left: 55px;
        margin-bottom: 0.5rem;
    }
    
    .timeline-content {
        margin-left: 55px;
        padding: 1.5rem;
    }
    
    .timeline-content::before {
        left: -34px;
        top: 2.2rem;
        transform: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .mascot-container {
        right: 15px;
        bottom: -10px;
    }
    
    .mascot-img {
        width: 90px;
    }
    
    .about-card {
        padding: 2rem 1.25rem;
    }

    .kgc-chat-panel {
        bottom: 85px;
        right: 12px;
        left: 12px;
        width: auto;
        max-width: none;
        height: 70vh;
        max-height: 500px;
        border-radius: 16px;
    }

    /* Stacking board/Vorstand rows cleanly */
    .vs-row {
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.75rem !important;
    }
    .vs-row .vorstand-item {
        flex: 1 1 100% !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }
    .vs-president {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }
    .vorstand-content {
        padding: 2.5rem 1rem !important;
    }
}

/* ── Flyer Thumbnail with Hover Zoom ─────────────────────── */
.event-flyer-thumb {
    position: relative;
    display: inline-block;
    margin-top: 1rem;
    cursor: zoom-in;
}

.flyer-thumb-img {
    width: 80px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.5);
    transition: opacity 0.3s ease;
    display: block;
}

.flyer-zoom-overlay {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) scale(0.85);
    transform-origin: bottom center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 100;
    filter: drop-shadow(0 12px 40px rgba(0,0,0,0.8));
}

.flyer-zoom-img {
    width: 320px;
    max-width: 90vw;
    border-radius: 14px;
    display: block;
}

.event-flyer-thumb:hover .flyer-zoom-overlay {
    opacity: 1;
    transform: translateX(-50%) scale(1);
    pointer-events: auto;
}

/* ── Centered 2-column garde grid (Schautanz) ─────────────── */
.garde-grid-centered {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 360px));
    gap: 2rem;
    justify-content: center;
    margin-top: 1.5rem;
}

@media (max-width: 600px) {
    .garde-grid-centered {
        grid-template-columns: 1fr;
    }
}

.vorstand-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

@media (min-width: 768px) {
    .vorstand-hero {
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 767px) {
    .vorstand-hero {
        min-height: 780px;
    }
}

.vorstand-full {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.vorstand-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 36%;
    background-repeat: no-repeat;
    filter: brightness(0.42);
}

.vorstand-hero:hover .vorstand-bg {
    filter: brightness(0.48);
    transition: filter 0.6s ease;
}

.vorstand-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(5,5,25,0.55) 0%,
        rgba(10,10,40,0.45) 50%,
        rgba(5,5,25,0.65) 100%
    );
}

.vorstand-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1100px;
    padding: 3.5rem 2rem;
    margin: 0 auto;
}

/* Top row – Präsidentin centered */
.vs-top {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.vs-president {
    min-width: 260px;
    text-align: center;
    border-color: rgba(245,158,11,0.7) !important;
    box-shadow: 0 0 35px rgba(245,158,11,0.25) !important;
}

.vs-president .vorstand-name {
    font-size: 1.3rem !important;
}

/* Generic row */
.vs-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.vs-row-2 .vorstand-item  { flex: 0 1 300px; }
.vs-row-3 .vorstand-item  { flex: 0 1 260px; }
.vs-row-4 .vorstand-item  { flex: 0 1 210px; }
.vs-row-1 .vorstand-item  { flex: 0 1 480px; text-align: center; }

/* Divider between Hauptvorstand and erweiterter Vorstand */
.vs-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem auto 1rem;
    max-width: 600px;
    color: rgba(245,158,11,0.7);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.vs-divider::before,
.vs-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245,158,11,0.4), transparent);
}

/* Extended board items – slightly smaller */
.vs-extended {
    opacity: 0.9;
}
.vs-extended .vorstand-name {
    font-size: 0.92rem !important;
}

.vorstand-item {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.13);
    border-radius: 12px;
    padding: 0.85rem 1.2rem;
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    transition: all 0.3s ease;
}

.vorstand-item:hover {
    background: rgba(245,158,11,0.12);
    border-color: rgba(245,158,11,0.4);
    box-shadow: 0 0 18px rgba(245,158,11,0.15);
    transform: translateY(-3px);
}

.vorstand-item.featured-item {
    background: rgba(245,158,11,0.12);
    border-color: rgba(245,158,11,0.55);
    box-shadow: 0 0 28px rgba(245,158,11,0.22);
}

.vorstand-role {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--accent-gold);
    opacity: 0.85;
}

.vorstand-name {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.vorstand-item.featured-item .vorstand-name {
    color: #fde68a;
}

@media (max-width: 700px) {
    .vs-row-3 .vorstand-item,
    .vs-row-4 .vorstand-item { flex: 0 1 45%; }
    .vs-row-2 .vorstand-item { flex: 0 1 100%; }
}

@media (max-width: 480px) {
    .vs-row .vorstand-item { flex: 0 1 100% !important; }
}

/* ── Form + Training Schedule side by side ───────────────── */
.form-and-schedule {
    display: grid;
    grid-template-columns: 1fr 310px;
    gap: 2.5rem;
    align-items: start;
}

.training-flyer-thumb {
    position: relative;
    display: inline-block;
    cursor: zoom-in;
    align-self: start;
    margin-left: auto;
}

.training-thumb-img {
    width: 310px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
}

.training-flyer-thumb:hover .training-thumb-img {
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(0,0,0,0.6);
}

.training-zoom-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.85);
    transform-origin: center center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 100;
    filter: drop-shadow(0 20px 60px rgba(0,0,0,0.9));
}

.training-zoom-img {
    width: 500px;
    max-width: 90vw;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.15);
    display: block;
}

.training-flyer-thumb:hover .training-zoom-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
}

@media (max-width: 900px) {
    .form-and-schedule {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 1.5rem;
    }
    .training-flyer-thumb {
        margin-top: 1rem;
        margin-left: 0;
    }
    .training-thumb-img {
        width: 100%;
        max-width: 100%;
    }
    .training-zoom-overlay {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.85);
        transform-origin: center center;
    }
    .training-flyer-thumb:hover .training-zoom-overlay {
        transform: translate(-50%, -50%) scale(1);
    }
}

/* ══════════════════════════════════════════
   KGC CHATBOT
══════════════════════════════════════════ */

/* Mascot hint badge */
.mascot-chat-hint {
    position: absolute;
    bottom: 115%;
    right: 0;
    background: var(--accent-gold);
    color: #111;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(245,158,11,0.4);
    animation: hintBounce 3s ease-in-out infinite;
    pointer-events: none;
}
@keyframes hintBounce {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}

/* Backdrop */
.chat-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(3px);
    z-index: 999;
}
.chat-backdrop.active { display: block; }

/* Chat Panel */
.kgc-chat-panel {
    position: fixed;
    bottom: 140px;
    right: 24px;
    width: 380px;
    max-width: calc(100vw - 32px);
    height: 560px;
    max-height: calc(100vh - 160px);
    background: linear-gradient(160deg, rgba(10,10,30,0.97) 0%, rgba(15,15,45,0.98) 100%);
    border: 1px solid rgba(245,158,11,0.3);
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 1000;
    transform: translateY(30px) scale(0.95);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.175,0.885,0.32,1.275),
                opacity 0.3s ease;
}
.kgc-chat-panel.open {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: all;
}

/* Header */
.chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.2rem;
    background: linear-gradient(90deg, rgba(214,40,40,0.25), rgba(245,158,11,0.15));
    border-bottom: 1px solid rgba(255,255,255,0.07);
    flex-shrink: 0;
}
.chat-header-left { display: flex; align-items: center; gap: 0.8rem; }
.chat-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(245,158,11,0.5);
    background: rgba(255,255,255,0.05);
}
.chat-title { font-weight: 700; font-size: 1rem; color: #fff; }
.chat-status { font-size: 0.75rem; color: #aaa; display: flex; align-items: center; gap: 0.4rem; }
.status-dot {
    width: 8px; height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 6px #22c55e;
    animation: statusPulse 2s infinite;
}
@keyframes statusPulse {
    0%,100% { box-shadow: 0 0 6px #22c55e; }
    50%      { box-shadow: 0 0 12px #22c55e; }
}
.chat-close-btn {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    width: 32px; height: 32px;
    color: #aaa;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
}
.chat-close-btn:hover { background: rgba(214,40,40,0.3); color: #fff; border-color: rgba(214,40,40,0.4); }

/* Messages */
.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(245,158,11,0.2) transparent;
}
.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-thumb { background: rgba(245,158,11,0.25); border-radius: 4px; }

/* Message bubbles */
.chat-msg {
    display: flex;
    gap: 0.6rem;
    align-items: flex-end;
    animation: msgSlideIn 0.3s ease;
}
@keyframes msgSlideIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}
.chat-msg.user { flex-direction: row-reverse; }

.msg-avatar {
    width: 30px; height: 30px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(245,158,11,0.3);
    flex-shrink: 0;
}
.msg-bubble {
    max-width: 78%;
    padding: 0.65rem 1rem;
    border-radius: 16px;
    font-size: 0.9rem;
    line-height: 1.5;
}
.chat-msg.bot .msg-bubble {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-bottom-left-radius: 4px;
    color: #e5e7eb;
}
.chat-msg.user .msg-bubble {
    background: linear-gradient(135deg, rgba(214,40,40,0.6), rgba(180,20,20,0.5));
    border: 1px solid rgba(214,40,40,0.4);
    border-bottom-right-radius: 4px;
    color: #fff;
}

/* Typing indicator */
.typing-indicator {
    display: flex; gap: 4px; align-items: center; padding: 0.4rem 0;
}
.typing-indicator span {
    width: 7px; height: 7px;
    background: rgba(245,158,11,0.7);
    border-radius: 50%;
    animation: typingDot 1.2s infinite;
}
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot {
    0%,80%,100% { transform: scale(0.8); opacity: 0.4; }
    40%          { transform: scale(1.2); opacity: 1; }
}

/* Suggestions */
.chat-suggestions {
    padding: 0 0.8rem 0.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    flex-shrink: 0;
}
.chat-suggestion-btn {
    background: rgba(245,158,11,0.1);
    border: 1px solid rgba(245,158,11,0.25);
    border-radius: 20px;
    padding: 0.3rem 0.85rem;
    color: #fde68a;
    font-size: 0.78rem;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}
.chat-suggestion-btn:hover {
    background: rgba(245,158,11,0.22);
    border-color: rgba(245,158,11,0.5);
}

/* Input */
.chat-input-area {
    display: flex;
    gap: 0.5rem;
    padding: 0.8rem 1rem;
    border-top: 1px solid rgba(255,255,255,0.07);
    flex-shrink: 0;
}
#chat-input {
    flex: 1;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 25px;
    padding: 0.6rem 1rem;
    color: #fff;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
}
#chat-input:focus { border-color: rgba(245,158,11,0.5); }
#chat-input::placeholder { color: rgba(255,255,255,0.3); }

#chat-send-btn {
    background: linear-gradient(135deg, var(--primary-red), #b91c1c);
    border: none;
    border-radius: 50%;
    width: 42px; height: 42px;
    color: #fff;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(214,40,40,0.3);
}
#chat-send-btn:hover { transform: scale(1.08); box-shadow: 0 6px 18px rgba(214,40,40,0.5); }
