/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #D4AF37;
    --dark-gold: #B8941F;
    --black: #000000;
    --white: #FFFFFF;
    --off-white: #F5F5F5;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--black);
    padding: 20px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-link {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--gold);
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-link svg {
    width: 24px;
    height: 24px;
    color: var(--gold);
    transition: color 0.3s ease;
}

.social-link:hover svg {
    color: var(--white);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    padding: 80px 0 0 0;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-right: 40px;
    align-items: flex-end;
    text-align: right;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(40px, 7vw, 72px);
    color: var(--gold);
    letter-spacing: 4px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 2px;
    font-weight: 300;
    margin-bottom: 20px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
}

.btn {
    display: inline-block;
    padding: 15px 50px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-align: center;
}

.btn-outline {
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--black);
}

.about-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--white);
    margin-bottom: 20px;
}

.about-text:first-child {
    font-size: 18px;
    font-weight: 400;
}

.about-link {
    color: var(--gold);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.about-link:hover {
    color: var(--white);
}

.ticket-tbd {
    text-decoration: none;
    opacity: 0.6;
}

/* Projects Section */
.projects-section {
    padding: 80px 0;
    background-color: var(--black);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.projects-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
    max-width: 1200px;
}

.project-item {
    display: block;
    padding: 32px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent;
}

.project-item:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
    transform: translateY(-2px);
}

.project-name {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.project-desc {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
}

.project-item:hover .project-desc {
    color: var(--white);
}

@media (max-width: 768px) {
    .projects-list {
        grid-template-columns: 1fr;
    }
}

/* Shows Section */
.shows-section {
    padding: 80px 0;
    background-color: var(--black);
}

.shows-note {
    text-align: right;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(32px, 5vw, 48px);
    color: var(--gold);
    text-align: right;
    margin-bottom: 60px;
    letter-spacing: 2px;
}

.shows-list {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.show-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 600px;
}

.show-date {
    font-size: 18px;
    color: var(--white);
}

.ticket-link {
    color: var(--gold);
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
    margin-left: auto;
}

.ticket-link:hover {
    color: var(--white);
}

/* Past Shows Section */
.past-shows {
    padding: 80px 0;
    background-color: var(--black);
}

.past-shows-list {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.past-show {
    padding: 10px 0;
    text-align: right;
    color: var(--white);
    font-size: 16px;
}

/* Contact Form Section */
.contact-form-section {
    padding: 100px 0;
    background-color: var(--black);
}

.section-title-alt {
    font-family: 'Cinzel', serif;
    font-size: clamp(36px, 6vw, 56px);
    color: var(--gold);
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.form-description {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
    color: var(--gold);
    font-size: 16px;
    line-height: 1.6;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    color: var(--gold);
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 400;
}

.required {
    color: var(--gold);
    font-weight: 400;
}

.form-input {
    width: 100%;
    padding: 15px;
    background-color: var(--white);
    border: none;
    border-radius: 0;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    color: var(--black);
}

.form-input:focus {
    outline: 2px solid var(--gold);
}

.submit-btn {
    display: block;
    margin: 40px auto 0;
    padding: 15px 60px;
    background: transparent;
    border: 2px solid var(--gold);
    border-radius: 50px;
    color: var(--gold);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: var(--gold);
    color: var(--black);
}

/* Footer */
.footer {
    padding: 80px 0 60px;
    background-color: var(--black);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-title {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.footer-email {
    font-size: 16px;
    color: var(--white);
    margin-bottom: 30px;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-link svg {
    width: 24px;
    height: 24px;
    color: var(--white);
    transition: color 0.3s ease;
}

.footer-link:hover svg {
    color: var(--gold);
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    nav {
        padding: 0 20px;
    }

    .logo {
        font-size: 20px;
    }

    .hero-content {
        padding: 20px;
        justify-content: flex-end;
    }

    .hero-text {
        padding-right: 20px;
    }

    .hero-title {
        font-size: 36px;
    }

    .about-text {
        font-size: 16px;
    }

    .about-text:first-child {
        font-size: 18px;
    }

    .section-title {
        font-size: 28px;
        text-align: center;
    }

    .shows-list {
        align-items: center;
    }

    .show-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .ticket-link {
        margin-left: 0;
    }

    .past-shows-list {
        align-items: center;
    }

    .past-show {
        text-align: center;
    }
}

/* Selection */
::selection {
    background-color: var(--gold);
    color: var(--black);
}

::-moz-selection {
    background-color: var(--gold);
    color: var(--black);
}