/*
 * n00bofficial - Styles
 * Comedy duo Laura Bakker & Isabelle Kafando
 */

:root {
    --clr-bg: #1a0a1f;
    --clr-surface: #2d1535;
    --clr-accent: #e91e8c;
    --clr-accent-light: #ff4eb5;
    --clr-text: #f5f0f7;
    --clr-text-muted: #b8a4c0;
    --clr-highlight: #7b2cbf;
    --ff-display: 'Space Grotesk', system-ui, sans-serif;
    --ff-body: 'Inter', system-ui, sans-serif;
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 2rem;
    --shadow-soft: 0 4px 24px rgba(233, 30, 140, 0.15);
    --shadow-glow: 0 0 40px rgba(233, 30, 140, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--ff-body);
    background: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.6;
    min-height: 100vh;
}

a {
    color: var(--clr-accent-light);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--clr-accent);
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--ff-display);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

/* Layout */
.wrapper {
    width: min(92%, 1200px);
    margin-inline: auto;
}

/* Site Header */
.site-hdr {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 1rem 0;
    background: linear-gradient(to bottom, var(--clr-bg) 60%, transparent);
}

.site-hdr .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-link svg {
    height: 48px;
    width: auto;
}

.logo-txt {
    font-family: var(--ff-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--clr-text);
    letter-spacing: -0.03em;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 0.25rem;
    list-style: none;
}

.nav-list a {
    display: block;
    padding: 0.6rem 1.1rem;
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
    color: var(--clr-text);
    background: var(--clr-surface);
}

/* Mobile menu */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--clr-text);
    margin: 5px 0;
    border-radius: 2px;
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        inset: 0;
        background: var(--clr-bg);
        flex-direction: column;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .main-nav.is-open {
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .nav-list a {
        font-size: 1.5rem;
        padding: 1rem 2rem;
    }
}

/* Hero */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, var(--clr-highlight) 0%, transparent 60%);
    opacity: 0.15;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-label {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--clr-surface);
    color: var(--clr-accent-light);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.hero-title span {
    color: var(--clr-accent);
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--clr-text-muted);
    max-width: 520px;
    margin-bottom: 2rem;
}

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

.hero-visual {
    position: relative;
}

.hero-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-glow);
}

.hero-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid var(--clr-accent);
    border-radius: var(--radius-lg);
    opacity: 0.5;
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-desc {
        margin-inline: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-visual {
        max-width: 500px;
        margin-inline: auto;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.75rem;
    font-family: var(--ff-body);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--clr-accent);
    color: #fff;
}

.btn-primary:hover {
    background: var(--clr-accent-light);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.btn-ghost {
    background: transparent;
    color: var(--clr-text);
    border: 2px solid var(--clr-text-muted);
}

.btn-ghost:hover {
    border-color: var(--clr-accent);
    color: var(--clr-accent-light);
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin-inline: auto;
    margin-bottom: 3rem;
}

.section-header p {
    color: var(--clr-text-muted);
    margin-top: 1rem;
}

/* About preview */
.about-preview {
    background: var(--clr-surface);
    border-radius: var(--radius-lg);
    padding: 3rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
}

.about-img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.about-text h2 {
    margin-bottom: 1rem;
}

.about-text p {
    color: var(--clr-text-muted);
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .about-preview {
        padding: 2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
}

/* Feature cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: var(--clr-surface);
    border-radius: var(--radius-md);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--clr-accent), var(--clr-highlight));
    border-radius: var(--radius-sm);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

.feature-card h3 {
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}

/* Shows section */
.shows-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.show-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    background: var(--clr-surface);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-md);
    transition: background 0.2s ease;
}

.show-item:hover {
    background: #3a1f45;
}

.show-date {
    text-align: center;
    min-width: 80px;
}

.show-date .day {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--clr-accent);
    line-height: 1;
}

.show-date .month {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
}

.show-info h3 {
    margin-bottom: 0.25rem;
}

.show-info p {
    color: var(--clr-text-muted);
    font-size: 0.9rem;
}

@media (max-width: 600px) {
    .show-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
}

/* Footer */
.site-ftr {
    background: var(--clr-surface);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.ftr-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
}

.ftr-brand p {
    color: var(--clr-text-muted);
    margin-top: 1rem;
    max-width: 300px;
}

.ftr-col h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--clr-text);
}

.ftr-links {
    list-style: none;
}

.ftr-links li {
    margin-bottom: 0.5rem;
}

.ftr-links a {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}

.ftr-links a:hover {
    color: var(--clr-accent-light);
}

.ftr-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.ftr-bottom .disclaimer {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    opacity: 0.7;
    max-width: 600px;
    line-height: 1.5;
}

.ftr-bottom p {
    color: var(--clr-text-muted);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .ftr-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .ftr-brand p {
        margin-inline: auto;
    }
    
    .ftr-bottom {
        justify-content: center;
        text-align: center;
    }
}

/* Cookie notice */
.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--clr-surface);
    padding: 1.25rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    z-index: 9999;
    display: none;
}

.cookie-bar.is-visible {
    display: block;
}

.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-inner p {
    flex: 1;
    min-width: 280px;
    font-size: 0.9rem;
    color: var(--clr-text-muted);
}

.cookie-btns {
    display: flex;
    gap: 0.75rem;
}

.cookie-btns button {
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 500;
    border: none;
}

.cookie-accept {
    background: var(--clr-accent);
    color: #fff;
}

.cookie-decline {
    background: transparent;
    color: var(--clr-text-muted);
    border: 1px solid var(--clr-text-muted);
}

/* Page content */
.page-main {
    padding-top: 120px;
    min-height: 70vh;
}

.page-header {
    padding: 2rem 0 3rem;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 1rem;
}

.page-header p {
    color: var(--clr-text-muted);
    max-width: 600px;
    margin-inline: auto;
}

/* Content blocks */
.content-block {
    background: var(--clr-surface);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.content-block h2 {
    margin-bottom: 1.25rem;
}

.content-block p + p {
    margin-top: 1rem;
}

/* Extras grid */
.extras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.extra-item {
    background: var(--clr-surface);
    border-radius: var(--radius-md);
    padding: 2rem;
    text-align: center;
    transition: transform 0.2s ease;
}

.extra-item:hover {
    transform: scale(1.03);
}

.extra-item svg {
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
    fill: var(--clr-accent);
}

.extra-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.extra-item p {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
}

/* Blogroll */
.blogroll {
    display: grid;
    gap: 2rem;
}

.blogroll-item {
    background: var(--clr-bg);
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-border);
}

.blogroll-date {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--clr-accent);
    margin-bottom: 0.5rem;
}

.blogroll-item h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blogroll-item h3 a {
    color: var(--clr-text);
    text-decoration: none;
    transition: color 0.2s ease;
}

.blogroll-item h3 a:hover {
    color: var(--clr-accent);
}

.blogroll-item p {
    color: var(--clr-text-muted);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.blogroll-item p a {
    color: var(--clr-accent-light);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.blogroll-item p a:hover {
    color: var(--clr-accent);
}

.blogroll-more {
    display: inline-block;
    font-weight: 500;
    color: var(--clr-accent);
    text-decoration: none;
    margin-top: 0.5rem;
}

.blogroll-more:hover {
    text-decoration: underline;
}

/* Utility */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}
