/* OFF GRID - Los Angeles Art Collective
   Brutalist Design System
   Pure black and white, no gradients, no border-radius
*/

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #FFFFFF;
    color: #000000;
    line-height: 1.5;
    min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.1;
}

a {
    color: #000000;
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
}

/* Layout */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero: Flyer Image */
.hero {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background: #FFFFFF;
}

.hero img {
    width: 100%;
    height: auto;
    display: block;
}

/* Navigation */
.nav-back {
    display: inline-block;
    padding: 10px 0;
    font-size: 0.875rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    border-bottom: 2px solid #000000;
}

.nav-back:hover {
    background-color: #000000;
    color: #FFFFFF;
    padding-left: 10px;
    padding-right: 10px;
}

/* Top Bar (for press release and RSVP pages) */
.top-bar {
    padding: 20px;
    border-bottom: 3px solid #000000;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.top-bar .nav-back {
    border-bottom: none;
}

/* Event Details Card */
.event-card {
    border: 3px solid #000000;
    padding: 30px;
    margin: 40px auto;
    max-width: 800px;
}

.event-card h2 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #000000;
}

.event-detail {
    margin-bottom: 15px;
}

.event-detail-label {
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
    display: block;
    margin-bottom: 5px;
}

.event-detail-value {
    font-size: 1rem;
}

/* Buttons */
.btn-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
}

.btn {
    display: block;
    width: 100%;
    padding: 18px 20px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    text-decoration: none;
    border: 3px solid #000000;
    cursor: pointer;
    transition: background-color 0.1s, color 0.1s;
}

.btn-primary {
    background-color: #000000;
    color: #FFFFFF;
}

.btn-primary:hover {
    background-color: #333333;
}

.btn-secondary {
    background-color: #FFFFFF;
    color: #000000;
}

.btn-secondary:hover {
    background-color: #000000;
    color: #FFFFFF;
}

.btn-inline {
    display: inline-block;
    width: auto;
    padding: 14px 24px;
}

/* CTA Section */
.cta-section {
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.cta-section .btn-group {
    margin-top: 0;
}

/* About Section */
.about-section {
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
    border-top: 3px solid #000000;
}

.about-section h2 {
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.about-section p {
    margin-bottom: 20px;
    line-height: 1.7;
}

/* What to Expect Section */
.expect-section {
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
    border-top: 3px solid #000000;
}

.expect-section h2 {
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.expect-section p {
    margin-bottom: 15px;
    line-height: 1.7;
}

/* Artists Section */
.artists-section {
    padding: 40px 20px;
    text-align: center;
    border-top: 3px solid #000000;
    border-bottom: 3px solid #000000;
}

.artists-section h2 {
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.artists-list {
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    line-height: 2;
    margin-bottom: 20px;
}

.artists-projections {
    font-size: 0.875rem;
    font-style: italic;
    letter-spacing: 0.1em;
}

/* Tagline Section */
.tagline-section {
    padding: 40px 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.tagline-text {
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
}

.tagline-quote {
    font-size: 1rem;
    font-style: italic;
    line-height: 1.7;
}

/* Footer */
.site-footer {
    padding: 40px 20px;
    text-align: center;
    border-top: 3px solid #000000;
    margin-top: 40px;
}

.footer-copyright {
    font-size: 0.875rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.footer-email {
    font-size: 0.875rem;
}

/* Press Release Page */
.press-release-content {
    padding: 40px 20px;
    max-width: 720px;
    margin: 0 auto;
}

.press-release-content h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    line-height: 1.2;
}

.press-release-content h2 {
    font-size: 1.25rem;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #000000;
}

.press-release-content h3 {
    font-size: 1rem;
    margin-top: 30px;
    margin-bottom: 10px;
}

.press-release-content p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.press-release-content .event-meta {
    font-weight: bold;
    margin-bottom: 5px;
}

.press-release-content .artist-bio {
    margin-bottom: 25px;
}

.press-release-content .artist-bio strong {
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.press-contact {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #000000;
}

.press-contact p {
    margin-bottom: 5px;
}

.end-marks {
    text-align: center;
    font-size: 1.5rem;
    letter-spacing: 0.5em;
    margin-top: 40px;
}

/* RSVP Page */
.rsvp-header {
    padding: 40px 20px;
    text-align: center;
}

.rsvp-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.rsvp-header p {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.rsvp-form-container {
    border: 3px solid #000000;
    padding: 30px;
    margin: 0 20px 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

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

.form-label {
    display: block;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    font-family: Arial, Helvetica, sans-serif;
    border: 2px solid #000000;
    background-color: #FFFFFF;
    outline: none;
}

.form-input:focus {
    background-color: #f5f5f5;
}

.form-input::placeholder {
    color: #666666;
}

.form-submit {
    width: 100%;
    padding: 18px 20px;
    font-size: 1rem;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background-color: #000000;
    color: #FFFFFF;
    border: 3px solid #000000;
    cursor: pointer;
    transition: background-color 0.1s;
}

.form-submit:hover {
    background-color: #333333;
}

.form-note {
    font-size: 0.75rem;
    color: #666666;
    margin-top: 5px;
}

.rsvp-success {
    text-align: center;
    padding: 40px 20px;
}

.rsvp-success h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.rsvp-back {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 40px;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.hidden {
    display: none;
}

/* Responsive */
@media (max-width: 600px) {
    .top-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .event-card {
        margin: 30px 15px;
        padding: 20px;
    }

    .btn {
        padding: 15px;
        font-size: 0.875rem;
    }

    .cta-section,
    .about-section,
    .expect-section,
    .tagline-section {
        padding: 30px 15px;
    }

    .artists-section {
        padding: 30px 15px;
    }

    .press-release-content {
        padding: 30px 15px;
    }

    .press-release-content h1 {
        font-size: 1.75rem;
    }

    .rsvp-form-container {
        margin: 0 15px 30px;
        padding: 20px;
    }

    .rsvp-header h1 {
        font-size: 2.5rem;
    }
}

/* Print Styles */
@media print {
    .btn-group,
    .nav-back,
    .top-bar {
        display: none;
    }

    body {
        font-size: 12pt;
    }

    .press-release-content {
        max-width: 100%;
    }
}
