/* ── Reset ──────────────────────────────────────────── */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.6;
}

/* ── Nav ────────────────────────────────────────────── */

.site-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    height: 60px;
    background: rgba(10, 10, 10, 0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #1a1a1a;
}

.site-brand {
    font-size: 1.35rem;
    font-weight: 800;
    color: #f59e0b;
    text-decoration: none;
    letter-spacing: -0.02em;
    flex-shrink: 0;
}

.site-nav-links {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.site-nav-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.15s;
}

.site-nav-links a:hover {
    color: #fff;
}

.nav-app-pill {
    padding: 0.35rem 0.9rem !important;
    border: 1px solid #2a2a2a;
    border-radius: 20px;
    font-size: 0.85rem !important;
    color: #ccc !important;
    transition: border-color 0.15s, color 0.15s !important;
}

.nav-app-pill:hover {
    border-color: #f59e0b !important;
    color: #f59e0b !important;
}

/* Hamburger — mobile only */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #aaa;
    border-radius: 2px;
    transition: background 0.15s;
}

.nav-toggle:hover span { background: #fff; }

/* ── Shared Buttons ─────────────────────────────────── */

.btn-primary {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: #f59e0b;
    color: #000;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background 0.15s, transform 0.1s;
}

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

.btn-ghost {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: transparent;
    color: #e0e0e0;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid #333;
    transition: border-color 0.15s, color 0.15s;
}

.btn-ghost:hover {
    border-color: #666;
    color: #fff;
}

/* ── Eyebrow ────────────────────────────────────────── */

.eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #f59e0b;
    margin-bottom: 1rem;
}

/* ── Brand Hero (Fellas homepage) ───────────────────── */

.brand-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 5rem 2rem;
    background: radial-gradient(ellipse at 40% 50%, #1e0f00 0%, #0a0a0a 60%);
}

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

.brand-hero-content h1 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.0;
    color: #fff;
    margin-bottom: 1.5rem;
}

