/* ===== CSS VARIABLES ===== */
:root {
    --primary-black: #1A1A1A;
    --vibrant-yellow: #FFCC00;
    --hover-yellow: #FFEB3B;
    --secondary-yellow: #FFC107;
    --white: #FFFFFF;
    --light-grey: #F5F5F5;
    --bronze: #CD7F32;
    --silver: #C0C0C0;
    --gold: #FFD700;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--primary-black);
    background-color: var(--white);
}

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

section {
    padding: 5rem 0;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

p {
    margin-bottom: 1rem;
}

/* ===== ACCESSIBILITY ===== */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--vibrant-yellow);
    color: var(--primary-black);
    padding: 8px;
    z-index: 1001;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
}

.skip-link:focus {
    top: 6px;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-black);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    margin-right: 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-item {
    margin-left: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--vibrant-yellow);
    outline: none;
}

.nav-link:focus {
    outline: 2px solid var(--vibrant-yellow);
    outline-offset: 4px;
}

.hamburger {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0.5rem;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--white);
    transition: all 0.3s ease;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background-color: var(--vibrant-yellow);
    color: var(--primary-black);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    min-height: 44px;
    text-align: center;
}

.btn:hover,
.btn:focus {
    background-color: var(--hover-yellow);
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    outline: none;
}

.btn:focus {
    outline: 2px solid var(--primary-black);
    outline-offset: 2px;
}

.btn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--vibrant-yellow);
    color: var(--primary-black);
}

.btn-outline:hover,
.btn-outline:focus {
    background: var(--vibrant-yellow);
}

.btn-primary {
    background: var(--vibrant-yellow);
    color: var(--primary-black);
    font-weight: 600;
    padding: 1rem 2rem;
    position: relative;
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(26, 26, 26, 0.7), rgba(26, 26, 26, 0.7)), 
                url('https://images.unsplash.com/photo-1546519638-68e109498ffc?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1790&q=80') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* ===== WEEKEND PLANNING SECTION ===== */
.weekend-planning {
    background-color: var(--primary-black);
    padding: 3rem 0;
    color: var(--white);
}

.weekend-planning h2 {
    color: var(--vibrant-yellow);
    margin-bottom: 2rem;
    text-align: center;
}

.planning-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.planning-note {
    color: #aaa;
    font-size: 0.9rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.planning-note i {
    color: var(--vibrant-yellow);
}

/* Responsive adjustments for planning */
@media screen and (max-width: 768px) {
    .weekend-planning {
        padding: 2rem 0;
    }
    
    .weekend-planning .container {
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
    }
}

/* ===== ABOUT SECTION ===== */
.about {
    background-color: var(--white);
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    margin-bottom: 3rem;
}

/* ===== TEAMS SECTION ===== */
.teams {
    background-color: var(--light-grey);
}

.team-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.team-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.team-info {
    padding: 1.5rem;
}

.team-info h3 {
    margin-bottom: 0.5rem;
}

.team-info p {
    margin-bottom: 1rem;
}

.team-schedule {
    background-color: var(--light-grey);
    padding: 0.8rem;
    border-radius: 4px;
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* ===== SCHEDULE SECTION ===== */
.schedule {
    background-color: var(--white);
}

.schedule-image-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

.schedule-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.schedule-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.schedule-image:active {
    transform: scale(0.98);
}

.image-zoom-hint {
    display: none;
    margin-top: 1rem;
    padding: 0.8rem;
    background-color: var(--light-grey);
    border-radius: 6px;
    font-size: 0.9rem;
    color: #666;
}

.image-zoom-hint i {
    margin-right: 0.5rem;
    color: var(--vibrant-yellow);
}

/* Mobile-specific styles for full-width image */
@media screen and (max-width: 768px) {
    .schedule {
        padding-left: 0;
        padding-right: 0;
    }
    
    .schedule .container {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    
    .schedule-image-container {
        margin: 0;
        max-width: 100%;
        width: 100%;
    }
    
    .schedule-image {
        width: 100%;
        border-radius: 0;
        box-shadow: none;
    }
    
    .image-zoom-hint {
        display: block;
        margin: 1rem 15px 0;
    }
    
    h2 {
        padding: 0 15px;
    }
}

/* For very small screens, ensure maximum readability */
@media screen and (max-width: 480px) {
    .schedule-image-container {
        margin: 0 -10px;
    }
    
    .image-zoom-hint {
        font-size: 0.8rem;
        padding: 0.6rem;
    }
}

/* ===== FACEBOOK SECTION ===== */
.facebook {
    background-color: var(--light-grey);
}

.facebook-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.facebook-icon {
    font-size: 3rem;
    color: #1877F2;
    margin-bottom: 1.5rem;
}

/* ===== CONTACT SECTION ===== */
.contact {
    background-color: var(--white);
}

.contact-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

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

.contact-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.contact-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 1.5rem 0;
}

.contact-card-header .contact-icon {
    color: var(--vibrant-yellow);
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 204, 0, 0.1);
    border-radius: 50%;
}

.contact-card-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.contact-card-body {
    padding: 1rem 1.5rem 1.5rem;
}

.contact-card-body p {
    margin-bottom: 1rem;
}

.highlight-text {
    color: var(--vibrant-yellow);
    font-weight: 600;
    margin-top: 0.5rem;
}

.contact-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

.contact-form-container {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 2rem;
}

.form-header {
    margin-bottom: 2rem;
    text-align: center;
}

.form-header h3 {
    color: var(--primary-black);
    margin-bottom: 0.5rem;
}

.form-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 1rem;
}

