/* ===================================
   RESET & BASE STYLES
   =================================== */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1rem;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===================================
   TYPOGRAPHY
   =================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', 'Impact', 'Arial Black', sans-serif;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.02em;
}

a {
    color: #000;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

a:hover {
    opacity: 0.7;
}

strong {
    font-weight: bold;
}

/* ===================================
   LAYOUT
   =================================== */

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

section {
    padding: 80px 0;
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
}

/* ===================================
   HEADER
   =================================== */

.header {
    border-bottom: 2px solid #000;
    padding: 20px 0;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-group {
    display: flex;
    gap: 30px;
    align-items: center;
}

.logo {
    height: 40px;
    width: auto;
}

.social-nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-nav a {
    display: block;
    width: 24px;
    height: 24px;
}

.social-nav svg {
    width: 100%;
    height: 100%;
    fill: #000;
    transition: opacity 0.2s ease;
}

.social-nav a:hover svg {
    opacity: 0.6;
}

@media (max-width: 768px) {
    .logo-group {
        gap: 15px;
    }
    
    .logo {
        height: 30px;
    }
    
    .social-nav {
        gap: 15px;
    }
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    padding: 80px 0 60px;
    border-bottom: 2px solid #000;
}

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

.hero-text {
    position: relative;
    margin-bottom: 40px;
}

.hero-title {
    font-size: clamp(60px, 12vw, 140px);
    line-height: 0.9;
    margin-bottom: 0;
}

.phone-icon {
    margin: 30px 0;
}

.phone-icon img {
    width: clamp(80px, 15vw, 120px);
    height: auto;
}

.hero-subtitle {
    margin-bottom: 40px;
}

.tagline {
    font-family: 'Bebas Neue', 'Impact', sans-serif;
    font-size: clamp(28px, 5vw, 48px);
    letter-spacing: 0.05em;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-intro {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.hero-intro p {
    margin-bottom: 0.8rem;
}

.hero-intro p:last-child {
    font-weight: bold;
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0 40px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
    display: inline-block;
    padding: 15px 40px;
    font-family: 'Bebas Neue', 'Impact', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 0.05em;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid #000;
    text-decoration: none;
}

.btn-primary {
    background: #000;
    color: #fff;
    border-color: #000;
}

.btn-primary:hover {
    background: #fff;
    color: #000;
    opacity: 1;
}

.btn-secondary {
    background: #fff;
    color: #000;
    border-color: #000;
}

.btn-secondary:hover {
    background: #000;
    color: #fff;
    opacity: 1;
}

.btn-large {
    padding: 18px 50px;
    font-size: 1.5rem;
}

/* ===================================
   SECTION TITLES
   =================================== */

.section-title {
    font-size: clamp(40px, 8vw, 80px);
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 0.03em;
}

/* ===================================
   MANIFESTO SECTION
   =================================== */

.manifesto {
    background: #fff;
    border-bottom: 2px solid #000;
}

.manifesto-content {
    max-width: 800px;
    margin: 0 auto;
}

.manifesto-heading {
    font-size: clamp(28px, 5vw, 42px);
    margin: 40px 0 20px;
}

.manifesto-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.manifesto-content ul {
    margin: 30px 0 30px 20px;
    list-style: none;
}

.manifesto-content ul li {
    margin-bottom: 1rem;
    padding-left: 20px;
    position: relative;
}

.manifesto-content ul li:before {
    content: "■";
    position: absolute;
    left: 0;
    font-size: 0.8em;
}

.callout {
    border-left: 4px solid #000;
    padding-left: 20px;
    margin: 30px 0;
}

.callout p {
    font-weight: bold;
    font-size: 1.1rem;
}

.emphasis {
    font-weight: bold;
    font-size: 1.15rem !important;
    margin: 30px 0 !important;
}

.manifesto-closer {
    font-size: 1.1rem !important;
    margin: 25px 0 !important;
}

.manifesto-final {
    font-size: 1.2rem !important;
    margin: 40px 0 0 !important;
    text-align: center;
}

/* ===================================
   PETITION SECTION
   =================================== */

.petition {
    background: #f9f9f9;
    border-bottom: 2px solid #000;
}

.petition-content {
    max-width: 700px;
    margin: 0 auto;
}

.petition-intro {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.petition-demands {
    margin: 30px 0 30px 20px;
    counter-reset: demands;
    list-style: none;
}

.petition-demands li {
    counter-increment: demands;
    margin-bottom: 1.2rem;
    padding-left: 30px;
    position: relative;
}

.petition-demands li:before {
    content: counter(demands) ".";
    position: absolute;
    left: 0;
    font-weight: bold;
}

.petition-tagline {
    font-weight: bold;
    font-size: 1.1rem;
    margin: 30px 0 50px;
    text-align: center;
}

/* Petition Form */

.petition-form {
    background: #fff;
    border: 2px solid #000;
    padding: 40px;
    margin-top: 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-family: 'Bebas Neue', 'Impact', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1rem;
    border: 2px solid #000;
    background: #fff;
}

.form-group input:focus {
    outline: none;
    background: #f9f9f9;
}

.form-note {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.7;
    text-align: center;
}

.form-success {
    background: #fff;
    border: 2px solid #000;
    padding: 40px;
    margin-top: 40px;
    text-align: center;
}

.form-success h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .petition-form {
        padding: 30px 20px;
    }
}

/* ===================================
   MERCHANDISE SECTION
   =================================== */

.merch {
    background: #fff;
    border-bottom: 2px solid #000;
}

.merch-intro {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

.merch-intro p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin: 60px 0;
}

.product {
    border: 2px solid #000;
    padding: 0;
    background: #fff;
}

.product-image {
    width: 100%;
    aspect-ratio: 1;
    background: #f5f5f5;
    border-bottom: 2px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 30px;
}

.product-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.product-description {
    margin-bottom: 20px;
    line-height: 1.5;
}

.product-price {
    font-family: 'Bebas Neue', 'Impact', sans-serif;
    font-size: 2rem;
    margin-bottom: 20px;
}

.merch-note {
    text-align: center;
    font-size: 0.95rem;
    opacity: 0.8;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .products {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ===================================
   SPREAD THE WORD SECTION
   =================================== */

.spread {
    background: #f9f9f9;
    border-bottom: 2px solid #000;
}

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

.spread-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.social-links {
    background: #fff;
    border: 2px solid #000;
    padding: 30px;
    margin: 40px 0;
}

.social-links p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.social-links p:last-child {
    margin-bottom: 0;
}

.spread-cta {
    font-size: 1.1rem !important;
}

.spread-final {
    font-weight: bold;
    font-size: 1.2rem !important;
    margin-top: 40px !important;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: #fff;
    padding: 40px 0 0;
    text-align: center;
}

.footer-text {
    margin-bottom: 10px;
}

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

.footer-copy {
    margin-bottom: 30px;
    font-size: 0.9rem;
    opacity: 0.7;
}

.color-bar {
    height: 20px;
    background: linear-gradient(
        to right,
        #FFD700 0%,
        #FFD700 14.28%,
        #FFFFFF 14.28%,
        #FFFFFF 28.56%,
        #FF0000 28.56%,
        #FF0000 42.84%,
        #FF00FF 42.84%,
        #FF00FF 57.12%,
        #00FF00 57.12%,
        #00FF00 71.4%,
        #00FFFF 71.4%,
        #00FFFF 85.68%,
        #0000FF 85.68%,
        #0000FF 100%
    );
}

/* ===================================
   UTILITIES
   =================================== */

@media print {
    .header,
    .hero-cta,
    .petition-form,
    .merch,
    .spread,
    .footer {
        display: none;
    }
}
