/* ============================================
   Street Coffee Bar - Design System Styles
   ============================================ */

/* CSS Variables - Design System Colors */
:root {
    --porcelain-blue: #c9dce8;
    --warm-cream: #F4EBD9;
    --brutal-black: #000000;
    --burnt-umber: #5C2E1F;
    --sage-green: #9BAA8E;
    --olive-brown: #6B5D4F;
    --sand: #E8D5B7;
    --deep-terra-cotta: #6B3E32;

    /* Neo-Brutalism Accent Colors */
    --neo-accent: #FF6B6B;
    --neo-yellow: #FFD93D;
}

/* ============================================
   Reset & Base Styles
   ============================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'IBM Plex Mono', monospace;
    background-color: var(--warm-cream);
    color: var(--brutal-black);
    line-height: 1.5;
    font-size: 16px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    /* Neo-Brutalism: Subtle halftone texture */
    background-image: radial-gradient(var(--brutal-black) 1px, transparent 1px);
    background-size: 24px 24px;
    background-attachment: fixed;
}

/* ============================================
   Typography - Design System
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

p {
    font-weight: 700;
    line-height: 1.5;
    font-size: 16px;
}

/* Display/Headlines */
.hero-title-main,
.newsletter-heading,
.section-heading {
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

/* Body Text */
.hero-description,
.newsletter-description,
.section-description {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 700;
    line-height: 1.5;
}

/* Monospace/Technical */
.form-label,
.copyright,
.placeholder-text {
    font-family: 'IBM Plex Mono', monospace;
}

/* ============================================
   Container & Layout
   ============================================ */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

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

@media (min-width: 1024px) {
    .container {
        padding: 0 36px;
    }
}

/* ============================================
   Header Section
   ============================================ */

.header {
    background-color: var(--brutal-black);
    border-bottom: 4px solid var(--brutal-black);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Neo-Brutalism: Nav link with hover background + shadow */
.contact-button {
    color: white;
    font-weight: 900;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    letter-spacing: -0.02em;
    padding: 8px 16px;
    border: 2px solid transparent;
    transition: all 0.1s ease-out;
}

.contact-button:hover {
    background-color: var(--neo-accent);
    border: 2px solid var(--brutal-black);
    box-shadow: 4px 4px 0px 0px var(--brutal-black);
    color: var(--brutal-black);
}

.contact-button:active {
    transform: translate(2px, 2px);
    box-shadow: none;
}

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

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

.logo-image {
    height: 36px;
    width: auto;
    max-width: 200px;
    display: block;
}

@media (min-width: 768px) {
    .logo-image {
        height: 48px;
        max-width: 280px;
    }
}

@media (min-width: 1024px) {
    .logo-image {
        height: 60px;
        max-width: 350px;
    }
}

/* Hamburger Button */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 200;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 3px;
    background-color: white;
    transition: all 0.2s ease-out;
}

/* Hamburger X state */
.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Header Navigation */
.header-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--brutal-black);
    border-top: 4px solid var(--neo-yellow);
    padding: 16px;
    gap: 4px;
}

.header-nav.open {
    display: flex;
}

.header-nav .contact-button {
    width: 100%;
    text-align: left;
    padding: 12px 16px;
}

/* Desktop: show nav, hide hamburger */
@media (min-width: 768px) {
    .hamburger {
        display: none;
    }

    .header-nav {
        display: flex;
        flex-direction: row;
        position: static;
        border-top: none;
        padding: 0;
        gap: 12px;
    }

    .header-nav .contact-button {
        width: auto;
        text-align: center;
        padding: 8px 16px;
    }

    .contact-button {
        font-size: 15px;
    }
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    background-color: var(--warm-cream);
    padding: 0 0 100px 0;
    position: relative;
    overflow: hidden;
}

