/*
 * Stylesheet for The Boot Room landing pages.
 *
 * The design embraces a retro football vibe through a rich green palette,
 * textured backgrounds and vintage typography. Responsive layouts ensure
 * accessibility across devices. Form components are styled to look
 * premium without compromising on readability or usability.
 */

 @font-face {
    font-family: 'ALoveOfThunder';
    src: url('assets/A Love of Thunder.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Reset & global styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #f5f5f5;
    line-height: 1.6;
    background-color: #C62d32; /* deep green backdrop */
}

h1, h2, h3, h4 {
    font-family: 'ALoveOfThunder', 'Orbitron', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    color: #e2d5b2;
}

p {
    margin-bottom: 1rem;
    color: #d8d8d8;
}

/* Utility classes */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
    cursor: pointer;
}

.btn-primary {
    background-color: #f8bb13;
    color: #002a12;
}

.btn-primary:hover {
    background-color: #b9962c;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid #f8bb13;
    color: #f8bb13;
}

.btn-secondary:hover {
    background-color: #f8bb13;
    color: #002a12;
}

.btn.outline {
    border: 2px solid #f8bb13;
    background: none;
    color: #f8bb13;
    padding: 0.5rem 1rem;
}

.btn.outline:hover {
    background-color: #f8bb13;
    color: #002a12;
}

/* Navigation */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background-color: #C62d32;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

/* Logo wrapper; no longer uses text so just holds the image */
.logo {
    display: block;
    line-height: 0;
}

.logo img {
    height: 48px;
    width: auto;
    display: block;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
}

.nav-links li a {
    color: #f5f5f5;
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    transition: color 0.2s, background-color 0.2s;
}

.nav-links li a:hover {
    background-color: rgba(212, 175, 55, 0.2);
    border-radius: 4px;
}
/* Mobile navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle .hamburger {
    width: 25px;
    height: 3px;
    background-color: #f8bb13;
    display: block;
}

/* Hero section */
.hero {
    position: relative;
    height: 100vh;
    background: url('assets/Bootroom_Bg.gif') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 20, 20, 0.641);
    mix-blend-mode: multiply;
}

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

.hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

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

/* Sections */
.section {
    padding: 5rem 2rem;
    background-color: #C62d32;
}

.section.alt {
    background-color: #C62d32;
}

.section h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #f8bb13;
}

.section-lead {
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
    color: #d8d8d8;
    font-size: 1.1rem;
}

/* Grid layouts */
.grid-2, .grid-3, .grid-4 {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Cards */
.card {
    background-color: #9a1e22;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
}

.card h3 {
    margin-bottom: 0.5rem;
    color: #f8bb13;
}

.card p {
    color: #d8d8d8;
}

/* Sponsor cards for emphasis */
.sponsor-card {
    border-left: 4px solid #f8bb13;
}

.sponsor-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Feature list */
.features-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
}

.features-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
}

.features-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0;
    color: #f8bb13;
    font-size: 1.2rem;
}

/* Audience grid */
.audience-grid .audience-item {
    background-color: #9a1e22;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.audience-item h3 {
    margin-bottom: 0.5rem;
    color: #f8bb13;
}

.audience-item p {
    color: #d8d8d8;
    font-size: 0.95rem;
}

/* Sponsors marquee */
.sponsor-marquee {
    overflow: hidden;
    padding: 3rem 0;
    background-color: #9a1e22; /* use an alternate dark green */
}

.sponsor-marquee h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #f8bb13;
}

.sponsor-marquee .marquee-track {
    display: flex;
    align-items: center;
    gap: 4rem;
    animation: marquee 15s linear infinite;
}

.sponsor-marquee img {
    height: 150px;
    flex-shrink: 0;
    opacity: 0.85;
    transition: opacity 0.3s;
}

.sponsor-marquee img:hover {
    opacity: 1;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Legendary inspiration section */
.legend-section {
    padding: 5rem 2rem;
    background-color: #C62d329f;
}

.legend-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}

.legend-img {
    flex: 1 1 300px;
}

.legend-img img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.legend-text {
    flex: 1 1 300px;
    color: #d8d8d8;
}

.legend-text h2 {
    margin-bottom: 1rem;
    color: #f8bb13;
}

.legend-text p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: #420305;
    padding: 2rem;
    text-align: center;
}

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

.footer-nav {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #f8bb13;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-nav a:hover {
    text-decoration: underline;
}

/* Forms */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #9a1e22;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

.form-container h2 {
    margin-bottom: 1rem;
    text-align: center;
    color: #f8bb13;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #e2d5b2;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #560e10;
    border-radius: 4px;
    background-color: #C62d32;
    color: #f5f5f5;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f8bb13;
}

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

.form-group .checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group .checkbox input {
    width: auto;
}

.form-actions {
    text-align: center;
}

.form-actions button {
    background-color: #f8bb13;
    color: #002a12;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
}

.form-actions button:hover {
    background-color: #b9962c;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: rgba(234, 50, 50, 0.95);
        flex-direction: column;
        align-items: center;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    .nav-links.open {
        max-height: 400px;
    }
    .nav-toggle {
        display: flex;
    }
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    .hero {
        padding-top: 5rem;
    }
}

/* Retro starburst background section */
.retro-starburst {
    position: relative;
    color: #f5f5f5;
    background: url('assets/retro_starburst.png') center/cover no-repeat;
}

.retro-starburst::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 42, 18, 0.7);
    z-index: 0;
}

.retro-starburst > * {
    position: relative;
    z-index: 1;
}