/* ===================================
   POW WOW BATTLE - STYLES
   =================================== */

/* ===== VARIABLES ===== */
:root {
    --teal-dark: #0a2a2a;
    --teal-primary: #1a5c5c;
    --teal-accent: #2dd4bf;
    --teal-bright: #5eead4;
    --orange-primary: #d97706;
    --orange-bright: #f59e0b;
    --gold: #c9a227;
    --brown: #8b5a2b;
    --bg-dark: #0a1214;
    --bg-section: #0d1a1c;
    --text-light: #e2e8f0;
    --text-muted: #94a3b8;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== BACKGROUND PATTERN ===== */
.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.03;
    background-image: 
        repeating-linear-gradient(45deg, var(--teal-accent) 0, var(--teal-accent) 1px, transparent 0, transparent 50%),
        repeating-linear-gradient(-45deg, var(--orange-primary) 0, var(--orange-primary) 1px, transparent 0, transparent 50%);
    background-size: 60px 60px;
}

/* ===== NAVIGATION ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(10, 18, 20, 0.98) 0%, rgba(10, 18, 20, 0.9) 100%);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(45, 212, 191, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 3px;
    background: linear-gradient(135deg, var(--teal-bright), var(--orange-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 0.25rem;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--teal-accent), var(--orange-bright));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

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

/* ===== CTA BUTTON ===== */
.cta-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-decoration: none;
    color: var(--bg-dark);
    background: linear-gradient(135deg, var(--orange-bright), var(--gold));
    border: none;
    border-radius: 0;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
}

.cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.5), 0 0 60px rgba(245, 158, 11, 0.3);
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.cta-btn:hover svg {
    transform: translateX(4px);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(45, 212, 191, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(217, 119, 6, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(10, 18, 20, 0.9) 0%, var(--bg-dark) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}


.hero-logo {
    width: 440px;
    height: auto;
    margin-bottom: 2rem;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 0 40px rgba(45, 212, 191, 0.3));
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 10vw, 7rem);
    letter-spacing: 8px;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-light) 0%, var(--teal-bright) 50%, var(--orange-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleReveal 1s ease-out;
}

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

.form-status {
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    display: none;
    text-align: center;
    font-weight: 600;
}

.form-status.success {
    display: block;
    background: rgba(45, 212, 191, 0.15);
    border: 1px solid var(--teal-accent);
    color: var(--teal-bright);
}

.form-status.error {
    display: block;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid #ef4444;
    color: #f87171;
}

.submit-btn.loading {
    opacity: 0.7;
    pointer-events: none;
}

.submit-btn.loading .icon-send {
    display: none;
}

.submit-btn.loading .icon-loading {
    display: block !important;
    animation: spin 1s linear infinite;
}

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

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--teal-accent);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.hero-date {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--orange-bright);
    letter-spacing: 3px;
    margin-bottom: 2.5rem;
}

.hero-cta {
    font-size: 1.3rem;
    padding: 1.25rem 3rem;
}

/* ===== DECORATIVE ELEMENTS ===== */
.tribal-line {
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--teal-accent), var(--orange-bright), transparent);
    margin: 2rem auto;
}

/* ===== SECTION STYLING ===== */
section {
    position: relative;
    z-index: 1;
    padding: 6rem 2rem;
}

section:nth-child(even) {
    background: var(--bg-section);
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 4px;
    position: relative;
    display: inline-block;
    color: var(--text-light);
}

.section-header h2::before,
.section-header h2::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--teal-accent), var(--orange-bright));
}

.section-header h2::before {
    right: calc(100% + 20px);
}

.section-header h2::after {
    left: calc(100% + 20px);
}

/* ===== ABOUT SECTION ===== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.about-text p:first-of-type::first-letter {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    float: left;
    line-height: 1;
    margin-right: 0.5rem;
    color: var(--teal-accent);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-card {
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.1), rgba(217, 119, 6, 0.05));
    border: 1px solid rgba(45, 212, 191, 0.2);
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--teal-accent), var(--orange-bright));
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--teal-bright), var(--orange-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

/* ===== LOCATION SECTION ===== */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.location-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-card {
    background: linear-gradient(135deg, var(--teal-dark), rgba(13, 26, 28, 0.8));
    border: 1px solid rgba(45, 212, 191, 0.2);
    padding: 2.5rem;
    margin-bottom: 1.5rem;
}

.location-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: var(--teal-accent);
    margin-bottom: 1rem;
}

.location-card p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.location-card .address {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 1rem;
}

.location-card svg {
    color: var(--orange-bright);
    flex-shrink: 0;
    margin-top: 4px;
}

.map-container {
    background: var(--teal-dark);
    border: 1px solid rgba(45, 212, 191, 0.2);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(80%) contrast(1.2);
}

.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--text-muted);
}

.map-placeholder svg {
    margin-bottom: 1rem;
    color: var(--teal-accent);
}

/* ===== FORMAT SECTION ===== */
.format-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.format-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--teal-accent), var(--orange-bright));
    transform: translateX(-50%);
}

.format-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
}

.format-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.format-content {
    width: calc(50% - 40px);
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.08), rgba(217, 119, 6, 0.05));
    border: 1px solid rgba(45, 212, 191, 0.15);
    padding: 2rem;
    position: relative;
}

.format-item:nth-child(odd) .format-content {
    margin-right: auto;
    text-align: right;
}

.format-item:nth-child(even) .format-content {
    margin-left: auto;
}