/* Neo-Brutalism: Halftone dots overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(var(--brutal-black) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-left {
    text-align: center;
    width: 100%;
    padding: 32px 0;
}

.hero-right {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background-color: var(--warm-cream);
    position: relative;
    /* Neo-Brutalism: Sharp corners, thick border, hard shadow */
    border: 4px solid var(--brutal-black);
    box-shadow: 12px 12px 0px 0px var(--brutal-black);
    transition: all 0.2s ease-out;
}

/* Neo-Brutalism: Lift effect on hover */
.hero-image-container:hover {
    transform: translate(-4px, -4px);
    box-shadow: 16px 16px 0px 0px var(--brutal-black);
}

.hero-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.hero-title {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo {
    height: 80px;
    width: auto;
    max-width: 400px;
    display: block;
}

@media (min-width: 768px) {
    .hero {
        padding: 120px 0;
    }

    .hero-content {
        flex-direction: row;
        align-items: center;
        gap: 64px;
    }
    
    .hero-left {
        flex: 1;
        text-align: left;
        padding: 48px 0;
    }
    
    .hero-right {
        flex: 1;
    }
    
    .hero-image-container {
        max-width: 100%;
    }
    
    .hero-logo {
        height: 120px;
        max-width: 600px;
        margin-left: 0;
    }
}

/* Hero Headline - Apple-style minimal */
.hero-headline {
    font-weight: 900;
    font-size: 32px;
    color: var(--brutal-black);
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .hero-headline {
        font-size: 40px;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding: 96px 0;
    }

    .hero-content {
        gap: 80px;
    }

    .hero-left {
        padding: 64px 0;
    }

    .hero-headline {
        font-size: 48px;
    }
}

.hero-subtitle {
    font-weight: 900;
    font-size: 14px;
    color: white;
    margin-bottom: 32px;
    text-transform: uppercase;
    /* Neo-Brutalism: Sticker effect with black box */
    display: inline-block;
    background-color: var(--brutal-black);
    padding: 10px 16px;
    transform: rotate(-1deg);
    letter-spacing: 0.02em;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 16px;
        padding: 12px 20px;
    }
}

@media (min-width: 1024px) {
    .hero-subtitle {
        font-size: 18px;
    }
}

.hero-description {
    font-weight: 700;
    font-size: 16px;
    color: var(--brutal-black);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 16px;
        margin: 0;
        max-width: none;
    }
}

/* ============================================
   Overview Section
   ============================================ */

.overview-section {
    padding: 80px 0;
    background-color: var(--porcelain-blue);
    position: relative;
    /* Neo-Brutalism: Thick black separator from hero */
    border-top: 8px solid var(--brutal-black);
}

.overview-heading {
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 48px;
    color: var(--brutal-black);
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .overview-heading {
        font-size: 40px;
    }
}

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

@media (min-width: 768px) {
    .overview-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}

.overview-card {
    background-color: white;
    border: 4px solid var(--brutal-black);
    padding: 32px 24px;
    position: relative;
    /* Neo-Brutalism: Hard shadow */
    box-shadow: 6px 6px 0px 0px var(--brutal-black);
    transition: all 0.2s ease-out;
}

/* Neo-Brutalism: Lift effect on hover */
.overview-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px 0px 0px var(--brutal-black);
}

.overview-number {
    font-weight: 900;
    font-size: 12px;
    color: white;
    background-color: var(--brutal-black);
    padding: 4px 10px;
    position: absolute;
    top: -2px;
    left: -2px;
    letter-spacing: 0.05em;
}

.overview-card:nth-child(1) .overview-number {
    background-color: var(--neo-accent);
    color: var(--brutal-black);
}

.overview-card:nth-child(2) .overview-number {
    background-color: var(--neo-yellow);
    color: var(--brutal-black);
}

.overview-card:nth-child(3) .overview-number {
    background-color: var(--burnt-umber);
    color: white;
}

