/* Tatum Eagles 2026 - Neobrutalist Design System */
/* Updated Color Scheme: Black & White with Green Accent */

:root {
    /* Primary Colors - Black & White */
    --primary-black: #000000;
    --primary-white: #ffffff;
    
    /* Accent Color - Tatum Green */
    --eagles-green: #339c5e;
    
    /* Supporting Colors */
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #333333;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'Courier New', monospace;
    
    /* Borders */
    --border-width: 4px;
    --border-width-thick: 6px;
    --border-width-hero: 8px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background-color: var(--primary-white);
    color: var(--primary-black);
    line-height: 1.6;
    overflow-x: hidden;
}
/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

/* Neobrutalist Components */
.neo-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.neo-card {
    background-color: var(--primary-white);
    border: var(--border-width) solid var(--primary-black);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 6px 6px 0 var(--primary-black);
    transition: all 0.2s ease;
}

.neo-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0 var(--primary-black);
}

.neo-card-black {
    background-color: var(--primary-black);
    color: var(--primary-white);
}

.neo-card-green {
    background-color: var(--eagles-green);
    color: var(--primary-white);
}
/* Buttons */
.neo-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-black);
    color: var(--primary-white);
    border: var(--border-width) solid var(--primary-black);
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 4px 4px 0 var(--primary-black);
    transition: all 0.15s ease;
    cursor: pointer;
}

.neo-btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--primary-black);
    color: var(--primary-white);
}

.neo-btn:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--primary-black);
}

.neo-btn-white {
    background-color: var(--primary-white);
    color: var(--primary-black);
}

.neo-btn-green {
    background-color: var(--eagles-green);
    color: var(--primary-white);
    border-color: var(--primary-black);
}

.neo-btn-outline {
    background-color: transparent;
    color: var(--primary-black);
    border: var(--border-width) solid var(--primary-black);
}

.neo-btn-outline:hover {
    background-color: var(--primary-black);
    color: var(--primary-white);
}
/* Navigation */
.neo-nav {
    background-color: var(--primary-black);
    border-bottom: var(--border-width-thick) solid var(--primary-black);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.neo-nav-brand {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-white);
    text-decoration: none;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.neo-nav-brand i {
    color: var(--eagles-green);
}

.neo-nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.neo-nav-link {
    color: var(--primary-white);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border: 3px solid transparent;
    transition: all 0.2s ease;
}

.neo-nav-link:hover {
    background-color: var(--eagles-green);
    color: var(--primary-white);
    border-color: var(--eagles-green);
}
/* Hero Sections */
.neo-hero {
    background-color: var(--primary-black);
    border: var(--border-width-hero) solid var(--primary-black);
    padding: 4rem 2rem;
    margin: 2rem;
    box-shadow: 10px 10px 0 var(--primary-black);
    position: relative;
    overflow: hidden;
}

.neo-hero-image {
    position: relative;
    width: 100%;
    height: 500px;
    margin: 2rem 0;
    border: var(--border-width-thick) solid var(--primary-black);
    box-shadow: 8px 8px 0 var(--primary-black);
    overflow: hidden;
}

.neo-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.neo-hero-content {
    position: relative;
    z-index: 10;
}

/* Grid System */
.neo-grid {
    display: grid;
    gap: 2rem;
}

.neo-grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.neo-grid-3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.neo-grid-4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
/* Forms */
.neo-form-group {
    margin-bottom: 1.5rem;
}

.neo-label {
    display: block;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.neo-input,
.neo-textarea {
    width: 100%;
    padding: 1rem;
    border: var(--border-width) solid var(--primary-black);
    background-color: var(--primary-white);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all 0.2s ease;
}

.neo-input:focus,
.neo-textarea:focus {
    outline: none;
    box-shadow: 4px 4px 0 var(--primary-black);
    transform: translate(-2px, -2px);
}

/* Badges and Tags */
.neo-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--eagles-green);
    color: var(--primary-white);
    border: 3px solid var(--primary-black);
    font-weight: 700;
    text-transform: uppercase;
    margin: 0.25rem;
}

.neo-badge-black {
    background-color: var(--primary-black);
    color: var(--primary-white);
}

.neo-badge-white {
    background-color: var(--primary-white);
    color: var(--primary-black);
}
/* Offset Elements */
.neo-offset {
    position: relative;
    transform: rotate(-2deg);
    margin: 2rem 0;
}

.neo-offset-right {
    transform: rotate(2deg);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .neo-nav-menu {
        display: none;
    }
    
    .neo-hero {
        margin: 1rem;
        padding: 2rem 1rem;
    }
    
    .neo-hero-image {
        height: 300px;
    }
    
    .neo-card {
        padding: 1.5rem;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
}

/* Utility Classes */
.text-green { color: var(--eagles-green); }
.text-black { color: var(--primary-black); }
.text-white { color: var(--primary-white); }
.bg-green { background-color: var(--eagles-green); }
.bg-black { background-color: var(--primary-black); }
.bg-white { background-color: var(--primary-white); }
.bg-gray { background-color: var(--light-gray); }
.text-center { text-align: center; }
.text-uppercase { text-transform: uppercase; }
.font-mono { font-family: var(--font-mono); }

/* Accent Line */
.accent-line {
    height: 4px;
    background-color: var(--eagles-green);
    width: 100px;
    margin: 1rem 0;
}