/* ==========================================
   GLOBAL STYLES & RESET
   ========================================== */

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

:root {
    /* Primary Colors - FRC Themed */
    --primary-blue: #0066cc;
    --primary-red: #ed1c24;
    --dark-blue: #003d7a;
    --light-blue: #4a90e2;

    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #e9ecef;
    --medium-gray: #6c757d;
    --dark-gray: #343a40;
    --black: #1a1a1a;

    /* Accent Colors */
    --success-green: hsl(207, 61%, 41%);
    --warning-orange: #ff6b35;

    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

/* ==========================================
   NAVIGATION
   ========================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    font-weight: bold;
}

.team-number {
    background-color: var(--primary-red);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 1.5rem;
    font-weight: bold;
}

.team-name {
    font-size: 1.2rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    color: var(--white);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-red);
    transition: width var(--transition-normal);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 50%, var(--light-blue) 100%);
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.03) 2px, rgba(255,255,255,0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255,255,255,0.03) 2px, rgba(255,255,255,0.03) 4px);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(237, 28, 36, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--light-gray);
}

.hero-tagline {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--light-gray);
}

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

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-indicator span {
    width: 6px;
    height: 10px;
    background-color: var(--white);
    border-radius: 3px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(15px); opacity: 0.5; }
}

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

/* ==========================================
   BUTTONS
   ========================================== */

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: 2px solid transparent;
    text-decoration: none;
    font-family: inherit;
}

.btn-primary {
    background-color: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
}

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(237, 28, 36, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* ==========================================
   SECTIONS
   ========================================== */

.section {
    padding: var(--spacing-xl) 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark-blue);
    text-align: center;
    margin-bottom: 1rem;
}

.section-intro {
    font-size: 1.2rem;
    text-align: center;
    color: var(--medium-gray);
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* ==========================================
   COUNTDOWN SECTION
   ========================================== */

.countdown-section {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
    color: var(--white);
    text-align: center;
    padding: var(--spacing-lg) 0;
}

.countdown-section .section-title {
    color: var(--white);
    margin-bottom: 2rem;
}

.countdown-display {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 3rem 2rem;
    margin: 2rem auto;
    max-width: 800px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.countdown-timer {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    font-family: var(--font-heading);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.9; }
}

.countdown-credit {
    margin-top: 2rem;
    font-size: 1rem;
    font-style: italic;
    color: var(--light-gray);
}

.countdown-link {
    margin-top: 2rem;
}

.countdown-link .btn-primary {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
}

.countdown-link .btn-primary:hover {
    background-color: var(--white);
    color: var(--primary-blue);
    border-color: var(--white);
}

/* ==========================================
   RAFFLE SECTION
   ========================================== */

.raffle-section {
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    color: var(--white);
    padding: var(--spacing-xl) 0;
}

.raffle-section .section-title {
    color: var(--white);
    font-size: 3.2rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.raffle-section .section-intro {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 600;
}

.raffle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.raffle-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-normal);
    color: var(--dark-gray);
    overflow: visible;
    position: relative;
}

.raffle-card:hover {
    z-index: 10;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.raffle-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--off-white) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    border-radius: 15px 15px 0 0;
}

.raffle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    cursor: pointer;
}

.raffle-card:hover .raffle-image {
    height: 600px;
}

.raffle-card:hover .raffle-image img {
    object-fit: contain;
}

.featured-raffle {
    border: 4px solid var(--primary-red);
    position: relative;
}

.featured-raffle::before {
    content: "POPULAR";
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: var(--primary-red);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.raffle-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1.5rem 2rem 1rem 2rem;
    border-bottom: 3px solid var(--light-gray);
}

.raffle-header h3 {
    font-size: 2rem;
    color: var(--dark-blue);
    margin: 0;
}

