/* ===========================================
   JIM ZEIGLER FOR PSC - MAIN STYLESHEET
   =========================================== */

/* CSS Variables */
:root {
    --navy: #0a192f;
    --dark-blue: #112240;
    --bright-red: #b91c1c;
    --deep-red: #991b1b;
    --gold: #d4af37;
    --light-gold: #f5d77a;
    --off-white: #f8fafc;
    --steel: #94a3b8;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--navy);
    color: var(--off-white);
    line-height: 1.6;
}

a {
    color: var(--light-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--gold);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--bright-red);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--off-white);
    text-transform: uppercase;
}

.nav-logo span {
    color: var(--bright-red);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    color: var(--off-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--bright-red);
    transition: width 0.3s ease;
}

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

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--off-white);
    transition: all 0.3s ease;
}

/* ===========================================
   HERO SECTION WITH BANNER BACKGROUND
   =========================================== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: 
        linear-gradient(135deg, rgba(10, 25, 47, 0.55) 0%, rgba(10, 25, 47, 0.40) 50%, rgba(10, 25, 47, 0.55) 100%),
        url('../images/banner-psc.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 25, 47, 0.15) 0%,
        rgba(10, 25, 47, 0.30) 50%,
        rgba(10, 25, 47, 0.85) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-text {
    max-width: 850px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--gold);
    padding: 0.6rem 1.25rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: var(--light-gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-badge span {
    opacity: 0.6;
}

.hero-text h1 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-text h1 .name {
    color: var(--bright-red);
    display: block;
    font-size: 1.4em;
    text-shadow: 3px 3px 0 var(--navy), 4px 4px 10px rgba(0,0,0,0.5);
}

.hero-tagline {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--light-gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 2rem;
    padding: 0.5rem 1.5rem;
    display: inline-block;
    border: 2px solid var(--gold);
    background: rgba(10, 25, 47, 0.6);
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #e2e8f0;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-description strong {
    color: var(--light-gold);
}

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

.btn {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 1rem 2.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--bright-red);
    color: white;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
}

.btn-primary:hover {
    background: var(--deep-red);
    color: white;
    transform: translateX(5px);
}

.btn-secondary {
    background: transparent;
    color: var(--light-gold);
    border: 2px solid var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--navy);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
}

/* Section Styles */
.section {
    padding: 5rem 2rem;
}

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

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 3rem;
}

.section-title span {
    color: var(--light-gold);
}

/* Big Tech Section */
.big-tech-section {
    background: linear-gradient(135deg, #1a1a2e 0%, var(--navy) 100%);
    border-top: 4px solid var(--bright-red);
    border-bottom: 4px solid var(--bright-red);
}

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

.big-tech-lead {
    font-size: 1.4rem;
    color: var(--light-gold);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.big-tech-content > p {
    font-size: 1.15rem;
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.big-tech-quote {
    background: rgba(185, 28, 28, 0.2);
    border-left: 4px solid var(--bright-red);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    text-align: left;
}

.big-tech-quote p {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--off-white);
    margin: 0;
    font-weight: 600;
}

/* Rates Section */
.rates-section {
    background: var(--dark-blue);
}

.rate-freeze-box {
    background: rgba(34, 197, 94, 0.15);
    border: 2px solid #22c55e;
    padding: 1.5rem 2rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.rate-freeze-box h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: #86efac;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.rate-freeze-box p {
    color: var(--off-white);
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

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

.rates-lead {
    font-size: 1.5rem;
    color: var(--light-gold);
    margin-bottom: 1.5rem;
}

.rates-content p {
    font-size: 1.15rem;
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Why Jim Section */
.insiders {
    background: var(--navy);
}

.why-jim-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.why-jim-intro {
    font-size: 1.25rem;
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.why-jim-intro strong {
    color: var(--light-gold);
}

.why-jim-list {
    text-align: left;
    max-width: 500px;
    margin: 0 auto 2rem;
}

.why-jim-list p {
    font-size: 1.15rem;
    color: var(--off-white);
    margin-bottom: 1rem;
    padding-left: 0.5rem;
}

.why-jim-list strong {
    color: var(--light-gold);
}

.why-jim-closer {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--light-gold);
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Fight Record Section */
.fight-record {
    background: var(--deep-red);
}

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

.fight-card {
    background: rgba(0, 0, 0, 0.2);
    padding: 2rem;
    border-left: 4px solid var(--gold);
    transition: transform 0.3s ease;
}

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

.fight-result {
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--light-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.fight-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--off-white);
}

.fight-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.fight-card p strong {
    color: var(--light-gold);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--navy) 100%);
    text-align: center;
}

.cta-text {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.election-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.election-date {
    text-align: center;
}

.election-date .label {
    font-size: 0.9rem;
    color: var(--steel);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.election-date .date {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: var(--light-gold);
    font-weight: 700;
}

/* Footer */
.footer {
    background: #050d1a;
    padding: 3rem 2rem;
    border-top: 4px solid var(--bright-red);
}

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

.footer-section h4 {
    font-size: 1.1rem;
    color: var(--light-gold);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.footer-section p,
.footer-section a {
    color: var(--steel);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--steel);
    font-size: 0.85rem;
}

/* Page Hero (for inner pages) */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--dark-blue) 100%);
    padding: 8rem 2rem 4rem;
    text-align: center;
}

.page-hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    color: var(--off-white);
    margin-bottom: 1rem;
}

.page-hero h1 span {
    color: var(--gold);
}

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

.form-group label {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    color: var(--off-white);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--off-white);
    font-size: 1rem;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* Bio Grid */
.bio-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
}

.bio-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.bio-text h2 {
    font-size: 2rem;
    color: var(--off-white);
    margin-bottom: 1.5rem;
}

.bio-text p {
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Timeline */
.timeline {
    margin-top: 3rem;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.timeline-year {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--bright-red);
    min-width: 100px;
}

.timeline-content h3 {
    font-size: 1.2rem;
    color: var(--off-white);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--steel);
    margin-bottom: 0;
}

/* ===========================================
   RESPONSIVE STYLES
   =========================================== */

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

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--navy);
        flex-direction: column;
        padding: 5rem 2rem;
        transition: right 0.3s ease;
        gap: 1rem;
    }

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

    .hero {
        min-height: 80vh;
        background-attachment: scroll;
    }

    .hero-content {
        padding: 7rem 1.5rem 3rem;
    }

    .bio-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .bio-image {
        max-width: 300px;
        margin: 0 auto;
    }

    .timeline-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
        letter-spacing: 0.1em;
        padding: 0.4rem 1rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 600px) {
    .section {
        padding: 3rem 1rem;
    }

    .election-info {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .why-jim-intro {
        font-size: 1.1rem;
    }
    
    .why-jim-list p {
        font-size: 1rem;
    }
    
    .why-jim-closer {
        font-size: 1.2rem;
    }

    .big-tech-lead {
        font-size: 1.2rem;
    }

    .big-tech-quote p {
        font-size: 1.1rem;
    }

    .hero {
        min-height: auto;
        padding-top: 0;
    }

    .hero-content {
        padding: 6rem 1rem 2.5rem;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}
