/* CSS Variables */
:root {
    --navy: #182B4D;
    --gold: #D8A32B;
    --cream: #F6F3EC;
    --black: #0B0F17;
    --white: #FFFFFF;
    
    --font-display: 'Oswald', sans-serif;
    --font-accent: 'Dancing Script', cursive;
    --font-body: 'Montserrat', sans-serif;
}

/* Reset & Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--cream);
    color: var(--navy);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    text-transform: uppercase;
    line-height: 1.1;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Reusable Components */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    max-width: 1500px;
    margin: 40px auto;
    border-radius: 30px;
    overflow: hidden;
}

.btn-gold {
    display: inline-block;
    background-color: var(--gold);
    color: var(--navy);
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 1px;
    padding: 12px 28px;
    text-transform: uppercase;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-gold:hover {
    background-color: transparent;
    color: var(--gold);
    border-color: var(--gold);
}

.poster-frame {
    padding: 40px;
    margin: 20px 0;
    background-color: var(--white);
}

.hero .poster-frame {
    border: none;
    padding: 40px;
    background-color: transparent;
}

.hero-image-container {
    background-color: var(--navy);
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    border-radius: 24px;
    overflow: hidden;
}

.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.meet-photo {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    object-position: center top;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.accent-text {
    font-family: var(--font-accent);
    color: var(--gold);
    text-transform: none;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.section-title span {
    color: var(--gold);
}


/* Sticky Navigation */
.navbar {
    background-color: var(--navy);
    color: var(--cream);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 3px solid var(--gold);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    position: relative;
}

.nav-links a:hover::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background-color: var(--gold);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 2rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 60px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.hero-content h1 .navy-text { color: var(--navy); display: block; }
.hero-content h1 .gold-text { color: var(--gold); display: block; }
.hero-content h1 .sub-heading {
    font-size: 2rem;
    display: block;
    margin-top: 10px;
}

.hero-subline {
    font-weight: 700;
    margin: 20px 0;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.hero-body {
    margin: 25px 0;
    font-size: 1.1rem;
}

.hero-image-container {
    background-color: var(--navy);
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    border-radius: 24px;
    overflow: hidden;
}

.election-badge {
    display: inline-block;
    margin-top: 20px;
    padding: 8px 15px;
    border: 1px solid var(--black);
    font-family: var(--font-display);
    font-size: 1.2rem;
}

/* Quote Section */
.quote-section {
    background-color: var(--cream);
    padding: 100px 20px;
    text-align: center;
    border-top: 1px solid rgba(11, 15, 23, 0.1);
    border-bottom: 1px solid rgba(11, 15, 23, 0.1);
}

.statement-quote {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 3.5rem;
    color: var(--navy);
    line-height: 1.2;
    max-width: 900px;
    margin: 0 auto 30px auto;
    letter-spacing: -1px;
}

.statement-quote .quote-mark {
    color: var(--gold); 
}

.quote-author {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    color: #555; 
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Meet Shivam */
.meet-shivam {
    background-color: var(--navy);
    color: var(--cream);
    padding: 80px 0;
}

.eyebrow {
    display: inline-block;
    background-color: var(--gold);
    color: var(--navy);
    padding: 5px 15px;
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.meet-grid {
    display: grid;
    grid-template-columns: minmax(320px, 1fr) minmax(320px, 1fr);
    gap: 50px;
    margin-top: 40px;
    align-items: center;
    justify-content: center;
}

.meet-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}

.meet-text-box,
.meet-image-box {
    width: 100%;
}

.meet-quote-box {
    padding-top: 10px;
}

.meet-photo {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    object-position: center top;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    display: block;
}

.pull-question {
    font-family: var(--font-accent);
    font-size: 2.5rem;
    color: var(--gold);
    line-height: 1.4;
    border-left: 4px solid var(--gold);
    padding-left: 20px;
}

/* Why I'm Running */
.why-running {
    padding: 80px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.why-copy {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.impact-section {
    padding: 80px 0;
    background-color: var(--cream);
}

.section-intro {
    max-width: 800px;
    margin: 0 auto 40px auto;
    text-align: center;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(240px, 1fr));
    gap: 30px;
}

.impact-card {
    background-color: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background-color: var(--navy);
    color: var(--cream);
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.impact-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--navy);
}

.impact-card p {
    flex: 1;
    line-height: 1.7;
    color: #333;
    margin-bottom: 18px;
}

.impact-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 20px;
}

.section-photo {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.stacked-commitment {
    margin-top: 40px;
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--navy);
    line-height: 1.2;
}

.stacked-commitment span {
    display: block;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 10px;
    margin-bottom: 10px;
}

/* Priorities List */
.priorities {
    padding: 80px 0;
    background-color: var(--white);
}

.priority-list {
    max-width: 800px;
    margin: 0 auto;
}

.priority-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gold);
}

.priority-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--navy);
    border: 2px solid var(--gold);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.priority-content h4 {
    font-size: 1.4rem;
    color: var(--navy);
}

/* My Commitment Banner */
.commitment-banner {
    background-color: var(--navy);
    color: var(--gold);
    text-align: center;
    padding: 60px 20px;
}

.commitment-banner h2 {
    font-size: 3rem;
    letter-spacing: 2px;
}

.commitment-list {
    color: var(--cream);
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 2;
}

/* Better Approach to Growth */
.growth {
    padding: 80px 0;
    text-align: center;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.tag-pill {
    background-color: var(--navy);
    color: var(--gold);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* Why Shivam & Get Involved */
.values-involved {
    background-color: var(--white);
    padding: 80px 0;
    border-top: 1px solid var(--black);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.values-list li {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.values-list li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.involved-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.involved-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 1px solid var(--navy);
    font-weight: 700;
    text-transform: uppercase;
}

.involved-item .icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    margin-right: 15px;
}

.callout-box {
    background-color: var(--cream);
    border: 2px solid var(--gold);
    padding: 20px;
    margin-top: 20px;
}

/* Have a Concern */
.concern {
    padding: 80px 0;
    text-align: center;
}

.checklist {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 800px;
    margin: 30px auto;
}

.check-item {
    font-weight: 600;
}

/* Vote CTA Band */
.vote-cta {
    background-color: var(--navy);
    text-align: center;
    padding: 80px 20px;
    color: var(--gold);
}

.vote-cta h2 {
    font-size: 4rem;
    margin-bottom: 10px;
}

.vote-cta p {
    color: var(--cream);
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-family: var(--font-accent);
}

/* Footer */
.footer {
    background-color: var(--black);
    color: var(--cream);
    text-align: center;
    padding: 40px 20px;
    font-size: 0.9rem;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--gold);
}

/* Responsive Design */
@media (max-width: 900px) {
    .hero-grid, .meet-grid, .why-grid, .concern-grid, .impact-grid, .grid-2 {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 40px 0;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-subline {
        font-size: 1rem;
    }

    .hero-body {
        font-size: 1rem;
    }

    .hero-image-container,
    .meet-image-box,
    .why-image-box,
    .concern-image-box {
        width: 100%;
    }

    .meet-image-frame,
    .why-image-frame {
        width: 100%;
    }

    .hero-image-container {
        height: auto;
    }

    .hero-photo,
    .meet-photo,
    .section-photo {
        height: auto;
        max-height: 260px;
    }

    .meet-photo {
        max-height: 280px;
    }

    .statement-quote {
        font-size: 2rem;
    }

    .pull-question {
        font-size: 1.7rem;
        line-height: 1.3;
    }

    .poster-frame {
        padding: 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .stacked-commitment {
        font-size: 1.9rem;
        margin-top: 24px;
    }

    .checklist {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .impact-grid {
        grid-template-columns: 1fr;
    }

    .impact-card {
        padding: 18px;
    }

    .impact-image {
        height: 200px;
    }

    .commitment-banner h2, .vote-cta h2 {
        font-size: 2.5rem;
    }

    .vote-cta {
        padding: 60px 20px;
    }

    .meet-photo,
    .section-photo {
        border-radius: 24px;
    }

    .why-copy,
    .meet-text-box,
    .concern-copy {
        text-align: left;
    }

    .why-image-frame .image-label,
    .meet-image-frame .image-label {
        font-size: 0.85rem;
        bottom: 12px;
        left: 12px;
    }

    /* Mobile Menu Styles */
    .mobile-toggle {
        display: block;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--navy);
        padding: 20px 0;
        border-bottom: 3px solid var(--gold);
    }
    
    .nav-links.active {
        display: flex;
    }

    .vote-cta {
        padding: 60px 20px;
    }

    /* Mobile Menu Styles */
    .mobile-toggle {
        display: block;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--navy);
        padding: 20px 0;
        border-bottom: 3px solid var(--gold);
    }
    
    .nav-links.active {
        display: flex;
    }
}