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

:root {
    /* Patriotic Color Palette */
    --navy: #2c3e6e;
    --red: #B22234;
    --white: #ffffff;
    --cream: #f5f5f0;
    --blue: #4a5f8f;
    --gold: #d4af37;
    
    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-display: 'Georgia', 'Times New Roman', serif;
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px 20px;
}

body {
    font-family: var(--font-primary);
    color: var(--navy);
    background-color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: var(--navy);
    color: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    letter-spacing: 0.3px;
}

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

.social-link {
    display: flex;
    align-items: center;
    padding: 8px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.social-link:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: url('images/hero.jpg') center top / cover no-repeat;
    color: var(--white);
    padding: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 65vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-top: 170px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, black);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 60px 20px;
    width: 100%;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 400;
    margin-bottom: -10px;
    line-height: 1.3;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-weight: 700;
    font-size: 60px;
}

.hero p {
    font-size: 21px;
    margin-bottom: 40px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.hero-subtitle-1 {
    font-style: italic;
    font-size: 36px;
}

.hero-subtitle-2 {
    font-weight: 700;
}

.cta-button {
    position: relative;
    display: inline-block;
    background-color: var(--red);
    color: var(--white);
    padding: 18px 48px;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(178, 34, 52, 0.4);
}

.cta-button:hover {
    background-color: #8B1A2B;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(178, 34, 52, 0.6);
}

.cta-button::after {
    content: "Only 24 made for this drop.";
    position: absolute;
    top: -5px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    font-size: 10px;
    letter-spacing: -.3px;
    color: #ffffff91;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: end;
}

/* Made in USA Transition */
.made-in-usa {
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
    padding: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.15);
border-bottom: 1px solid rgba(255,255,255,0.15);
}

.made-in-usa h2 {
    font-family: var(--font-primary);
    font-size: 0;
    height: 18px;
    font-weight: 600;
    margin: 0;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    white-space: nowrap;
}

.made-in-usa h2::before {
    font-size: 11px;
    content: 'MADE IN THE USA · MADE IN THE USA · MADE IN THE USA · MADE IN THE USA · MADE IN THE USA · MADE IN THE USA · MADE IN THE USA · MADE IN THE USA · MADE IN THE USA · MADE IN THE USA · MADE IN THE USA · MADE IN THE USA · MADE IN THE USA · MADE IN THE USA · MADE IN THE USA · MADE IN THE USA · MADE IN THE USA · MADE IN THE USA · MADE IN THE USA · MADE IN THE USA · ';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Product Showcase */
.product-showcase {
    padding: var(--section-padding);
    padding-top: 20px;
    padding-bottom: 0;
    background: url('images/showcase-bg.jpg') center center / cover no-repeat;
    position: relative;
}

.product-showcase::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, 
        rgba(248, 249, 250, 0) 0%, 
        #e9ecef 90%, 
        #e9ecef 100%);
    pointer-events: none;
    z-index: 0;
}

.product-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.product-image {
    position: relative;
    display: flex;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

.main-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-thumbnails {
    position: absolute;
    right: -100px;
    top: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: none;
    padding: 0;
    opacity: 0.6;
}

.thumbnail:hover {
    opacity: 1;
    border-color: var(--navy);
}

.thumbnail.active {
    opacity: 1;
    border-color: var(--red);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-header {
    text-align: center;
}

.product-header .drop-label {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -1.5px;
    color: var(--red);
    margin-bottom: 8px;
}

.product-header h2 {
    font-family: var(--font-display);
    font-size: 48px;
    line-height: 60px;
    margin: 0 0 0 0;
    color: var(--navy);
}

.product-header p {
    font-size: 20px;
    margin: 0;
    color: #666;
}

.product-details h2 {
    font-family: var(--font-display);
    font-size: 48px;
    margin: 0;
    color: var(--navy);
}

.product-details p {
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 10px;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
}

.feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    color: var(--red);
    flex-shrink: 0;
    margin-top: 5px;
}

.feature h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--navy);
}

.feature p {
    color: #666;
    font-size: 16px;
}

/* Waitlist CTA Section */
.waitlist-cta {
    padding: 30px 0;
    background: linear-gradient(0deg, #f8f9fa 0%, #e9ecef 50%, #e9ecef 100%);
    text-align: center;
}

.cta-tagline {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--navy);
    margin-bottom: 30px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.cta-button-large {
    padding: 18px 48px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* About Us Section with Parallax */
.about-section {
    position: relative;
    min-height: 200vh;
    background: #000;
}

.about-parallax {
    position: fixed;
    top: 10vh;
    left: 0;
    width: 100%;
    height: 100vh;
    background: url('images/about-bg.jpg') center center / cover no-repeat;
    background-size: cover;
    opacity: 0;
    z-index: 0;
    will-change: transform, opacity;
    transform: translateY(0);
    pointer-events: none;
    touch-action: none;
}

.back-to-product-btn {
    position: fixed;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%) translateY(120px);
    padding: 12px 24px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    z-index: 9;
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.back-to-product-btn.visible {
    transform: translateX(-50%) translateY(0);
}

.back-to-product-btn.visible:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
    transform: translateX(-50%) translateY(-2px);
}

.about-progress-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    z-index: 10;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.about-progress-bar.visible {
    opacity: 1;
}

.progress-bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--red);
    transition: width 0.1s linear;
}

