/* ============================================
   BECKER FOR TENNESSEE 2025
   Style inspiré de sliwafornyc.com
   ============================================ */

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

:root {
    --navy: #0a1628;
    --navy-light: #132240;
    --red: #c41230;
    --red-dark: #9e0f28;
    --blue: #1a5276;
    --blue-light: #81b7d9;
    --white: #ffffff;
    --gray-100: #f7f8fa;
    --gray-200: #e8ecf1;
    --gray-600: #6b7280;
    --text: #1a1a2e;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

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

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

/* ---- NAVBAR ---- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--navy);
    border-bottom: 3px solid var(--red);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--white);
}

.nav-logo {
    height: 44px;
    width: auto;
}

.nav-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--white);
}

.nav-year {
    color: var(--red);
    margin-left: 2px;
}

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

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
}

.nav-menu li a {
    display: block;
    padding: 24px 16px;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
    margin-bottom: -3px;
}

.nav-menu li a:hover {
    color: var(--white);
    border-bottom-color: var(--red);
}

.nav-cta {
    background: var(--red) !important;
    color: var(--white) !important;
    padding: 10px 20px !important;
    border-radius: 4px;
    margin-left: 8px;
    border-bottom: none !important;
    font-weight: 600 !important;
}

.nav-cta:hover {
    background: var(--red-dark) !important;
    border-bottom-color: transparent !important;
}

/* ---- HERO ---- */
.hero {
    position: relative;
    min-height: 100vh;
    background: var(--navy);
    display: flex;
    align-items: center;
    padding-top: 70px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #0d2137 100%);
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(196, 18, 48, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(26, 82, 118, 0.2) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-tagline {
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--blue-light);
    margin-bottom: 16px;
}

.hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: 2px;
}

.hero-title span {
    color: var(--red);
}

.hero-slogan {
    font-size: 1.35rem;
    font-weight: 300;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
}

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

.btn-hero-primary:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 18, 48, 0.4);
}

.btn-hero-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}

.btn-hero-outline:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}

.hero-image {
    flex: 0 0 auto;
    width: 420px;
}

.hero-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
    animation: heroFadeIn 1s ease forwards;
}

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

/* ---- ANNOUNCEMENT BAR ---- */
.announcement-bar {
    background: var(--red);
    color: var(--white);
    padding: 14px 0;
    text-align: center;
}

.announcement-bar p {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    letter-spacing: 2px;
    font-weight: 400;
}

.announcement-bar strong {
    font-weight: 700;
}

/* ---- SECTION LABELS ---- */
.section-label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-label-center {
    text-align: center;
}

/* ---- MEET SECTION ---- */
.meet-section {
    padding: 100px 0;
    background: var(--white);
}

.meet-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 60px;
    align-items: start;
}

.meet-photo img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.meet-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 28px;
}

.meet-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 16px;
}

.meet-content strong {
    color: var(--text);
}

.meet-signature {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 2px solid var(--gray-200);
}

.meet-signature p {
    font-size: 0.95rem !important;
    color: var(--navy) !important;
    margin-bottom: 4px !important;
    line-height: 1.5 !important;
}

/* ---- PLATFORM SECTION ---- */
.platform-section {
    padding: 100px 0;
    background: var(--gray-100);
}

.platform-heading {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    margin-bottom: 60px;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.platform-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: var(--transition);
    border-top: 4px solid transparent;
}

.platform-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    border-top-color: var(--red);
}

.platform-icon {
    width: 48px;
    height: 48px;
    color: var(--red);
    margin-bottom: 20px;
}

.platform-icon svg {
    width: 100%;
    height: 100%;
}

.platform-card h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.platform-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray-600);
}

/* ---- QUOTE SECTION ---- */
.quote-section {
    background: var(--navy);
    padding: 80px 0;
    text-align: center;
}

.quote-section blockquote p {
    font-family: 'Source Sans 3', serif;
    font-size: 1.8rem;
    font-weight: 300;
    font-style: italic;
    color: var(--white);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 24px;
}

.quote-section cite {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-style: normal;
    letter-spacing: 2px;
    color: var(--blue-light);
    font-weight: 500;
}

/* ---- INVOLVE SECTION ---- */
.involve-section {
    padding: 100px 0;
    background: var(--white);
}

.involve-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.involve-card {
    background: var(--gray-100);
    padding: 48px 32px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
}

.involve-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.involve-icon {
    width: 48px;
    height: 48px;
    color: var(--red);
    margin: 0 auto 20px;
}

.involve-icon svg {
    width: 100%;
    height: 100%;
}

.involve-card h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.involve-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 24px;
}

.btn-involve {
    background: var(--navy);
    color: var(--white);
    padding: 12px 28px;
    font-size: 0.8rem;
}

.btn-involve:hover {
    background: var(--red);
    transform: translateY(-2px);
}

/* ---- OPPONENTS SECTION ---- */
.opponents-section {
    background: var(--gray-100);
    padding: 80px 0;
    text-align: center;
}

.opponents-no {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--red);
    line-height: 2;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.opponents-yes {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--blue-light);
    margin-bottom: 32px;
    letter-spacing: 0.5px;
}

/* ---- FOOTER ---- */
.footer {
    background: var(--navy);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 30px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 30px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo {
    height: 36px;
    width: auto;
}

.footer-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
}

.footer-links {
    display: flex;
    gap: 28px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    margin-bottom: 16px;
    opacity: 0.6;
}

.footer-image {
    max-width: 300px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    opacity: 0.7;
}

/* ---- ANIMATIONS ---- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.8rem;
    }

    .hero-image {
        width: 320px;
    }

    .meet-grid {
        grid-template-columns: 300px 1fr;
        gap: 40px;
    }

    .platform-grid,
    .involve-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--navy);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-menu li a {
        padding: 14px 0;
        border-bottom-color: transparent;
        margin-bottom: 0;
    }

    .nav-cta {
        margin-left: 0 !important;
        margin-top: 12px;
        text-align: center;
        display: block !important;
    }

    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
        padding: 40px 24px;
    }

    .hero-text {
        max-width: 100%;
    }

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

    .hero-slogan {
        font-size: 1.1rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-image {
        width: 260px;
    }

    .meet-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .meet-photo {
        max-width: 300px;
        margin: 0 auto;
    }

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

    .platform-heading {
        font-size: 2.2rem;
    }

    .platform-grid,
    .involve-grid {
        grid-template-columns: 1fr;
    }

    .quote-section blockquote p {
        font-size: 1.3rem;
    }

    .footer-top {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .nav-inner {
        height: 60px;
    }

    .nav-logo {
        height: 36px;
    }

    .nav-name {
        font-size: 1.3rem;
    }

    .hero {
        padding-top: 60px;
    }

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

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

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

    .hero-image {
        width: 200px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.85rem;
    }

    .meet-section,
    .platform-section,
    .involve-section {
        padding: 60px 0;
    }

    .platform-heading {
        font-size: 1.8rem;
        margin-bottom: 36px;
    }

    .platform-card,
    .involve-card {
        padding: 28px 20px;
    }
}
