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

:root {
    --gold: #D4AF37;
    --dark-gold: #B8941F;
    --black: #000000;
    --white: #FFFFFF;
    --gray: #999999;
}

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;
}

.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;
}

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

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('assets/hero.png');
    background-size: cover;
    background-position: center;
    padding-top: 80px;
}

.hero-content {
    text-align: center;
    padding: 40px 20px;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(40px, 8vw, 80px);
    font-weight: 400;
    color: var(--gold);
    line-height: 1.2;
    margin-bottom: 50px;
    letter-spacing: 3px;
}

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

.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;
}

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

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

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

.btn-solid:hover {
    background: var(--dark-gold);
    border-color: var(--dark-gold);
}

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

.about-text {
    font-size: 18px;
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: var(--white);
}

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

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

.shows-list {
    max-width: 800px;
    margin: 0 auto;
}

.show-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

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

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

.past-shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

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

/* Gradient Divider */
.gradient-divider {
    height: 200px;
    background: linear-gradient(90deg,
        #E8D5A0 0%,
        #D4B896 20%,
        #C4A89D 40%,
        #B499A4 60%,
        #A38AAA 80%,
        #9C89A8 100%
    );
}

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

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

.form-description {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
    color: var(--white);
    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: 500;
}

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

.form-input {
    width: 100%;
    padding: 15px;
    background-color: var(--white);
    border: none;
    border-radius: 4px;
    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(255, 255, 255, 0.1);
}

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

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

.footer-instagram {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

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

.footer-instagram:hover svg {
    color: var(--white);
}

/* Responsive */
@media (min-width: 768px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

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

    nav {
        padding: 0 20px;
    }

    .logo {
        font-size: 20px;
    }

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

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

    .section-title {
        font-size: 32px;
    }

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

    .past-shows-grid {
        grid-template-columns: 1fr;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

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

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