.form-section h4 {
    color: var(--primary-black);
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.form-section h4:before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 18px;
    background: var(--vibrant-yellow);
    margin-right: 10px;
    border-radius: 2px;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-black);
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    min-height: 44px;
}

.form-control:focus {
    outline: none;
    border-color: var(--vibrant-yellow);
    box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.2);
}

.form-control.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row .form-group {
    flex: 1;
}

#contact-form-message {
    display: none;
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 4px;
    text-align: center;
    font-weight: 600;
}

#contact-form-message.success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

#contact-form-message.error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* ===== TABLEAU DE COMPARAISON SPONSORSHIP ===== */
.sponsorship-comparison {
    margin: 3rem 0;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 1.2rem 1rem;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.comparison-table thead th {
    background: var(--primary-black);
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1.5rem 1rem;
}

.comparison-table thead th:first-child {
    background: transparent;
    color: var(--primary-black);
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
}

.comparison-table .tier-header {
    padding: 0;
}

.tier-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.tier-price {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.9;
}

.tier-bronze .tier-name { color: var(--bronze); }
.tier-silver .tier-name { color: var(--silver); }
.tier-gold .tier-name { color: var(--gold); }

/* Checkmark styling */
.checkmark {
    color: #28a745;
    font-size: 1.2rem;
    font-weight: bold;
}

.checkmark::before {
    content: "✓";
}

.empty-cell {
    color: #ccc;
    font-size: 1.2rem;
}

.empty-cell::before {
    content: "—";
}

/* Feature rows styling */
.comparison-table tbody th {
    text-align: left;
    font-weight: 500;
    color: var(--primary-black);
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

/* Hover effects */
.comparison-table tbody tr:hover {
    background: rgba(255, 204, 0, 0.05);
}

/* Responsive design */
@media screen and (max-width: 768px) {
    .comparison-table {
        font-size: 0.9rem;
        min-width: 600px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 1rem 0.5rem;
    }
    
    .comparison-table tbody th {
        padding-left: 1rem;
        font-size: 0.85rem;
    }
    
    .tier-name {
        font-size: 1rem;
    }
    
    .tier-price {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 480px) {
    .sponsorship-comparison {
        margin-left: -15px;
        margin-right: -15px;
    }
}

/* ===== SPONSORS SECTION ===== */
.sponsors {
    background-color: var(--light-grey);
}

.sponsors-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.sponsor-text {
    margin-bottom: 2rem;
}

.sponsorship-intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.sponsor-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.sponsor-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    max-width: 300px;
}

.sponsor-card:hover {
    transform: translateY(-5px);
}

.sponsor-icon {
    font-size: 2.5rem;
    color: var(--vibrant-yellow);
    margin-bottom: 1rem;
}

.sponsor-card h3 {
    margin-bottom: 1rem;
}

/* ===== DONATION SECTION ===== */
.donation-section {
    background-color: var(--white);
    border-radius: 10px;
    padding: 3rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 3rem;
}

.donation-form {
    max-width: 600px;
    margin: 0 auto;
}

.tier-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tier-option {
    flex: 1;
    min-width: 120px;
}

.tier-option input[type="radio"] {
    display: none;
}

.tier-option label {
    display: block;
    padding: 0.8rem 1rem;
    background-color: var(--light-grey);
    border: 2px solid transparent;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tier-option input[type="radio"]:checked + label {
    background-color: var(--vibrant-yellow);
    border-color: var(--secondary-yellow);
    font-weight: bold;
}

.tier-option label:focus {
    outline: 2px solid var(--vibrant-yellow);
    outline-offset: 2px;
}

.custom-amount {
    display: flex;
    gap: 0.5rem;
}

.custom-amount .form-control {
    flex: 1;
}

.donation-summary {
    background-color: var(--light-grey);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.donation-summary h3 {
    margin-bottom: 1rem;
    color: var(--vibrant-yellow);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.total-amount {
    font-weight: bold;
    font-size: 1.2rem;
    border-top: 1px solid #ddd;
    padding-top: 0.5rem;
    margin-top: 0.5rem;
}

#form-message {
    display: none;
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 4px;
    text-align: center;
    font-weight: 600;
}

#form-message.success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

#form-message.error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* ===== PRICING SECTION ===== */
.pricing {
    background-color: var(--light-grey);
}

.pricing-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.pricing-table-container {
    margin: 2rem 0;
    overflow-x: auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
}

.pricing-table th {
    background-color: var(--vibrant-yellow);
    color: var(--primary-black);
    padding: 1.2rem 1rem;
    text-align: left;
    font-weight: 700;
    font-size: 1.1rem;
}

.pricing-table th:last-child {
    text-align: right;
}

.pricing-table td {
    padding: 1.2rem 1rem;
    border-bottom: 1px solid #eee;
}

.pricing-table tbody tr {
    transition: background-color 0.3s ease;
}

.pricing-table tbody tr:hover {
    background-color: rgba(255, 204, 0, 0.05);
}

.pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.pricing-table td:first-child {
    font-weight: 600;
    color: var(--primary-black);
}

.pricing-table td:last-child {
    font-weight: 700;
    color: var(--primary-black);
    font-size: 1.2rem;
    text-align: right;
}

.pricing-notes {
    background: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

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

.notes-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: flex-start;
}

.notes-list i {
    margin-right: 10px;
    color: var(--vibrant-yellow);
    margin-top: 0.3rem;
}

.payment-options {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

/* ===== TAX BENEFIT SECTION ===== */
.tax-benefit-box {
    background: linear-gradient(135deg, #fff9e6 0%, #fffbef 100%);
    border-left: 4px solid var(--vibrant-yellow);
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
    margin: 2rem 0;
}

.tax-benefit-box h4 {
    color: var(--primary-black);
    margin-bottom: 0.75rem;
}

.tax-example {
    background-color: rgba(255, 204, 0, 0.1);
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1rem;
    text-align: center;
}

/* ===== HIGHLIGHTS SECTION ===== */
.highlights-section {
    background-color: var(--white);
    padding: 4rem 0;
}

.highlights-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.highlight-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
}

.highlight-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.highlight-content {
    padding: 1.5rem;
}

.highlight-content h3 {
    color: var(--vibrant-yellow);
    margin-bottom: 0.5rem;
}

/* ===== IMPACT STATEMENT ===== */
.impact-statement {
    background: var(--white);
    border-radius: 15px;
    padding: 3rem;
    margin: 3rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--vibrant-yellow);
}

.impact-statement h3 {
    text-align: center;
    color: var(--primary-black);
    margin-bottom: 2.5rem;
    font-size: 2rem;
}

/* ===== IMPACT CONDENSÉ POUR SUBVENTIONS ===== */
.impact-condensed {
    background: linear-gradient(135deg, #fff9e6 0%, #fffbef 100%);
    border: 2px solid var(--vibrant-yellow);
    border-radius: 15px;
    padding: 2.5rem;
    margin: 2rem 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.impact-condensed h3 {
    color: var(--primary-black);
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.impact-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.impact-highlight {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.8rem;
}

.impact-highlight i {
    color: var(--vibrant-yellow);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.impact-highlight strong {
    color: var(--primary-black);
    display: block;
    margin-bottom: 0.3rem;
}

.impact-highlight span {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

.impact-stats-condensed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    border: 1px solid rgba(255, 204, 0, 0.3);
}

.impact-stat {
    text-align: center;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--vibrant-yellow);
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-black);
    text-transform: uppercase;
}

.impact-cta-condensed {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 204, 0, 0.3);
}

.impact-cta-condensed p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--primary-black);
}

@media screen and (max-width: 768px) {
    .impact-condensed {
        padding: 2rem 1.5rem;
    }
    
    .impact-highlights {
        grid-template-columns: 1fr;
    }
    
    .impact-stats-condensed {
        grid-template-columns: repeat(2, 1fr);
    }
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, var(--vibrant-yellow) 0%, var(--secondary-yellow) 100%);
    border-radius: 10px;
    text-align: center;
}

.stat-item {
    color: var(--primary-black);
    min-width: 0; /* This prevents text overflow */
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    word-break: keep-all;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    word-wrap: break-word; 
    hyphens: auto; 
}

.impact-cta {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid var(--light-grey);
}

.impact-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== HALLOWEEN SECTION ===== */
.halloween {
    background: linear-gradient(135deg, #1A1A1A 0%, #2D1B00 100%);
    color: var(--white);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.halloween:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 204, 0, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 80% 70%, rgba(255, 204, 0, 0.1) 0%, transparent 20%);
    pointer-events: none;
}

.halloween-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--vibrant-yellow);
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.halloween-title:after {
    content: "";
    display: block;
    width: 100px;
    height: 3px;
    background: var(--vibrant-yellow);
    margin: 1rem auto;
}

.halloween-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ddd;
}