.overview-title {
    font-weight: 900;
    font-size: 20px;
    text-transform: uppercase;
    color: var(--brutal-black);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    margin-top: 16px;
}

.overview-text {
    font-weight: 500;
    font-size: 14px;
    color: var(--brutal-black);
    line-height: 1.6;
    margin: 0;
}

@media (min-width: 768px) {
    .overview-section {
        padding: 96px 0;
    }

    .overview-title {
        font-size: 22px;
    }

    .overview-text {
        font-size: 15px;
    }
}

@media (min-width: 1024px) {
    .overview-section {
        padding: 96px 0;
    }

    .overview-heading {
        font-size: 44px;
    }
}

/* ============================================
   Events Marquee Section
   ============================================ */

.events-marquee-section {
    background-color: var(--brutal-black);
    overflow: hidden;
    /* Neo-Brutalism: Yellow accent borders */
    border-top: 4px solid var(--neo-yellow);
    border-bottom: 4px solid var(--neo-yellow);
    padding: 8px 0;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    white-space: nowrap;
    animation: marquee-scroll 170s linear infinite;
    will-change: transform;
}

.marquee-item {
    font-weight: 900;
    font-size: 12px;
    text-transform: uppercase;
    color: white;
    letter-spacing: -0.02em;
    flex-shrink: 0;
}

.marquee-separator {
    font-weight: 900;
    font-size: 12px;
    color: var(--neo-yellow);
    flex-shrink: 0;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (min-width: 768px) {
    .marquee-item,
    .marquee-separator {
        font-size: 16px;
    }

    .marquee-content {
        gap: 20px;
    }
}

@media (min-width: 1024px) {
    .marquee-item,
    .marquee-separator {
        font-size: 20px;
    }

    .marquee-content {
        gap: 24px;
    }
}

/* Pause animation on hover for better UX */
.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

/* ============================================
   Services Section
   ============================================ */

.services-section {
    background-color: var(--warm-cream);
    padding: 48px 0;
}

.services-section-heading {
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 48px;
    color: var(--brutal-black);
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .services-section-heading {
        font-size: 40px;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }
}

.service-card {
    background-color: white;
    border: 4px solid var(--brutal-black);
    padding: 24px;
    display: flex;
    flex-direction: column;
    /* Neo-Brutalism: Hard shadow */
    box-shadow: 8px 8px 0px 0px var(--brutal-black);
    transition: all 0.2s ease-out;
    position: relative;
}

/* Neo-Brutalism: Lift effect on hover */
.service-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0px 0px var(--brutal-black);
}

/* Neo-Brutalism: Decorative badge */
.service-card::before {
    content: '';
    position: absolute;
    top: -12px;
    right: 24px;
    width: 24px;
    height: 24px;
    background-color: var(--neo-accent);
    border: 3px solid var(--brutal-black);
    transform: rotate(12deg);
}

.service-card:nth-child(2)::before {
    background-color: var(--neo-yellow);
    transform: rotate(-8deg);
}

.service-title {
    font-weight: 900;
    font-size: 24px;
    text-transform: uppercase;
    color: var(--brutal-black);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .service-title {
        font-size: 32px;
    }
}

.service-subtitle {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--brutal-black);
    letter-spacing: 0.1em;
    margin: 0 0 24px 0;
    /* Neo-Brutalism: Highlighted label */
    background-color: var(--sand);
    padding: 8px 12px;
    border: 2px solid var(--brutal-black);
    display: inline-block;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-features li {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 700;
    font-size: 14px;
    color: var(--brutal-black);
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
}

.service-features li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--burnt-umber);
    font-weight: 900;
}

.service-specs {
    margin-top: auto;
    padding-top: 16px;
    border-top: 4px solid var(--brutal-black);
}