.format-number {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--teal-primary), var(--teal-dark));
    border: 2px solid var(--teal-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--teal-bright);
}

.format-item:nth-child(odd) .format-number {
    left: calc(100% + 10px);
}

.format-item:nth-child(even) .format-number {
    right: calc(100% + 10px);
}

.format-content h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--orange-bright);
    margin-bottom: 0.5rem;
}

.format-content p {
    color: var(--text-muted);
}

/* ===== CATEGORIES SECTION ===== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.category-card {
    background: linear-gradient(180deg, rgba(45, 212, 191, 0.08) 0%, rgba(10, 18, 20, 0.9) 100%);
    border: 1px solid rgba(45, 212, 191, 0.2);
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal-accent), var(--orange-bright));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.category-card:hover {
    transform: translateY(-10px);
    border-color: var(--teal-accent);
    box-shadow: 0 20px 40px rgba(45, 212, 191, 0.15);
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--teal-primary), var(--teal-dark));
    border: 2px solid var(--teal-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon svg {
    width: 36px;
    height: 36px;
    color: var(--teal-bright);
}

.category-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.category-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.category-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--orange-primary), var(--gold));
    color: var(--bg-dark);
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1rem;
}

/* ===== VOLUNTEERS SECTION ===== */
.volunteers-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.volunteers-text h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 2px;
    color: var(--teal-accent);
    margin-bottom: 1.5rem;
}

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

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(45, 212, 191, 0.1);
    color: var(--text-light);
}

.benefits-list li svg {
    color: var(--orange-bright);
    flex-shrink: 0;
}

.volunteer-cta {
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.1), rgba(217, 119, 6, 0.08));
    border: 2px solid var(--teal-accent);
    padding: 3rem;
    text-align: center;
}

.volunteer-cta h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

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

/* ===== SOCIAL SECTION ===== */
.social-intro {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

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

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2.5rem 3rem;
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.08), transparent);
    border: 1px solid rgba(45, 212, 191, 0.15);
    text-decoration: none;
    transition: all 0.4s ease;
}

.social-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--teal-accent);
    box-shadow: 0 15px 40px rgba(45, 212, 191, 0.2);
}

.social-card svg {
    width: 48px;
    height: 48px;
    color: var(--teal-accent);
    transition: color 0.3s ease;
}

.social-card:hover svg {
    color: var(--orange-bright);
}

.social-card span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: var(--text-light);
}

/* ===== FAQ SECTION ===== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid rgba(45, 212, 191, 0.15);
    margin-bottom: 1rem;
    background: rgba(10, 42, 42, 0.3);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(45, 212, 191, 0.05);
}

.faq-question svg {
    color: var(--teal-accent);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--text-muted);
}

/* ===== SPONSORS SECTION ===== */
.sponsors-tiers {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.sponsor-tier {
    text-align: center;
}

.sponsor-tier h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    color: var(--gold);
}

.sponsor-tier.silver h3 {
    color: #9ca3af;
}

.sponsor-tier.bronze h3 {
    color: #cd7f32;
}

.sponsors-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.sponsor-logo {
    width: 180px;
    height: 100px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(45, 212, 191, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.sponsor-logo:hover {
    border-color: var(--teal-accent);
    background: rgba(45, 212, 191, 0.05);
}

.sponsor-tier.gold .sponsor-logo {
    width: 220px;
    height: 120px;
}

.become-sponsor {
    margin-top: 4rem;
    text-align: center;
}

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

/* ===== CONTACT SECTION ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 2px;
    color: var(--teal-accent);
    margin-bottom: 1.5rem;
}

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

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item svg {
    color: var(--orange-bright);
}

.contact-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--teal-accent);
}

.contact-form {
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.08), rgba(217, 119, 6, 0.03));
    border: 1px solid rgba(45, 212, 191, 0.2);
    padding: 3rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    background: rgba(10, 18, 20, 0.8);
    border: 1px solid rgba(45, 212, 191, 0.2);
    color: var(--text-light);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--teal-accent);
    box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.1);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.submit-btn {
    width: 100%;
    padding: 1.25rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

/* ===== FOOTER ===== */
footer {
    background: var(--bg-section);
    border-top: 1px solid rgba(45, 212, 191, 0.1);
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    height: 160px;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-credits {
    margin-top: 0.5rem;
}

footer a {
    color: var(--teal-accent);
    text-decoration: none;
}

/* ===== MOBILE MENU ===== */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn svg {
    width: 28px;
    height: 28px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-dark);
        flex-direction: column;
        padding: 1rem;
        border-bottom: 1px solid rgba(45, 212, 191, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

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

    .nav-cta {
        display: none;
    }

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

    .format-timeline::before {
        left: 30px;
    }

    .format-item,
    .format-item:nth-child(odd) {
        flex-direction: column;
    }

    .format-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
        text-align: left !important;
    }

    .format-number {
        left: 0 !important;
        right: auto !important;
    }
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: clamp(2.5rem, 12vw, 4rem);
        letter-spacing: 4px;
        line-height: 1.2;
        word-wrap: break-word;
        hyphens: none;
    }

    .hero-logo {
        width: 280px;
        max-width: 90%;
    }

    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
        line-height: 1.4;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-date {
        font-size: 1.4rem;
        letter-spacing: 2px;
        text-align: center;
        line-height: 1.6;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    .section-header {
    text-align: center;
    margin-bottom: 1rem;
}
    .section-header h2::before,
    .section-header h2::after {
        display: none;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .format-number {
    display: none;
}
}