.progress-text-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-text {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    pointer-events: none;
}

.about-content {
    position: relative;
    z-index: 1;
}

.about-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    text-align: center;
    position: relative;
}

/* First slide - full screen with logo */
.slide-intro {
    min-height: 100vh;
}

.about-logo {
    width: 400px;
    max-width: 80%;
    height: auto;
    margin-bottom: 40px;
}

.about-tagline {
    font-family: var(--font-display);
    font-size: 32px;
    line-height: 1.4;
    color: var(--white);
    margin: 0;
    font-style: italic;
}

/* Shared base styles for all content slides */
.slide-2 {
    min-height: 100vh;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.slide-3 {
    min-height: 100vh;
    justify-content: center;
    flex-direction: column;
}

/* Shared base styles for all text elements */
.slide-text {
    line-height: 1.6;
    color: var(--white);
    max-width: 900px;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    transform: translateY(60px);
}

.slide-text.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Slide 2 - Paragraph-like stacked text */
.slide-2 .slide-text {
    font-size: 24px;
    line-height: 36px;
    position: relative;
}

.slide-2 .slide-2-text-1 {
    font-family: var(--font-display);
    font-size: 38px;
    line-height: 36px;
    margin: 20px 0;
    position: relative;
}

.slide-2 .slide-2-text-2 {
    font-size: 36px;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 120px;
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.slide-2 .slide-2-text-3 {
    letter-spacing: -.2px;
    font-weight: 700;
}

.slide-2 .slide-2-text-5 {
    margin: 100px 0 40px;
    font-family: var(--font-display);
    font-size: 38px;
    line-height: 40px;
    position: relative;
}

.slide-2 .slide-2-text-7 {
    font-weight: 700;
    text-transform: uppercase;
    line-height: 120px;
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Slide 3 - Two text elements */
.slide-3 .slide-text {
    width: 90%;
}

.slide-3-text-1 {
    font-size: 40px;
    margin: 50vh 0;
    line-height: 60px;
}

.slide-3-text-2 {
    font-size: 28px;
    letter-spacing: 1px;
    margin: 50vh 0;
}

/* Waitlist Section */
.waitlist {
    padding: 30px 20px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
    color: var(--white);
    position: relative;
}

.waitlist::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 35px,
            rgba(255, 255, 255, 0.02) 35px,
            rgba(255, 255, 255, 0.02) 70px
        );
    pointer-events: none;
}

.waitlist-image-container {
    display: flex;
    justify-content: center;
    align-items: top;
    gap: 20px;
}

.waitlist-image {
    max-width: 256px;
    max-height: 256px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.waitlist-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.waitlist-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.waitlist h2 {
    font-family: var(--font-display);
    font-size: 48px;
    margin-bottom: 30px;
    text-align: center;
}

.waitlist-subtitle {
    font-size: 21px;
    margin-bottom: 24px;
    opacity: 0.9;
    letter-spacing: 2px;
}

.waitlist-form {
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
}

.email-input {
    flex: 1;
    padding: 18px 24px;
    font-size: 16px;
    border: 2px solid transparent;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--navy);
    transition: all 0.3s ease;
}

.email-input:focus {
    outline: none;
    border-color: var(--gold);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
}

.email-input::placeholder {
    color: #999;
}

.submit-button {
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 600;
    background-color: var(--red);
    color: var(--white);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.submit-button:hover {
    background-color: #8B1A2B;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(178, 34, 52, 0.6);
}

.form-note {
    font-size: 14px;
    opacity: 0.8;
    font-style: italic;
    text-align: center;
    margin-bottom: 24px;
}

.social-proof {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.proof-icon {
    font-size: 24px;
}

.waitlist-socials {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.waitlist-social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    text-decoration: none;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.waitlist-social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
    background-color: var(--navy);
    color: var(--white);
    padding: 40px 20px;
}

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

.footer-logo {
    height: 32px;
    width: auto;
    margin-bottom: 8px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--gold);
    font-style: italic;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.footer-links p {
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-social-link {
    color: var(--white);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 8px;
}

.footer-social-link:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 968px) {
    
    .hero .highlight {
        font-size: 64px;
    }
    
    .made-in-usa {
        padding: 60px 20px;
    }

    .made-in-usa h2::before {
        font-size: 10px;
        padding: 14px 40px;
        letter-spacing: 2.5px;
    }
    
    .product-grid {
        gap: 40px;
    }
    
    .product-header h2 {
        font-size: 36px;
    }
    
    .product-header p {
        font-size: 18px;
    }
    
    .product-image {
        flex-direction: column;
        gap: 20px;
    }
    
    .image-thumbnails {
        position: static;
        flex-direction: row;
        justify-content: center;
    }
    
    .thumbnail {
        width: 60px;
        height: 60px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        align-items: center;
    }
    
    .nav-links a:not(.social-link) {
        display: none;
    }
    
    .waitlist-socials > div {
        flex-direction: column !important;
        gap: 15px !important;
    }
    
    .waitlist-social-link {
        width: 100%;
        max-width: 300px;
    }
    
    .cta-tagline {
        font-size: 24px;
    }
    
    .cta-button-large {
        padding: 16px 40px;
        font-size: 16px;
    }
    
    .waitlist-image-container {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .waitlist-subtitle {
        text-align: center;
    }
}

@media (max-width: 640px) {
    :root {
        --section-padding: 60px 20px;
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .hero-content {
        padding: 40px 20px;
    }
    
    .hero h1 {
        font-size: 22px;
        line-height: 1.4;
        margin-bottom: 0;
    }
    
    .hero-title {
        font-weight:700;
        font-size:36px;
    }

    .hero p {
        font-size: 18px;
        letter-spacing: -1px;
    }

    .hero .hero-subtitle-1 {
        font-size: 16px;
    }

    .hero .hero-subtitle-2 {
        margin-top: -7px;
        margin-bottom: 30px;
    }

    .cta-button {
        font-size: 16px;
    }
    
    .made-in-usa {
        padding: 20px 20px;
    }
    
    .made-in-usa h2 {
        font-size: 0;
        padding: 12px 32px;
        letter-spacing: 2px;
    }

    .made-in-usa h2::before {
        font-size: 9px;
    }
    
    .product-details h2 {
        font-size: 36px;
    }
    
    .about-logo {
        width: 280px;
        margin-bottom: 30px;
    }
    
    .about-tagline {
        font-size: 22px;
    }
    
    .slide-text {
        width: 95%;
    }
    
    /* Slide 2 responsive */
    .slide-2 .slide-text {
        font-size: 22px;
    }
    
    .slide-2 .slide-2-text-2 {
        flex-direction: column;
        gap: 15px;
        font-size: 28px;
        line-height: 1.5;
    }
    
    .slide-2 .slide-2-text-7 {
        flex-direction: column;
        gap: 10px;
        font-size: 20px;
        line-height: 1.4;
        margin-top: 40px;
    }
    
    /* Slide 3 responsive */
    .slide-3 .slide-text {
        width: 95%;
    }
    
    .slide-3-text-1 {
        top: 35vh;
        font-size: 28px;
    }
    
    .slide-3-text-2 {
        top: 55vh;
        font-size: 20px;
    }
    
    .back-to-product-btn {
        bottom: 50px;
        font-size: 12px;
        padding: 10px 20px;
    }

    .waitlist-cta .container {
        display: flex;
        flex-direction: column-reverse;
        padding: 10px 20px;
        gap: 10px;
    }
    
    .waitlist-cta {
        padding: 10px 0 0;
    }
    
    .cta-tagline {
        font-size: 14px;
        padding: 0;
        margin: 0;
    }
    
    .cta-button-large {
        padding: 14px 32px;
        font-size: 14px;
    }
    
    .waitlist h2 {
        font-size: 28px;
    }
    
    .waitlist-image-container {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .waitlist-image {
        max-width: 200px;
        max-height: 200px;
    }
    
    .waitlist-subtitle {
        text-align: center;
    }
    
    .waitlist-content {
        text-align: center;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .submit-button {
        width: 100%;
    }
    
    .social-proof {
        gap: 20px;
    }
    
    .nav-links {
        gap: 16px;
    }
    
    .nav-links a {
        font-size: 14px;
    }
    
    .logo {
        height: 32px;
    }
    
    .footer-logo {
        height: 28px;
    }

    .waitlist-subtitle {
        letter-spacing: 0;
    }
    
    .waitlist-social-link {
        padding: 10px 20px;
    }
    
    .waitlist-social-link span {
        font-size: 14px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Form Success State */
.form-success {
    background-color: rgba(76, 175, 80, 0.1);
    border: 2px solid #4CAF50;
    color: #4CAF50;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
}

/* Loading State */
.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceDown {
    0%, 100% {
        transform: translateY(-2px);
    }
    50% {
        transform: translateY(2px);
    }
}

.scroll-chevron {
    animation: bounceDown 1.5s ease-in-out infinite;
    color: var(--white);
    opacity: 0.9;
}

.hero-content,
.product-grid,
.story-content,
.waitlist-content {
    animation: fadeInUp 0.8s ease-out;
}