.service-spec {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 700;
    font-size: 12px;
    color: var(--brutal-black);
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-spec:last-child {
    margin-bottom: 0;
}

.services-cta {
    text-align: center;
    margin-top: 48px;
}

.services-contact-button {
    background-color: var(--neo-accent);
    color: var(--brutal-black);
    padding: 18px 40px;
    border: 4px solid var(--brutal-black);
    font-weight: 900;
    font-size: 18px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    letter-spacing: -0.02em;
    /* Neo-Brutalism: Hard shadow */
    box-shadow: 8px 8px 0px 0px var(--brutal-black);
    transition: all 0.1s ease-out;
}

.services-contact-button:hover {
    background-color: var(--neo-yellow);
}

/* Neo-Brutalism: Push effect */
.services-contact-button:active {
    transform: translate(4px, 4px);
    box-shadow: 4px 4px 0px 0px var(--brutal-black);
}

@media (min-width: 768px) {
    .services-contact-button {
        padding: 18px 40px;
        font-size: 18px;
    }
}

/* ============================================
   Newsletter & SoundCloud Section
   ============================================ */

.newsletter-soundcloud-section {
    padding: 32px 0;
    background-color: var(--warm-cream);
    border-top: 8px solid var(--brutal-black);
}

.newsletter-soundcloud-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
}

@media (min-width: 1024px) {
    .newsletter-soundcloud-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        align-items: start;
    }
}

.newsletter-column {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
}

.newsletter-container {
    background-color: var(--burnt-umber);
    border: 4px solid var(--brutal-black);
    padding: 32px 24px;
    width: 100%;
    max-width: 500px;
    /* Neo-Brutalism: Hard shadow and sticker rotation */
    box-shadow: 8px 8px 0px 0px var(--brutal-black);
    transform: rotate(-1deg);
}

@media (min-width: 768px) {
    .newsletter-container {
        padding: 28px 24px;
    }
}

.soundcloud-column {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.soundcloud-container {
    width: 100%;
    max-width: 500px;
    align-self: flex-start;
}

.newsletter-heading {
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 12px;
    color: white;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .newsletter-heading {
        font-size: 28px;
    }
}

.newsletter-description {
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    margin-bottom: 24px;
    color: white;
    line-height: 1.6;
}

.newsletter-form-square {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

/* ============================================
   Form Styles - Design System
   ============================================ */

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--brutal-black);
}

.form-input {
    width: 100%;
    padding: 16px 24px;
    border: 4px solid var(--brutal-black);
    border-radius: 9999px; /* rounded-full */
    font-weight: 700;
    font-size: 16px;
    background-color: white;
    color: var(--brutal-black);
    transition: all 0.2s ease;
    min-height: 48px; /* Touch-friendly */
}

.form-input:focus {
    outline: none;
    background-color: var(--warm-cream);
}

.form-input::placeholder {
    color: #666;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
}

.error-message {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: var(--burnt-umber);
    font-weight: 700;
    display: none;
}

.error-message.show {
    display: block;
}

.form-input.error {
    border-color: var(--burnt-umber);
}

/* ============================================
   Button Styles - Design System
   ============================================ */

.outline-button {
    background-color: white;
    color: var(--brutal-black);
    padding: 16px 32px;
    border: 4px solid var(--brutal-black);
    font-weight: 900;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 8px;
    display: inline-block;
    /* Neo-Brutalism: Hard shadow */
    box-shadow: 6px 6px 0px 0px var(--brutal-black);
    transition: all 0.1s ease-out;
}

@media (min-width: 768px) {
    .hero .outline-button {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: fit-content;
    }
}

.outline-button:hover {
    background-color: var(--neo-yellow);
}

/* Neo-Brutalism: Push effect */
.outline-button:active {
    transform: translate(3px, 3px);
    box-shadow: 3px 3px 0px 0px var(--brutal-black);
}

.submit-button {
    width: 100%;
    padding: 16px 32px;
    background-color: var(--burnt-umber);
    color: white;
    border: 4px solid var(--brutal-black);
    border-radius: 9999px; /* rounded-full */
    font-weight: 900;
    font-size: 18px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 56px; /* Touch-friendly */
    display: flex;
    align-items: center;
    justify-content: center;
}

