:root {
    --primary-color: #b11c11; /* Bold Red-Orange from Logo */
    --primary-dark: #8b160d;
    --secondary-color: #f9f3f0; /* Cream/Off-white from Logo */
    --accent-color: #d84a38;
    --text-color: #1a1a1a;
    --bg-color: #f9f3f0;
    --white: #ffffff;
    --font-heading: 'Rubik', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header & Nav */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(249, 243, 240, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(177, 28, 17, 0.1);
}

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

#nav-logo {
    height: 80px !important;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--primary-color);
    color: var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 15vw, 10rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 400;
    margin-bottom: 40px;
    color: rgba(249, 243, 240, 0.8);
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

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

.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

/* Sections */
.section {
    padding: 120px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 60px;
    color: var(--primary-color);
    line-height: 1;
}

/* Shows Grid */
.shows-grid {
    display: grid;
    gap: 20px;
}

.show-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 40px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(177, 28, 17, 0.05);
}

.show-card:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(177, 28, 17, 0.1);
}

.show-date {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    width: 120px;
    line-height: 1;
}

.show-info {
    flex-grow: 1;
}

.show-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.show-time {
    display: block;
    font-weight: 700;
    color: var(--accent-color);
    margin-top: 10px;
}

/* Team Section */
.team-description {
    max-width: 800px;
    margin-bottom: 60px;
    font-size: 1.2rem;
    color: var(--text-color);
    line-height: 1.8;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.team-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.team-card:hover {
    transform: translateY(-10px);
}

.member-img {
    height: 400px;
    overflow: hidden;
}

.member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.team-card:hover .member-img img {
    transform: scale(1.1);
}

.member-info {
    padding: 25px;
}

.member-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 15px;
}

.gallery-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    filter: grayscale(1);
    transition: var(--transition-smooth);
}

.gallery-img:hover {
    filter: grayscale(0);
    transform: scale(0.98);
}

/* Contact Card */
.contact-card {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 60px;
    border-radius: 24px;
    text-align: center;
}

.contact-card .section-title {
    color: var(--secondary-color);
}

.contact-email {
    display: block;
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--secondary-color);
    text-decoration: none;
    margin: 30px 0;
    word-break: break-all;
}

.contact-email:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid rgba(177, 28, 17, 0.1);
}

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

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.8rem;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Animations */
.animate-in {
    animation: fadeInDown 0.8s forwards;
}

.animate-in-delay {
    opacity: 0;
    animation: fadeInUp 0.8s 0.3s forwards;
}

.animate-in-delay-2 {
    opacity: 0;
    animation: fadeInUp 0.8s 0.6s forwards;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Legal Pages Styling */
.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 140px 20px 80px 20px; /* offset for fixed header */
}

.legal-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-transform: uppercase;
}

.legal-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-color);
}

.legal-text p {
    margin-bottom: 15px;
}

.legal-text ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.legal-text li {
    margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .mobile-nav-toggle {
        display: flex;
    }
    .show-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .show-date {
        width: 100%;
    }
}