.raffle-price {
    background: linear-gradient(135deg, var(--success-green) 0%, teal 100%);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(40, 167, 69, 0.3);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.raffle-price:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(40, 167, 69, 0.5);
    background: linear-gradient(135deg, teal 0%, var(--success-green) 100%);
}

.raffle-prizes {
    padding: 0 2rem;
}

.raffle-prizes h4 {
    color: var(--dark-blue);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.raffle-prizes ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.raffle-prizes li {
    padding-left: 2rem;
    margin-bottom: 1rem;
    position: relative;
    line-height: 1.7;
}

.raffle-prizes li::before {
    content: ' ';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.raffle-note {
    background-color: var(--light-gray);
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-top: 1rem;
    color: var(--dark-gray);
}

.raffle-cta {
    margin-top: 2rem;
    padding: 0 2rem 2rem 2rem;
}

.raffle-cta .btn {
    width: 100%;
    font-size: 1.2rem;
    padding: 1rem 2rem;
}

.raffle-cta button.btn {
    display: block;
}

.raffle-cta .btn-primary:hover {
    background-color: #c01515;
    border-color: #c01515;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(237, 28, 36, 0.4);
}

.raffle-info {
    background-color: var(--white);
    border-radius: 15px;
    padding: 3rem;
    margin-top: 3rem;
    text-align: center;
    color: var(--dark-gray);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.raffle-info h3 {
    color: var(--primary-red);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.raffle-info p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.raffle-purchase-info {
    background-color: var(--off-white);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
    text-align: left;
    line-height: 2;
}

.raffle-purchase-info a {
    color: var(--primary-blue);
    text-decoration: underline;
}

.raffle-purchase-info a:hover {
    color: var(--dark-blue);
}

.raffle-organizer {
    margin-top: 2rem;
    font-size: 0.95rem;
    color: var(--medium-gray);
}

/* ==========================================
   STEM SECTION
   ========================================== */

.stem-section {
    background-color: var(--off-white);
}

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

.card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-normal);
    text-align: center;
}

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

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.card h3 {
    font-size: 1.4rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.card p {
    color: var(--medium-gray);
    line-height: 1.7;
}

.stats-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--medium-gray);
}

/* ==========================================
   FRC SECTION
   ========================================== */

.frc-section {
    background-color: var(--white);
}

.frc-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.frc-main h3,
.frc-benefits h3 {
    font-size: 1.8rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.frc-main h3:first-child {
    margin-top: 0;
}

.frc-main p {
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.benefits-list li {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.7;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: bold;
    font-size: 1.2rem;
}

.benefits-list strong {
    color: var(--dark-blue);
}

.quote-block {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    padding: 3rem;
    border-radius: 10px;
    margin-top: 3rem;
}

.quote-block blockquote {
    color: var(--white);
    font-size: 1.2rem;
    line-height: 1.8;
    font-style: italic;
    position: relative;
}

.quote-block blockquote::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -1rem;
    left: -1rem;
    opacity: 0.3;
}

.quote-block cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    font-weight: 600;
    color: var(--light-gray);
}

/* ==========================================
   TEAM SECTION
   ========================================== */

.team-section {
    background-color: var(--off-white);
}

.team-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.team-story h3,
.team-values h3 {
    font-size: 1.8rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.team-story h3:first-child {
    margin-top: 0;
}

.team-story p {
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.values-grid {
    display: grid;
    gap: 1.5rem;
}

.value-item {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-blue);
    transition: all var(--transition-normal);
}

.value-item:hover {
    transform: translateX(5px);
    border-left-color: var(--primary-red);
}

.value-item h4 {
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.value-item p {
    color: var(--medium-gray);
    line-height: 1.6;
}

.area-teams {
    margin-top: 4rem;
    text-align: center;
}

.area-teams h3 {
    font-size: 2rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.area-teams > p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

.teams-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.team-text-link {
    font-size: 1.2rem;
    color: var(--primary-blue);
    text-decoration: underline;
    transition: all var(--transition-fast);
    font-weight: 500;
}

.team-text-link:hover {
    color: var(--dark-blue);
    text-decoration: none;
}

/* ==========================================
   IMPACT SECTION
   ========================================== */

.impact-section {
    background-color: var(--white);
}

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

.impact-card {
    background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.impact-card h3 {
    font-size: 1.6rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-gray);
}

.impact-card ul {
    list-style: none;
}

.impact-card li {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    line-height: 1.7;
    color: var(--dark-gray);
}

.impact-card li::before {
    content: '▶';
    position: absolute;
    left: 0;
    top: 6px;
    color: var(--primary-red);
    font-size: 0.7rem;
}

/* ==========================================
   JOIN SECTION
   ========================================== */

.join-section {
    background: linear-gradient(135deg, var(--off-white) 0%, var(--light-gray) 100%);
}

.join-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.join-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-normal);
}

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

.join-card h3 {
    font-size: 1.6rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.join-card p {
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.join-detail {
    font-size: 0.95rem;
    color: var(--medium-gray);
    padding: 0.75rem;
    background-color: var(--off-white);
    border-radius: 5px;
    margin-top: 1rem;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    color: var(--white);
}

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================
   MODAL
   ========================================== */

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

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

.modal-content {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--medium-gray);
    cursor: pointer;
    transition: color var(--transition-fast);
    line-height: 1;
}

.modal-close:hover {
    color: var(--primary-red);
}

.modal-content h2 {
    color: var(--dark-blue);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.modal-content p {
    color: var(--dark-gray);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.modal-contact-info {
    background-color: var(--off-white);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.modal-contact-info h3 {
    color: var(--dark-blue);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.modal-contact-info ul {
    list-style: none;
}

.modal-contact-info li {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    color: var(--dark-gray);
}

.modal-contact-info a {
    color: var(--primary-blue);
    text-decoration: underline;
}

.modal-contact-info a:hover {
    color: var(--dark-blue);
}

.modal-content button {
    width: 100%;
    margin-top: 1rem;
}

.modal-content button.btn-primary:hover {
    background-color: #c01515;
    border-color: #c01515;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(237, 28, 36, 0.4);
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background-color: var(--dark-gray);
    color: var(--light-gray);
    padding: 3rem 0 1rem;
}

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

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

.footer-section p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--light-gray);
    transition: color var(--transition-fast);
}

.footer-section a:hover {
    color: var(--primary-blue);
}

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

.social-links a {
    padding: 0.5rem 1rem;
    background-color: var(--medium-gray);
    border-radius: 5px;
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid var(--medium-gray);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .frc-content,
    .team-content {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2.3rem;
    }

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

    .raffle-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 70%;
        height: calc(100vh - 70px);
        background-color: var(--dark-blue);
        flex-direction: column;
        padding: 2rem;
        transition: right var(--transition-normal);
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    }

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

    .nav-toggle {
        display: flex;
    }

    .team-name {
        font-size: 1rem;
    }

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

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

    .hero-tagline {
        font-size: 1rem;
    }

    .stats-row {
        flex-direction: column;
        align-items: center;
    }

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

    .section-intro {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-md: 1rem;
        --spacing-lg: 2rem;
        --spacing-xl: 3rem;
    }

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

    .team-number {
        padding: 0.4rem 0.8rem;
        font-size: 1.2rem;
    }

    .team-name {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .cards-grid,
    .impact-grid,
    .join-grid {
        grid-template-columns: 1fr;
    }

    .raffle-section .section-title {
        font-size: 2rem;
    }

    .raffle-header h3 {
        font-size: 1.5rem;
    }

    .raffle-price {
        font-size: 1.2rem;
        padding: 0.5rem 1rem;
    }

    .raffle-info h3 {
        font-size: 1.8rem;
    }

    .raffle-info {
        padding: 2rem 1rem;
    }

    .countdown-timer {
        font-size: 1.8rem;
    }
}