.submit-button:hover {
    background-color: var(--deep-terra-cotta);
    transform: translateY(-2px);
}

.submit-button:active {
    transform: translateY(0);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.button-loader {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 14px;
}

/* Success Message */
.success-message {
    margin-top: 24px;
    padding: 16px;
    background-color: var(--porcelain-blue);
    border: 4px solid var(--brutal-black);
    border-radius: 8px;
    text-align: center;
}

.success-message p {
    font-weight: 700;
    color: white;
    font-size: 16px;
}

/* ============================================
   About Section
   ============================================ */

.about-section {
    padding: 80px 0;
    background-color: var(--brutal-black);
    color: white;
    border-top: 8px solid var(--brutal-black);
    border-bottom: 8px solid var(--brutal-black);
    position: relative;
    overflow: hidden;
}

/* Neo-Brutalism: Decorative background text */
.about-section::after {
    content: 'COFFEE';
    position: absolute;
    bottom: -40px;
    right: -20px;
    font-size: 200px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    letter-spacing: -0.05em;
    pointer-events: none;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.about-left {
    display: flex;
    flex-direction: column;
}

.about-heading {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    line-height: 1;
}

@media (min-width: 1024px) {
    .about-heading {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.2em;
    }
}

.about-heading-line {
    font-size: 48px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: white;
    display: block;
    line-height: 1.1;
}

.about-heading-line:first-child {
    white-space: nowrap;
}

.about-heading-accent {
    color: var(--neo-yellow);
    display: inline-block;
    /* Neo-Brutalism: Sticker rotation */
    transform: rotate(-2deg);
}

@media (min-width: 768px) {
    .about-heading-line {
        font-size: 64px;
    }
}

@media (min-width: 1024px) {
    .about-heading-line {
        font-size: 80px;
    }
}

.about-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-text {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.6;
    color: white;
    margin: 0;
}

.about-text-accent {
    color: var(--neo-yellow);
    font-weight: 900;
}

@media (min-width: 768px) {
    .about-text {
        font-size: 18px;
    }
}

/* ============================================
   About Page - Minimal Layout
   ============================================ */

.about-page {
    background-color: var(--warm-cream);
    padding: 80px 0;
}

.about-page-heading-wrapper {
    max-width: 900px;
    margin: 0 auto 48px;
    text-align: center;
}

.about-page-tag {
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brutal-black);
    margin-bottom: 16px;
    display: block;
}

.about-page-heading {
    font-size: 48px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: var(--brutal-black);
    line-height: 1.05;
    margin-bottom: 16px;
}

.about-page-heading-accent {
    position: relative;
    display: inline;
}

.about-page-heading-accent::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: -4px;
    right: -4px;
    height: 16px;
    background-color: var(--neo-yellow);
    z-index: -1;
    transform: rotate(-1deg);
}

.about-page-rule {
    width: 80px;
    height: 6px;
    background-color: var(--brutal-black);
    max-width: 900px;
    margin: 0 auto 48px;
}