.halloween-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.halloween-image {
    text-align: center;
}

.halloween-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.halloween-image img:hover {
    transform: translateY(-5px);
}

.halloween-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.halloween-date {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 204, 0, 0.1);
    border-radius: 10px;
    border-left: 4px solid var(--vibrant-yellow);
}

.date-icon {
    font-size: 2rem;
    color: var(--vibrant-yellow);
}

.date-info h3 {
    margin-bottom: 0.5rem;
    color: var(--vibrant-yellow);
}

.date-info p {
    margin: 0;
    color: #ddd;
}

.halloween-activities h3 {
    color: var(--vibrant-yellow);
    margin-bottom: 1rem;
}

.halloween-activities ul {
    list-style: none;
    padding: 0;
}

.halloween-activities li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.halloween-activities li:last-child {
    border-bottom: none;
}

.halloween-activities i {
    color: var(--vibrant-yellow);
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.halloween-cta {
    text-align: center;
    padding-top: 1rem;
}

.halloween-btn {
    background-color: var(--vibrant-yellow);
    color: var(--primary-black);
    font-weight: bold;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.3);
}

.halloween-btn:hover {
    background-color: var(--hover-yellow);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 204, 0, 0.4);
}

.halloween-note {
    font-size: 0.9rem;
    color: #aaa;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.halloween-rsvp-note {
    font-size: 0.9rem;
    color: #ddd;
}