.brand-hero-content > p {
    font-size: 1.1rem;
    color: #888;
    max-width: 500px;
    line-height: 1.75;
    margin-bottom: 2.5rem;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ── The Bars App Hero (thebarsapp page) ────────────── */

.hero {
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5rem 2rem;
    background: radial-gradient(ellipse at 50% 0%, #2d1800 0%, #0a0a0a 65%);
}

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

.hero-content h1 {
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1.25rem;
}

.hero-content > p {
    font-size: 1.1rem;
    color: #888;
    margin-bottom: 2.5rem;
    line-height: 1.75;
}

/* ── Page Hero (interior pages: vlogs, blog, store) ─── */

.page-hero {
    padding: 5rem 2rem 3.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    color: #fff;
    margin-bottom: 0.75rem;
    line-height: 1.05;
}

.page-hero > p {
    font-size: 1.05rem;
    color: #777;
}

/* ── Content Sections ───────────────────────────────── */

.content-section {
    padding: 4.5rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.content-section.alt-bg {
    max-width: 100%;
    background: #0f0f0f;
    padding: 4.5rem 2rem;
}

.content-section.alt-bg > * {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
}

.see-all {
    font-size: 0.85rem;
    color: #f59e0b;
    text-decoration: none;
    transition: color 0.15s;
}

.see-all:hover { color: #d97706; }

/* ── Card Grids ─────────────────────────────────────── */

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.card-grid-wide {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

/* ── Vlog Cards ─────────────────────────────────────── */

.vlog-card {
    background: #141414;
    border: 1px solid #1e1e1e;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
    cursor: pointer;
}

.vlog-card:hover {
    border-color: #333;
    transform: translateY(-3px);
}

.vlog-thumb {
    aspect-ratio: 16 / 9;
    background: #1c1c1c;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn {
    width: 44px;
    height: 44px;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #f59e0b;
    transition: background 0.15s;
}

.vlog-card:hover .play-btn {
    background: rgba(245, 158, 11, 0.25);
}

.vlog-meta {
    padding: 1rem 1.1rem 1.25rem;
}

.vlog-tag {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #f59e0b;
}

.vlog-meta h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #e8e8e8;
    margin-top: 0.4rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.vlog-date {
    font-size: 0.8rem;
    color: #555;
}

/* ── Blog Cards ─────────────────────────────────────── */

.blog-card {
    background: #141414;
    border: 1px solid #1e1e1e;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
    cursor: pointer;
}

.blog-card:hover {
    border-color: #333;
    transform: translateY(-3px);
}

.blog-thumb {
    aspect-ratio: 16 / 9;
    background: #1c1c1c;
}

.blog-meta {
    padding: 1rem 1.25rem 1.4rem;
}

.blog-tag {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #f59e0b;
}

.blog-meta h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #e8e8e8;
    margin-top: 0.4rem;
    margin-bottom: 0.5rem;
    line-height: 1.45;
}

.blog-excerpt {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.blog-date {
    font-size: 0.8rem;
    color: #444;
}

/* ── Product Cards ──────────────────────────────────── */

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.25rem;
}

.product-card {
    background: #141414;
    border: 1px solid #1e1e1e;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.product-card:hover {
    border-color: #333;
}

.product-thumb {
    aspect-ratio: 1;
    background: #1c1c1c;
}

.product-info {
    padding: 1rem 1.1rem 1.25rem;
}

.product-info h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #e8e8e8;
    margin-bottom: 0.3rem;
}

.product-desc {
    font-size: 0.8rem;
    color: #555;
    margin-bottom: 1rem;
}

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

.product-price {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.btn-cart {
    padding: 0.4rem 0.9rem;
    background: #f59e0b;
    color: #000;
    font-size: 0.8rem;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s;
}

.btn-cart:hover { background: #d97706; }
.btn-cart:disabled {
    background: #1e1e1e;
    color: #444;
    cursor: not-allowed;
    border: 1px solid #2a2a2a;
}

.store-notice {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 2rem;
}

/* ── The Bars App CTA Block ─────────────────────────── */

.app-cta-section {
    background: #0f0f0f;
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
    padding: 5rem 2rem;
    text-align: center;
}

.app-cta-inner {
    max-width: 560px;
    margin: 0 auto;
}

.app-cta-inner h2 {
    font-size: 2.4rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 1rem;
}

.app-cta-inner > p {
    font-size: 1rem;
    color: #777;
    line-height: 1.75;
    margin-bottom: 2rem;
}

/* ── The Bars App: Features & About ─────────────────── */

.features {
    padding: 5rem 2rem;
    max-width: 1020px;
    margin: 0 auto;
}

.features h2 {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 1.25rem;
}

.feature-card {
    background: #141414;
    border: 1px solid #1e1e1e;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: border-color 0.2s;
}

.feature-card:hover {
    border-color: rgba(245, 158, 11, 0.3);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.65;
}

.about {
    padding: 5rem 2rem;
    background: #0f0f0f;
    text-align: center;
}

.about-content {
    max-width: 580px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.about-content p {
    font-size: 1.05rem;
    color: #777;
    line-height: 1.8;
}

/* ── Footer ─────────────────────────────────────────── */

.site-footer {
    padding: 1.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #141414;
    font-size: 0.85rem;
    color: #3a3a3a;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.site-footer a {
    color: #3a3a3a;
    text-decoration: none;
    transition: color 0.15s;
}

.site-footer a:hover { color: #f59e0b; }

/* ── Mobile ─────────────────────────────────────────── */

@media (max-width: 768px) {
    .nav-toggle { display: flex; }

    .site-nav-links {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        background: #0f0f0f;
        border-bottom: 1px solid #1a1a1a;
        padding: 0.5rem 0;
    }

    .site-nav-links.open { display: flex; }

    .site-nav-links a {
        width: 100%;
        padding: 0.85rem 2rem;
        font-size: 1rem;
        border-radius: 0;
    }

    .nav-app-pill {
        border: none !important;
        border-radius: 0 !important;
        padding: 0.85rem 2rem !important;
    }

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

    .brand-hero { min-height: auto; padding: 4rem 1.5rem; }

    .hero-ctas { flex-direction: column; align-items: flex-start; }

    .section-header { flex-direction: column; gap: 0.5rem; }

    .site-footer { flex-direction: column; gap: 1rem; text-align: center; }

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