.about-card {
    background-color: white;
    border: 4px solid var(--brutal-black);
    box-shadow: 8px 8px 0 0 var(--brutal-black);
    padding: 48px 32px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.about-card-label {
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: white;
    background: var(--brutal-black);
    display: inline-block;
    padding: 6px 14px;
    position: absolute;
    top: -2px;
    left: -2px;
}

.about-card-text {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.7;
    color: var(--brutal-black);
    margin: 0 0 24px;
}

.about-card-text:last-child {
    margin-bottom: 0;
}

.about-card-text-accent {
    color: var(--neo-accent);
    font-weight: 900;
}

.about-card-drop-cap::first-letter {
    font-size: 56px;
    font-weight: 900;
    float: left;
    line-height: 0.8;
    margin-right: 12px;
    margin-top: 6px;
    color: var(--brutal-black);
}

.about-card-pull-quote {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 22px;
    font-weight: 900;
    color: var(--brutal-black);
    border-left: 6px solid var(--neo-yellow);
    padding: 8px 0 8px 24px;
    margin: 36px 0;
    line-height: 1.3;
}

.about-card-divider {
    width: 60px;
    height: 4px;
    background-color: var(--neo-yellow);
    margin: 32px 0;
}

@media (min-width: 768px) {
    .about-page { padding: 120px 0; }
    .about-page-heading { font-size: 72px; }
    .about-card { padding: 64px 56px; }
    .about-card-text { font-size: 18px; }
    .about-card-pull-quote { font-size: 26px; }
}

@media (min-width: 1024px) {
    .about-page-heading { font-size: 80px; }
}

/* ============================================
   Booking Page
   ============================================ */

.booking-page {
    background-color: var(--warm-cream);
    padding: 80px 0;
}

.booking-heading-wrapper {
    max-width: 900px;
    margin: 0 auto 48px;
    text-align: center;
}

.booking-tag {
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brutal-black);
    margin-bottom: 16px;
    display: block;
}

.booking-heading {
    font-size: 48px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: var(--brutal-black);
    line-height: 1.05;
    margin-bottom: 20px;
}

.booking-heading-accent {
    position: relative;
    display: inline;
}

.booking-heading-accent::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: -4px;
    right: -4px;
    height: 16px;
    background-color: var(--neo-yellow);
    z-index: -1;
    transform: rotate(-1deg);
}

.booking-subtitle {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.6;
    color: var(--brutal-black);
    max-width: 500px;
    margin: 0 auto;
}

.booking-rule {
    width: 80px;
    height: 6px;
    background-color: var(--brutal-black);
    max-width: 900px;
    margin: 0 auto 48px;
}

.booking-form-card {
    background-color: white;
    border: 4px solid var(--brutal-black);
    box-shadow: 8px 8px 0 0 var(--brutal-black);
    padding: 36px 20px;
    max-width: 720px;
    margin: 0 auto;
    position: relative;
}

.booking-card-label {
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: white;
    background: var(--brutal-black);
    display: inline-block;
    padding: 6px 14px;
    position: absolute;
    top: -2px;
    left: -2px;
}

.booking-form-container {
    margin-top: 16px;
}

@media (min-width: 768px) {
    .booking-page { padding: 120px 0; }
    .booking-heading { font-size: 72px; }
    .booking-subtitle { font-size: 16px; }
    .booking-form-card { padding: 44px 40px; }
}

@media (min-width: 1024px) {
    .booking-heading { font-size: 80px; }
}

/* ============================================
   FAQ Section
   ============================================ */

.faq-section {
    padding: 80px 0;
    background-color: var(--brutal-black);
    color: white;
    border-top: 8px solid var(--brutal-black);
    border-bottom: 8px solid var(--brutal-black);
    position: relative;
    overflow: hidden;
}

/* Neo-Brutalism: Decorative background text */
.faq-section::after {
    content: 'FAQ';
    position: absolute;
    bottom: -40px;
    right: -20px;
    font-size: 200px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    letter-spacing: -0.05em;
    pointer-events: none;
}