/* ===== HALLOWEEN COUNTER ===== */
.halloween-counter-simplified {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.15) 0%, rgba(255, 204, 0, 0.05) 100%);
    border-radius: 20px;
    border: 2px solid var(--vibrant-yellow);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    backdrop-filter: blur(10px);
}

.counter-main {
    margin-bottom: 2rem;
}

.counter-total {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--vibrant-yellow);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.3);
}

.counter-label {
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 500;
}

.counter-breakdown-simple {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
}

.breakdown-simple-item {
    text-align: center;
    flex: 0 0 auto;
}

.breakdown-simple-number {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--vibrant-yellow);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 8px rgba(255, 204, 0, 0.2);
}

.breakdown-simple-label {
    font-size: 1rem;
    color: var(--white);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.counter-cta {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 204, 0, 0.3);
}

.counter-cta p {
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

/* ===== CURRENT SPONSORS SHOWCASE ===== */
.current-sponsors-showcase {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem 2rem;
    border-radius: 15px;
    margin: 3rem 0;
    text-align: center;
}

.current-sponsors-showcase h3 {
    color: var(--primary-black);
    margin-bottom: 1rem;
}

.current-sponsors-showcase > p {
    color: #666;
    margin-bottom: 2rem;
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    justify-items: center;
    align-items: start;
}

.sponsor-logo {
    text-align: center;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.sponsor-logo:hover {
    transform: translateY(-5px);
}

.logo-container {
    background: var(--white);
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 200px; /* Increased height for larger logos */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.available-spot {
    border: 2px dashed var(--vibrant-yellow) !important;
    background: rgba(255, 204, 0, 0.05);
}

.logo-container i {
    font-size: 3rem;
    color: var(--vibrant-yellow);
    margin-bottom: 0.5rem;
    display: block;
}

.logo-container span {
    font-weight: 600;
    color: var(--primary-black);
    font-size: 1.1rem;
}

.sponsor-name {
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 0.5rem !important;
    font-size: 1.1rem;
}

.sponsor-logo p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

.available p {
    color: var(--vibrant-yellow);
    font-weight: 600;
}

/* LARGER LOGO SIZES */
.sponsor-logo-img {
    max-width: 280px;  /* Increased from 200px */
    max-height: 160px; /* Increased from 120px */
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease;
    object-fit: contain; /* Ensures entire logo is visible */
}

.sponsor-logo:hover .sponsor-logo-img {
    transform: scale(1.08);
}

/* Remove tier-specific color coding */
.sponsor-logo[data-category] .sponsor-name,
.sponsor-logo[data-category] p {
    color: var(--primary-black) !important;
    font-weight: 600;
}

/* Remove tier section styles */
.sponsor-tier-section,
.tier-title {
    display: none;
}

@media screen and (max-width: 768px) {
    .sponsors-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
    }
    
    .logo-container {
        height: 180px; /* Slightly smaller on mobile but still good */
        padding: 2rem 1rem;
    }
    
    .sponsor-logo-img {
        max-width: 220px;
        max-height: 130px;
    }
    
    .sponsor-logo {
        padding: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .sponsors-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 1.5rem;
    }
    
    .logo-container {
        height: 160px;
        padding: 1.5rem 1rem;
    }
    
    .sponsor-logo-img {
        max-width: 180px;
        max-height: 110px;
    }
    
    .current-sponsors-showcase {
        padding: 2rem 1rem;
    }
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--primary-black);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    margin-right: 10px;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
}

.social-icon {
    color: var(--white);
    font-size: 1.5rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    text-decoration: none;
}

.social-icon:hover,
.social-icon:focus {
    color: var(--vibrant-yellow);
    outline: none;
    text-decoration: none;
}

.social-icon:focus {
    outline: 2px solid var(--vibrant-yellow);
    outline-offset: 2px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-attribution {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.85rem;
    color: #aaa;
}

.footer-attribution a {
    color: var(--vibrant-yellow);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-attribution a:hover {
    color: var(--hover-yellow);
    text-decoration: underline;
}

.copyright {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #aaa;
}

/* ===== FOOTER SPONSORS ===== */
.footer-sponsors {
    margin-bottom: 2rem;
    text-align: center;
}

.footer-sponsors h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-sponsor-logos {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-sponsor-placeholder {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    min-width: 120px;
    transition: all 0.3s ease;
}

.footer-sponsor-placeholder:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer-sponsor-placeholder.available {
    border: 2px dashed var(--vibrant-yellow);
    background: rgba(255, 204, 0, 0.1);
}

.footer-sponsor-placeholder i {
    font-size: 1.5rem;
    color: var(--vibrant-yellow);
    margin-bottom: 0.5rem;
    display: block;
}

.footer-sponsor-placeholder span {
    font-size: 0.8rem;
    color: var(--white);
}

/* Footer Tool Sponsors */
.footer-tool-sponsors {
    margin: 2rem 0;
    text-align: center;
}

.footer-tool-sponsors h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-tool-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center;
}

.footer-tool-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    padding: 0.8rem; /* Increased padding for better spacing */
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    /* REMOVED fixed height constraint */
    min-height: 60px; /* Changed to min-height */
}

.footer-tool-logo:hover {
    transform: translateY(-3px);
    background: var(--white);
    box-shadow: 0 4px 12px rgba(255, 204, 0, 0.3);
}

.footer-tool-logo img {
    height: 40px; /* Fixed height */
    width: auto; /* Automatic width to preserve aspect ratio */
    object-fit: contain; /* Ensures entire image is visible */
    opacity: 1;
    transition: all 0.3s ease;
}

.footer-tool-logo:hover img {
    opacity: 1;
    filter: brightness(1.1);
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .footer-tool-logos {
        gap: 1rem;
    }
    
    .footer-tool-logo {
        min-height: 50px;
        padding: 0.6rem;
    }
    
    .footer-tool-logo img {
        height: 35px;
    }
}

@media screen and (max-width: 480px) {
    .footer-tool-logos {
        gap: 0.8rem;
    }
    
    .footer-tool-logo {
        min-height: 45px;
        padding: 0.4rem;
    }
    
    .footer-tool-logo img {
        height: 30px;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media screen and (max-width: 968px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .halloween-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .halloween-image {
        order: 2;
    }
    
    .halloween-details {
        order: 1;
    }
}

@media screen and (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--primary-black);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 1.5rem 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .btn-group {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 250px;
        font-size: 1.1rem;
        padding: 1rem 1.5rem;
    }
    
    .team-cards {
        grid-template-columns: 1fr;
    }

    .sponsorship-tiers {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
    }

    .tier-options {
        flex-direction: column;
    }

    .donation-section {
        padding: 2rem 1rem;
    }

    .contact-form-container {
        padding: 1.5rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 0.8rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .pricing-table td:last-child {
        font-size: 1.1rem;
    }
    
    .impact-statement {
        padding: 2rem 1rem;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 1.5rem;
        justify-items: center;
        text-align: center;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
        line-height: 1.2;
    }
    
    .halloween-title {
        font-size: 2.5rem;
    }
    
    .halloween-date {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .date-icon {
        font-size: 1.8rem;
    }
    
    .counter-total {
        font-size: 3rem;
    }
    
    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .countdown-timer {
        gap: 0.5rem;
    }
    
    .time-unit {
        min-width: 60px;
        padding: 0.4rem;
    }
    
    .time-unit span {
        font-size: 1.5rem;
    }
    
    .banner-text h2 {
        font-size: 1.3rem;
    }
    
    .banner-text p {
        font-size: 0.9rem;
    }
    
    .sponsor-btn {
        width: 100%;
        max-width: 280px;
        font-size: 0.95rem;
        padding: 0.8rem 0.5rem;
    }
    
    .sponsors-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }
    
    .footer-sponsor-logos {
        gap: 1rem;
    }
    
    .highlights-gallery {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .highlight-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        max-width: 400px;
    }
    
    .highlight-img {
        object-fit: contain;
        width: auto;
        max-height: 200px;
    }
}

@media screen and (max-width: 480px) {
    .impact-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 0.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .pricing-table {
        font-size: 0.85rem;
    }
    
    .pricing-table th {
        padding: 0.7rem 0.4rem;
    }
    
    .pricing-table td {
        padding: 0.7rem 0.4rem;
    }
}

    /* Enhanced HelloAsso Styles with Maximum Height Support */
    .helloasso-container-optimized {
        background: var(--white);
        border-radius: 16px;
        padding: 2.5rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        margin: 2rem auto;
        max-width: 100%;
        width: 100%;
        border: 1px solid #f0f0f0;
    }
    
    .donation-header {
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .donation-header h2 {
        color: var(--primary-black);
        margin-bottom: 1rem;
        font-size: 2.2rem;
    }
    
    /* Trust Section */
    .trust-section {
        margin-bottom: 1.5rem;
    }
    
    .trust-badges {
        display: flex;
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
    }
    
    .trust-badge {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.8rem 1.2rem;
        background: #f8f9fa;
        border-radius: 25px;
        font-weight: 600;
        color: var(--primary-black);
    }
    
    .trust-badge i {
        color: var(--vibrant-yellow);
    }
    
    /* Form Wrapper */
    .donation-form-wrapper {
        margin: 1.5rem 0;
    }
    
    .form-notice {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 1rem;
        background: #fff3cd;
        border: 1px solid #ffeaa7;
        border-radius: 8px;
        margin-bottom: 1.5rem;
        color: #856404;
        font-weight: 500;
    }
    
    .form-notice i {
        color: #f39c12;
    }
    
    /* Iframe Container */
    .helloasso-iframe-container {
        background: var(--white);
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        border: 1px solid #e9ecef;
        margin-bottom: 1.5rem;
    }
    
    .helloasso-iframe {
        width: 100% !important;
        border: none !important;
        background: transparent !important;
        min-height: 1100px !important;
        height: 1100px !important;
        display: block !important;
    }
    
    /* Your Preferred Payment Security Notice */
    .payment-security-notice {
        text-align: center;
        padding: 1.5rem;
        background: #f8f9fa;
        border-radius: 12px;
        border-left: 4px solid var(--vibrant-yellow);
    }
    
    .payment-security-notice p {
        margin-bottom: 1rem;
    }
    
    .payment-security-notice p:first-child {
        font-size: 1.1rem;
        color: var(--primary-black);
        font-weight: 600;
    }
    
    .payment-security-notice p:last-child {
        margin-bottom: 0;
        color: #666;
        line-height: 1.5;
    }
    
    /* Mobile Optimization */
    @media screen and (max-width: 768px) {
        .helloasso-container-optimized {
            padding: 1.5rem 1rem;
            margin: 1rem auto;
            border-radius: 12px;
        }
    
        .donation-header h2 {
            font-size: 1.8rem;
        }
    
        .trust-badges {
            gap: 1rem;
        }
    
        .trust-badge {
            padding: 0.6rem 1rem;
            font-size: 0.9rem;
        }
    
        .helloasso-iframe {
            height: 1200px !important;
            min-height: 1200px !important;
        }
    
        .payment-security-notice {
            padding: 1.2rem;
            text-align: left;
        }
    }
    
    @media screen and (max-width: 480px) {
        .helloasso-container-optimized {
            padding: 1rem 0.5rem;
        }
    
        .helloasso-iframe {
            height: 1300px !important;
            min-height: 1300px !important;
        }
    
        .trust-badges {
            flex-direction: column;
            align-items: center;
        }
    }
