/* ===== Font Face ===== */
@font-face {
    font-family: 'Bertho Block';
    src: url('fonts/blockberthold.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ===== CSS Variables ===== */
:root {
    --color-primary: #FF1493; /* Hot pink */
    --color-primary-hover: #E60082;
    --color-dark: #1a1a1a;
    --color-darker: #0d0d0d;
    --color-light: #ffffff;
    --color-gray: #666666;
    --color-gray-light: #f5f5f5;
    --color-success: #4ADE80;

    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Bertho Block', sans-serif;

    --container-max: 1200px;
    --container-padding: 24px;

    --transition: 0.3s ease;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ===== Container ===== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ===== Order Status Banner ===== */
.order-banner {
    background-color: #FF006E;
    color: var(--color-light);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 14px;
}

.status-dot {
    width: 12px;
    height: 12px;
    background-color: var(--color-success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.status-text {
    color: var(--color-light);
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-light);
}

.calendar-icon {
    width: 16px;
    height: 16px;
}

/* ===== Header ===== */
.header {
    background-color: var(--color-light);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: var(--color-dark);
    font-weight: 500;
    font-size: 16px;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-primary);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: var(--color-dark);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background-color: var(--color-dark);
    padding: 20px;
    gap: 15px;
}

.mobile-nav-link {
    color: var(--color-light);
    font-size: 18px;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav-link.active,
.mobile-nav-link:hover {
    color: var(--color-primary);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-light);
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--color-dark);
    color: var(--color-light);
}

.btn-secondary:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.btn-arrow {
    width: 20px;
    height: 20px;
}

/* ===== Hero Section ===== */
.hero {
    background-color: var(--color-dark);
    padding: 80px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: visible;
    padding-bottom: 80px;
}

/* Wavy edge at bottom of hero */
.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 80px;
    pointer-events: none;
    z-index: 3;
}

.hero-wave svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Grain texture overlay */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-tagline {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-light);
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #FF1493 50%, #FF6B35 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-description {
    font-size: 20px;
    color: #999;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Radial glow behind illustration */
.hero-image::before {
    content: '';
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 20, 147, 0.25) 0%, rgba(255, 20, 147, 0) 70%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
}

.hero-illustration {
    max-width: 100%;
    height: auto;
    max-height: 450px;
    position: relative;
    z-index: 1;
}

/* ===== Section Titles ===== */
.section-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
}

/* ===== How It Works ===== */
.how-it-works {
    padding: 100px 0;
    background-color: var(--color-light);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.step {
    text-align: center;
}

.step-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.step-icon-fallback {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: var(--color-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 900;
}

.step-icon-1 .step-icon-fallback { background-color: #FF6B35; }
.step-icon-2 .step-icon-fallback { background-color: #00CED1; }
.step-icon-3 .step-icon-fallback { background-color: var(--color-primary); }

.step-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-description {
    color: var(--color-gray);
    font-size: 16px;
    max-width: 280px;
    margin: 0 auto;
}

.steps-cta {
    text-align: center;
}

/* ===== Weekly Drop / Products ===== */
.weekly-drop {
    padding: 100px 0;
    background-color: #F5F5F5;
}

.weekly-drop .section-title {
    color: var(--color-dark);
    font-family: var(--font-display);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.product-card {
    background-color: var(--color-light);
    border: 2px solid var(--color-dark);
    overflow: hidden;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-4px);
}

.product-image {
    width: 100%;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-name {
    font-size: 20px;
    font-weight: 700;
    padding: 16px;
    text-align: center;
}

.products-cta {
    text-align: center;
    margin-top: 40px;
}

/* ===== Good Vibes Section ===== */
.good-vibes {
    padding: 100px 0;
    background-color: var(--color-dark);
    text-align: center;
}

.vibes-title {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 900;
    color: var(--color-light);
    margin-bottom: 24px;
}

.vibes-description {
    font-size: 18px;
    color: #999;
    max-width: 600px;
    margin: 0 auto 40px;
}

/* ===== About Section ===== */
.about-section {
    padding: 100px 0;
    background-color: var(--color-gray-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    font-size: 18px;
    color: var(--color-gray);
    margin-bottom: 20px;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.about-illustration {
    max-width: 100%;
    height: auto;
    max-height: 350px;
    margin: 0 auto;
    display: block;
}

/* ===== Contact Section ===== */
.contact-section {
    padding: 100px 0;
    background-color: var(--color-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.contact-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-item p,
.contact-item a {
    color: var(--color-gray);
    font-size: 16px;
}

.contact-item a:hover {
    color: var(--color-primary);
}

.contact-note {
    background-color: var(--color-gray-light);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--color-primary);
}

.contact-note p {
    color: var(--color-gray);
    font-style: italic;
}

/* ===== Footer ===== */
.footer {
    background-color: var(--color-dark);
    padding: 80px 0 40px;
    color: var(--color-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 120px;
    width: auto;
}

.footer-tagline {
    color: #999;
    font-size: 14px;
}

.footer-links h4,
.footer-info h4,
.footer-social h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    color: #999;
    margin-bottom: 12px;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-info p,
.footer-info a {
    color: #999;
    font-size: 14px;
    margin-bottom: 8px;
    display: block;
}

.footer-info a:hover {
    color: var(--color-primary);
}

.footer-social p {
    color: #999;
    font-size: 14px;
    margin-bottom: 16px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    color: var(--color-light);
}

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

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    color: #666;
    font-size: 14px;
}

/* ===== Responsive Design ===== */

/* Tablet */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 56px;
    }

    .hero-logo-circle {
        width: 280px;
        height: 280px;
    }

    .hero-logo-text {
        font-size: 90px;
    }

    .steps-grid {
        gap: 30px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --container-padding: 16px;
    }

    /* Header */
    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-nav.active {
        display: flex;
    }

    /* Hero */
    .hero {
        padding: 60px 0;
        padding-bottom: 60px;
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-description {
        font-size: 16px;
        margin: 0 auto 30px;
    }

    .hero-logo-circle {
        width: 220px;
        height: 220px;
    }

    .hero-logo-text {
        font-size: 70px;
    }

    /* Section Titles */
    .section-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    /* How It Works */
    .how-it-works {
        padding: 60px 0;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Products */
    .weekly-drop {
        padding: 60px 0;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .product-image {
        height: auto;
    }

    /* Good Vibes */
    .good-vibes {
        padding: 60px 0;
    }

    .vibes-title {
        font-size: 36px;
    }

    .vibes-description {
        font-size: 16px;
    }

    /* About */
    .about-section {
        padding: 60px 0;
    }

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

    .about-text .section-title {
        text-align: center;
    }

    .about-logo-circle {
        width: 200px;
        height: 200px;
    }

    .about-logo-text {
        font-size: 70px;
    }

    /* Contact */
    .contact-section {
        padding: 60px 0;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Footer */
    .footer {
        padding: 60px 0 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-tagline {
        font-size: 10px;
        padding: 8px 16px;
    }

    .btn {
        padding: 14px 24px;
        font-size: 14px;
    }

    .section-title {
        font-size: 28px;
    }

    .vibes-title {
        font-size: 28px;
    }

    .order-banner {
        flex-direction: column;
        gap: 8px;
        padding: 12px 16px;
        font-size: 12px;
    }
}
