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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    color: #EDE8DD;
    background: #111a0f;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Hero Section */
.hero {
    background: #111a0f;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 80px;
    border-bottom: 1px solid #232e1f;
}

.hero-content {
    max-width: 1200px;
}

.logo {
    font-family: 'Butler', serif;
    font-size: 96px;
    font-weight: 700;
    color: #F5F0E6;
    letter-spacing: 12px;
    margin-bottom: 32px;
    line-height: 1.1;
    text-transform: uppercase;
}

.logo .censored {
    display: inline-block;
}

.tagline {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    color: #7a7568;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: lowercase;
}

/* About Section */
.about {
    background: #161f13;
    padding: 56px 0;
    text-align: center;
}

.about h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #F5F0E6;
    margin-bottom: 32px;
    letter-spacing: 1px;
}

.about p {
    font-size: 20px;
    color: #8A8678;
    margin-bottom: 16px;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about .highlight {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #C4A44A;
    margin-top: 40px;
    line-height: 1.6;
}

/* T-Shirts Section */
.tshirts {
    background: #111a0f;
    padding: 56px 0;
}

.tshirts h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #F5F0E6;
    text-align: center;
    margin-bottom: 32px;
    letter-spacing: 1px;
}

.tshirt-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.tshirt-text {
    flex: 1;
}

.tshirt-text p {
    font-size: 20px;
    color: #8A8678;
    margin-bottom: 20px;
    line-height: 1.8;
}

.tshirt-text .highlight {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #C4A44A;
    margin-top: 20px;
}

.tshirt-gallery {
    flex: 1;
    display: flex;
    gap: 16px;
}

.gallery-item {
    flex: 1;
    height: 400px;
    background: #1e2a1a;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Founders Section */
.founders {
    background: #161f13;
    padding: 56px 0;
    text-align: center;
}

.founders h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #F5F0E6;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.founders-story {
    font-size: 20px;
    color: #8A8678;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 32px;
}

.founders-photos {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.founder-photo {
    flex: 1;
    max-width: 480px;
}

.founder-photo img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: center 20%;
    border-radius: 12px;
    background: #1e2a1a;
}

.founder-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-top: 16px;
    color: #D4C9B0;
    letter-spacing: 0.5px;
}

/* Community Section */
.community {
    background: #111a0f;
    padding: 56px 0;
    text-align: center;
}

.community h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #F5F0E6;
    margin-bottom: 32px;
    letter-spacing: 1px;
}

.community-lead {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #B8D84E;
    margin-bottom: 24px;
    line-height: 1.6;
}

.community p {
    font-size: 20px;
    color: #8A8678;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 24px;
}

.community-tagline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #B8D84E;
    margin-top: 32px;
    letter-spacing: 0.5px;
}

/* Videos Section */
.videos {
    background: #161f13;
    padding: 56px 0;
}

.videos h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #F5F0E6;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.video-subtitle {
    font-size: 20px;
    color: #7a7568;
    text-align: center;
    margin-bottom: 32px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.video-item {
    aspect-ratio: 9/16;
    background: #1e2a1a;
    border-radius: 12px;
    overflow: hidden;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder p {
    font-size: 14px;
    color: #3d4a38;
}

/* CTA Section */
.cta {
    background: #111a0f;
    padding: 64px 0;
    text-align: center;
    border-top: 1px solid #232e1f;
}

.cta h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #F5F0E6;
    line-height: 1.4;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.5px;
}

.cta-button {
    background: #C4A44A;
    color: #111a0f;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    padding: 20px 48px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cta-button:hover {
    background: #D4B55A;
    transform: translateY(-2px);
}

.price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #F5F0E6;
    margin: 24px 0;
    letter-spacing: 1px;
}

.cta-subtext {
    font-size: 18px;
    color: #8A8678;
    margin-bottom: 40px;
    line-height: 1.7;
}

/* Form */
.order-form {
    max-width: 480px;
    margin: 0 auto;
    display: none;
}

.order-form.active {
    display: block;
}

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

.form-group input {
    width: 100%;
    padding: 18px 16px;
    background: #1e2a1a;
    border: 1px solid #2d3b28;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    color: #EDE8DD;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #B8D84E;
}

.form-group input::placeholder {
    color: #5a6555;
}

.submit-button {
    width: 100%;
    background: #C4A44A;
    color: #111a0f;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 700;
    padding: 18px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.submit-button:hover {
    background: #D4B55A;
}

/* Footer */
.footer {
    background: #0a1008;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #232e1f;
}

.footer-logo {
    font-family: 'Butler', serif;
    font-size: 32px;
    font-weight: 700;
    color: #F5F0E6;
    margin-bottom: 32px;
    letter-spacing: 6px;
}

.footer-links {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-bottom: 32px;
}

.footer-links a {
    color: #5a6555;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.footer-links a:hover {
    color: #B8D84E;
}

.footer-copyright {
    font-size: 14px;
    color: #3d4a38;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }

    .hero {
        padding: 80px 40px;
    }

    .logo {
        font-size: 72px;
        letter-spacing: 6px;
    }

    .tagline {
        font-size: 20px;
    }

    .tshirt-content {
        flex-direction: column;
    }

    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    .hero {
        padding: 60px 24px;
        min-height: 80vh;
    }

    .logo {
        font-size: 48px;
        letter-spacing: 4px;
    }

    .tagline {
        font-size: 18px;
    }

    section {
        padding: 40px 0 !important;
    }

    h2 {
        font-size: 36px !important;
    }

    .about p,
    .tshirt-text p,
    .community p {
        font-size: 18px;
    }

    .about .highlight,
    .community-tagline {
        font-size: 22px;
    }

    .tshirt-gallery {
        flex-direction: column;
    }

    .gallery-item {
        height: 300px;
    }

    .founders-photos {
        flex-direction: column;
    }

    .founder-photo {
        max-width: 100%;
    }

    .founder-photo img {
        height: 400px;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .cta h2 {
        font-size: 32px;
    }

    .cta-button {
        font-size: 18px;
        padding: 16px 32px;
    }

    .price {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 36px;
        letter-spacing: 3px;
    }

    .tagline {
        font-size: 16px;
    }

    h2 {
        font-size: 28px !important;
    }

    .footer-links {
        flex-direction: column;
        gap: 20px;
    }
}
