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

:root {
    --red: #8B0000;
    --red-bright: #C41E3A;
    --red-glow: #FF2D55;
    --black: #0A0A0A;
    --dark: #111111;
    --dark-card: #1A1A1A;
    --cream: #F5F0E8;
    --gold: #C9A84C;
    --text: #E0E0E0;
    --text-muted: #999;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--black);
    color: var(--text);
    overflow-x: hidden;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(196, 30, 58, 0.2);
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--cream);
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-logo span {
    color: var(--red-bright);
}

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

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--red-bright);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--cream);
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    background: linear-gradient(
        180deg,
        #0A0A0A 0%,
        #2a0e0e 15%,
        #4a1818 30%,
        #6b2020 45%,
        #7a2525 55%,
        #6b2020 65%,
        #4a1818 78%,
        #2a0e0e 90%,
        #0A0A0A 100%
    );
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(transparent, var(--black));
}

.hero-logo {
    width: 400px;
    max-width: 80vw;
    margin-bottom: 1.5rem;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.4) 40%, transparent 70%);
    padding: 3.5rem;
}

.hero-tagline {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--text-muted);
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}

.hero-cta {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--red-bright);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s;
    border: 2px solid var(--red-bright);
    position: relative;
    z-index: 1;
}

.hero-cta:hover {
    background: transparent;
    color: var(--red-bright);
}

/* PAGE HEADER (non-home pages) */
.page-header {
    padding: 8rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(180deg, #1a0a0a 0%, var(--black) 100%);
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header h1 span {
    color: var(--red-bright);
}

.page-header p {
    color: var(--text-muted);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* SECTIONS */
section {
    padding: 6rem 2rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-title span {
    color: var(--red-bright);
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 4rem;
    font-weight: 300;
    line-height: 1.8;
}

/* ABOUT / MEET US */
.about-photo-wrapper {
    max-width: 600px;
    margin: 0 auto 3rem;
    overflow: hidden;
    border: 1px solid rgba(196, 30, 58, 0.3);
}

.about-photo {
    width: 100%;
    display: block;
}

.about-bios {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.bio-card {
    padding: 2.5rem;
    border: 1px solid rgba(196, 30, 58, 0.2);
    background: var(--dark-card);
}

.bio-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--cream);
    margin-bottom: 0.3rem;
}

.bio-role {
    color: var(--red-bright);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.bio-card p {
    line-height: 1.9;
    color: var(--text-muted);
}

/* EVENTS GRID */
.events-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.event-card {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red-bright);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.event-card:hover::before {
    transform: scaleX(1);
}

.event-card:hover {
    border-color: rgba(196, 30, 58, 0.3);
    transform: translateY(-4px);
}

.event-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.event-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--cream);
}

.event-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* UPCOMING */
.upcoming-list {
    max-width: 800px;
    margin: 0 auto;
}

.upcoming-event {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s;
}

.upcoming-event:hover {
    background: rgba(196, 30, 58, 0.05);
}

.upcoming-date {
    text-align: center;
    min-width: 80px;
    flex-shrink: 0;
}

.upcoming-date .day {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--red-bright);
    line-height: 1;
}

.upcoming-date .month {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.upcoming-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--cream);
    margin-bottom: 0.3rem;
}

.upcoming-info .venue {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.upcoming-info .price {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 0.3rem;
}

.upcoming-btn {
    margin-left: auto;
    padding: 0.6rem 1.5rem;
    border: 1px solid var(--red-bright);
    color: var(--red-bright);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    white-space: nowrap;
}

.upcoming-btn:hover {
    background: var(--red-bright);
    color: white;
}

/* CONTACT FORM */
.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.9rem 1rem;
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--red-bright);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.form-submit {
    padding: 1rem 3rem;
    background: var(--red-bright);
    color: white;
    border: 2px solid var(--red-bright);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.form-submit:hover {
    background: transparent;
    color: var(--red-bright);
}

.contact-details {
    margin-top: 3rem;
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-email {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--cream);
    text-decoration: none;
    border-bottom: 2px solid var(--red-bright);
    padding-bottom: 4px;
    transition: color 0.3s;
}

.contact-email:hover {
    color: var(--red-bright);
}

.contact-socials {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.contact-socials a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.contact-socials a:hover {
    color: var(--red-bright);
}

/* HOME TEASER SECTIONS */
.home-section {
    padding: 5rem 2rem;
    text-align: center;
}

.home-section.alt {
    background: var(--dark);
}

.home-section .section-cta {
    display: inline-block;
    margin-top: 2.5rem;
    padding: 0.8rem 2.5rem;
    border: 1px solid var(--red-bright);
    color: var(--red-bright);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.home-section .section-cta:hover {
    background: var(--red-bright);
    color: white;
}

/* FOOTER */
footer {
    padding: 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.85rem;
}

footer a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: var(--red-bright);
}

/* MOBILE */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.97);
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid rgba(196, 30, 58, 0.2);
    }

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

    .nav-toggle {
        display: flex;
    }

    .about-bios {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .upcoming-event {
        flex-wrap: wrap;
    }

    .upcoming-btn {
        margin-left: 0;
        width: 100%;
        text-align: center;
        margin-top: 0.5rem;
    }

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