.faq-header {
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.faq-heading {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    line-height: 1;
}

.faq-heading-line {
    font-size: 48px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: white;
    display: block;
    line-height: 1.1;
}

.faq-heading-accent {
    color: var(--neo-yellow);
    display: inline-block;
    transform: rotate(-2deg);
}

@media (min-width: 768px) {
    .faq-section { padding: 96px 0; }
    .faq-heading-line { font-size: 64px; }
    .faq-header { margin-bottom: 56px; }
}

@media (min-width: 1024px) {
    .faq-section { padding: 120px 0; }
    .faq-heading {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.2em;
    }
    .faq-heading-line { font-size: 80px; }
}

/* FAQ Items */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.faq-item {
    background-color: transparent;
    border: 4px solid white;
    box-shadow: 6px 6px 0px 0px var(--neo-yellow);
    transition: all 0.15s ease-out;
}

.faq-item:hover {
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px 0px 0px var(--neo-yellow);
}

.faq-item[open] {
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 6px 6px 0px 0px var(--neo-accent);
}

.faq-item[open]:hover {
    box-shadow: 9px 9px 0px 0px var(--neo-accent);
}

.faq-question {
    padding: 24px 28px;
    cursor: pointer;
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 900;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: white;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    user-select: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    font-weight: 900;
    color: var(--neo-yellow);
    flex-shrink: 0;
    transition: transform 0.15s ease-out;
}

.faq-item[open] .faq-question::after {
    content: '\2212';
    color: var(--neo-accent);
    transform: rotate(180deg);
}

.faq-answer {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    border-top: 2px solid rgba(255, 255, 255, 0.15);
    margin: 0 28px;
    padding: 20px 0 24px;
}

.faq-answer-accent {
    color: var(--neo-yellow);
    font-weight: 700;
}

@media (min-width: 768px) {
    .faq-question { font-size: 18px; padding: 28px 32px; }
    .faq-answer { font-size: 16px; margin: 0 32px; }
}

/* ============================================
   SoundCloud Section
   ============================================ */

.newsletter-soundcloud-section .section-heading {
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 12px;
    color: var(--brutal-black);
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .newsletter-soundcloud-section .section-heading {
        font-size: 28px;
    }
}

.newsletter-soundcloud-section .section-description {
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    margin-bottom: 16px;
    color: var(--brutal-black);
}

.soundcloud-placeholder {
    border-radius: 8px;
    padding: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-text {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 700;
    font-size: 16px;
    color: white;
    text-transform: uppercase;
}

.soundcloud-container iframe {
    width: 100%;
    border: 4px solid var(--brutal-black);
    height: 300px;
    /* Neo-Brutalism: Hard shadow */
    box-shadow: 6px 6px 0px 0px var(--brutal-black);
}

@media (min-width: 768px) {
    .soundcloud-container iframe {
        height: 350px;
    }
}

/* ============================================
   Footer Section
   ============================================ */

.footer {
    background-color: var(--brutal-black);
    color: white;
    padding: 16px 0;
    /* Neo-Brutalism: Yellow accent border */
    border-top: 4px solid var(--neo-yellow);
    margin-top: auto;
}

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

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

.copyright {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 14px;
    font-weight: 700;
    margin: 0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.social-link {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 14px;
    font-weight: 900;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    padding: 4px 8px;
    border: 2px solid transparent;
    transition: all 0.1s ease-out;
}

.social-link:hover {
    border-color: var(--neo-yellow);
    background-color: var(--neo-yellow);
    color: var(--brutal-black);
}

/* ============================================
   Responsive Breakpoints
   ============================================ */

/* Mobile: < 768px (default styles above) */

/* Tablet: 768px - 1024px */
@media (min-width: 768px) {
    .hero {
        padding: 80px 0;
    }
    
    .newsletter-soundcloud-section {
        padding: 64px 0;
    }
}

/* Desktop: > 1024px */
@media (min-width: 1024px) {
    .hero {
        padding: 36px 0;
    }
    
    .newsletter-soundcloud-section {
        padding: 36px 0;
    }
}

/* ============================================
   Accessibility
   ============================================ */

/* Focus styles for keyboard navigation */
*:focus-visible {
    outline: 3px solid var(--porcelain-blue);
    outline-offset: 2px;
}

/* Skip to main content link (hidden by default, visible on focus) */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--brutal-black);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 1000;
}

.skip-link:focus {
    top: 0;
}

/* Screen reader only text */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

