/* --- Global Reset & Variables --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #fb5a00; /* Distinct orange accent */
    --dark-bg: #111111;
    --light-bg: #ffffff;
    --text-color: #333333;
    --text-light: #ffffff;
    --gray-muted: #666666;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-color);
    background-color: var(--light-bg);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* --- Header --- */
.main-header {
    background-color: rgba(0, 0, 0, 0.85);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 95%;
    margin: 0 auto;
}

.menu-toggle {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}

.logo img {
    height: 50px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.main-nav a {
    color: var(--text-light);
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.main-nav a:hover {
    color: var(--primary-color);
}

.btn-donate {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
    padding: 8px 20px;
    font-weight: bold;
    border-radius: 4px;
}

.btn-donate:hover {
    background-color: var(--text-light);
    color: #000;
}

/* --- Hero Section --- */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('hero-bg.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--text-light);
    padding-top: 80px;
}

.hero-content h1 {
    font-size: 2.5rem;
    max-width: 800px;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.btn-watch {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 12px 35px;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.slider-controls {
    margin-top: 40px;
    display: flex;
    gap: 10px;
}

.slider-controls .dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
}

.slider-controls .dot.active {
    background-color: var(--text-light);
}

/* --- Mission Section --- */
.mission-section {
    text-align: center;
    padding: 60px 0;
}

.mission-section h2, .news-section h2, .sponsors-section h2 {
    font-size: 2rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.mission-section p {
    font-size: 1.2rem;
    color: var(--gray-muted);
    margin-bottom: 25px;
}

.btn-link {
    color: var(--primary-color);
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.section-divider {
    border: 0;
    height: 1px;
    background: #e0e0e0;
    width: 90%;
    margin: 0 auto;
}

/* --- News Section --- */
.news-section {
    background-color: #fafafa;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.news-item {
    background: var(--text-light);
    padding: 25px;
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-item p {
    font-weight: 500;
    margin-bottom: 20px;
}

/* --- Sponsors Section --- */
.sponsors-section {
    text-align: center;
}

.sponsors-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    font-weight: bold;
    color: var(--gray-muted);
    font-size: 1.1rem;
}

/* --- Call To Action --- */
.cta-section {
    background-color: var(--primary-color);
    color: var(--text-light);
    text-align: center;
    padding: 50px 0;
}

.cta-section h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 25px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-secondary {
    border: 2px solid var(--text-light);
    padding: 10px 25px;
    font-weight: bold;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--primary-color);
}

/* --- Footer --- */
.main-footer {
    background-color: var(--dark-bg);
    color: var(--text-light);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    border-bottom: 1px solid #222;
    padding-bottom: 40px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
}

.footer-nav {
    display: flex;
    gap: 15px;
    list-style: none;
}

.footer-nav a {
    font-size: 0.85rem;
    color: #aaa;
}

.footer-nav a:hover {
    color: var(--text-light);
}

.footer-newsletter p {
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    background-color: #222;
    color: var(--text-light);
}

.newsletter-form button {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
    padding: 0 20px;
    font-weight: bold;
    cursor: pointer;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 20px;
    font-size: 0.8rem;
    color: #777;
}

.social-links {
    display: flex;
    gap: 15px;
    font-size: 1.2rem;
}

.footer-meta {
    display: flex;
    gap: 20px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .main-nav {
        display: none; /* Can be handled by adding a JS drawer class */
    }
    .hero-content h1 {
        font-size: 1.8rem;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* --- Core Resets & Brand Variables --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --brand-orange: #fb5a00;
    --dark-matte: #0b0b0b;
    --light-grey-bg: #fafafa;
    --white: #ffffff;
    --text-dark: #222222;
    --border-grey: #cccccc;
    --error-red: #cc0000;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    padding-top: 80px;
}

/* --- Navigation Header --- */
.main-header {
    background-color: rgba(0, 0, 0, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    height: 45px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.main-nav a {
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    letter-spacing: 1px;
}

.main-nav a:hover {
    color: var(--brand-orange);
}

.btn-donate-nav {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 6px 16px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
}

/* --- Hero Banner --- */
.hero-donate-banner {
    background-color: #222; /* Fallback color */
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('hero-kids.jpg');
    background-position: center;
    background-size: cover;
    height: 40vh;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-content h1 {
    color: var(--white);
    font-size: 3rem;
    letter-spacing: 2px;
}

/* --- Layout Containers --- */
.form-container {
    width: 90%;
    max-width: 700px;
    margin: 0 auto;
}

.info-section {
    padding: 40px 0 10px;
    text-align: center;
}

.info-section p {
    margin-bottom: 15px;
    color: #555;
}

/* --- Form Fields UI --- */
.donation-form-section {
    padding: 20px 0 60px;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.required-star {
    color: var(--brand-orange);
}

input[type="text"],
input[type="email"],
input[type="number"],
textarea {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    border: 1px solid var(--border-grey);
    border-radius: 4px;
    background-color: var(--light-grey-bg);
    outline: none;
}

input:focus, textarea:focus {
    border-color: var(--brand-orange);
    background-color: var(--white);
}

.split-row {
    display: flex;
    gap: 15px;
}

.split-row .form-group {
    flex: 1;
}

.mobile-only-label { display: none; }

.character-counter {
    text-align: right;
    font-size: 0.8rem;
    color: #888;
    margin-top: 4px;
}

/* --- Segmented Radio Controls --- */
.radio-toggle-group {
    display: flex;
    border: 1px solid var(--border-grey);
    border-radius: 4px;
    overflow: hidden;
}

.radio-tile {
    flex: 1;
    text-align: center;
    background-color: var(--light-grey-bg);
    padding: 12px;
    cursor: pointer;
    font-weight: 700;
    border-right: 1px solid var(--border-grey);
}

.radio-tile:last-child { border-right: none; }
.radio-tile input { display: none; }

.radio-tile.active {
    background-color: var(--brand-orange);
    color: var(--white);
}

/* --- Currency Box Layout --- */
.currency-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.currency-symbol {
    position: absolute;
    left: 12px;
    font-weight: 700;
}

.currency-input-wrapper input {
    padding-left: 28px;
}

.field-instruction {
    font-size: 0.8rem;
    color: #666;
    margin-top: 4px;
}

/* --- Action Submit Button --- */
.btn-submit-donation {
    width: 100%;
    background-color: var(--brand-orange);
    color: var(--white);
    border: none;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.btn-submit-donation:hover {
    background-color: #d64d00;
}

.recaptcha-notice {
    font-size: 0.75rem;
    color: #777;
    text-align: center;
    margin-top: 15px;
}

/* --- Runtime Validation Helpers --- */
.input-error {
    border-color: var(--error-red) !important;
    background-color: #fff8f8 !important;
}

/* --- Footer --- */
.main-footer {
    background-color: var(--dark-matte);
    color: #888;
    padding: 30px 0;
    font-size: 0.8rem;
}

.footer-container-bottom {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    margin-left: 15px;
}

/* --- Mobile Breakpoints --- */
@media (max-width: 768px) {
    .main-nav { display: none; }
    .split-row { flex-direction: column; gap: 0; }
    .no-label-desktop label { display: block; margin-top: 10px; }
    .footer-container-bottom { flex-direction: column; text-align: center; gap: 10px; }
}
/* --- Contact Page Layout Styles --- */
.contact-section {
    padding: 60px 0;
    background-color: var(--light-grey-bg, #fafafa);
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
}

.contact-container {
    width: 90%;
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.contact-container h2 {
    font-size: 2rem;
    color: var(--brand-orange, #fb5a00);
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.contact-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

/* --- Channel Grid Layout Cards --- */
.quick-connect-channels {
    margin-bottom: 25px;
}

.channel-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 6px;
    text-decoration: none;
    transition: transform 0.2s;
}

.channel-card:hover {
    transform: translateY(-2px);
}

.telegram-card {
    background-color: #26a5e4;
    color: #ffffff;
}

.channel-card i {
    font-size: 2.2rem;
}

.channel-card h4 {
    font-size: 1.05rem;
    margin-bottom: 2px;
}

.channel-card span {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* --- Form Divider Decorator --- */
.separator {
    display: flex;
    align-items: center;
    text-align: center;
    color: #aaa;
    font-size: 0.8rem;
    font-weight: 700;
    margin: 25px 0;
    letter-spacing: 1px;
}

.separator::before, .separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e0e0e0;
}

.separator span {
    padding: 0 10px;
}

/* --- Submission Action Elements --- */
.btn-submit-contact {
    width: 100%;
    background-color: var(--brand-orange, #fb5a00);
    color: #ffffff;
    border: none;
    padding: 14px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    transition: background-color 0.2s;
}

.btn-submit-contact:hover {
    background-color: #d64d00;
}

@media (max-width: 480px) {
    .contact-container {
        padding: 20px;
    }
}

/* --- Hero Banner Background Element --- */
.hero-section {
    /* 4. LARGE HERO BACKGROUND IMAGE SET HERE */
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url('stadium-banner.jpg') no-repeat center center/cover;
    height: 85vh;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    padding-top: 80px;
}