

:root {
    --bg-dark: #0f1012;
    --bg-card: #181a1e;
    --bg-alt: #131418;
    --primary-red: #d32f2f;
    --primary-hover: #b71c1c;
    --text-main: #f0f0f0;
    --text-muted: #a0a0a0;
    --border-color: #2a2d34;
    --font-heading: 'Teko', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.1;
}

h2 {
    font-size: 3rem;
    color: var(--text-main);
}

h3 {
    font-size: 2rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

/* --- Container & Layout --- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.header-line {
    width: 60px;
    height: 4px;
    background-color: var(--primary-red);
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-red);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-main);
    border-color: var(--text-main);
}

.btn-outline:hover {
    background-color: var(--text-main);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(15, 16, 18, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

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

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo {
    height: 40px;
    width: auto;
    display: block;
    object-fit: contain;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

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

.nav-link.active {
    color: var(--primary-red);
}

.btn-nav {
    background-color: var(--primary-red);
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
}

.btn-nav:hover {
    background-color: var(--primary-hover);
    color: #fff;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- Mobile Navigation Styles --- */
@media (max-width: 768px) {
    /* Show the hamburger menu button */
    .nav-toggle {
        display: block;
        position: relative;
        z-index: 1001;
        margin-left: auto;
        margin-right: 1rem;
        background: none;
        border: none;
        color: var(--text-main);
        font-size: 1.5rem;
        cursor: pointer;
    }

    /* Hide the menu by default on mobile and position it absolute */
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(15, 16, 18, 0.98);
        padding: 1.5rem 0;
        border-bottom: 1px solid var(--border-color);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        z-index: 1001;
    }

    /* Show the menu when JavaScript adds the 'active' class */
    .nav-menu.active {
        display: block;
    }

    /* Stack links vertically */
    .nav-menu ul {
        flex-direction: column;
        gap: 1.25rem;
    }
}

/* --- Hero Section --- */
.hero-section {
    height: 100vh;
    min-height: 600px;
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(15, 16, 18, 1)), url('images/hero-bg.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1.5rem;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
}

.hero-subtitle {
    color: var(--primary-red);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.hero-title {
    font-size: 5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

.hero-description {
    font-size: 1.2rem;
    color: #ddd;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* --- About Section --- */
.about-section {
    background-color: var(--bg-alt);
}

.about-text h3 {
    margin-bottom: 1rem;
    color: var(--text-main);
}

.about-text p {
    font-size: 1.05rem;
}

.about-text strong {
    color: var(--text-main);
}

.about-text em {
    color: var(--primary-red);
    font-style: normal;
}

.stats-row {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--primary-red);
    line-height: 1;
}

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

/* --- Shows Section --- */
.shows-section {
    background-color: var(--bg-dark);
}

.shows-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.show-item {
    display: flex;
    align-items: center;
    background-color: var(--bg-card);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-red);
    transition: var(--transition);
}

.show-item:hover {
    transform: translateX(5px);
    background-color: #20232a;
}

.show-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    padding-right: 2rem;
    border-right: 1px solid var(--border-color);
}

.show-date .month {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-red);
    text-transform: uppercase;
}

.show-date .day {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    line-height: 1;
    color: var(--text-main);
}

.show-details {
    flex-grow: 1;
    padding: 0 2rem;
}

.show-details h4 {
    font-size: 1.6rem;
    color: var(--text-main);
}

.show-details .location {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* --- Media Section --- */
.media-section {
    background-color: var(--bg-alt);
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.media-card {
    background-color: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #22252c;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-align: center;
    gap: 0.5rem;
    padding: 1rem;
}

.video-placeholder i {
    font-size: 2rem;
    color: var(--primary-red);
}

.video-placeholder p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.media-placeholder {
    height: 200px;
    background-color: #22252c;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.media-placeholder i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-red);
}

.media-info {
    padding: 1.2rem;
}

.media-info h4 {
    font-size: 1.3rem;
    color: var(--text-main);
}

.media-info p {
    margin-bottom: 0;
    font-size: 0.85rem;
}

/* --- Contact Section --- */
.contact-section {
    background-color: var(--bg-dark);
}

.contact-content {
    max-width: 650px;
    margin: 0 auto;
}

.contact-form {
    background-color: var(--bg-card);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-main);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background-color: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
}

.form-status {
    margin-top: 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
}

/* --- EPK / Subpage Styles --- */
.page-main {
    padding-top: 80px;
}

.page-hero {
    padding: 4rem 0 3rem;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(15, 16, 18, 1)), url('images/hero-bg.jpeg') center/cover no-repeat;
    border-bottom: 1px solid var(--border-color);
}

.page-hero-subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.page-hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.page-hero-description {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-muted);
}

.epk-section {
    padding: 4rem 0;
}

.epk-section-alt {
    background-color: var(--bg-alt);
}

.epk-bio {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.epk-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.epk-fact {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
}

.epk-fact-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.epk-fact-value {
    display: block;
    font-weight: 600;
    color: var(--text-main);
}

.epk-assets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.epk-asset-card {
    display: block;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem 1.5rem;
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
}

.epk-asset-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-3px);
}

.epk-asset-card i {
    font-size: 1.5rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.epk-asset-card h4 {
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.epk-asset-card p {
    margin-bottom: 0;
    font-size: 0.85rem;
}

.epk-contact {
    text-align: center;
}

.epk-tech {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.epk-tech-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.epk-tech-list {
    list-style: none;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.epk-tech-list li {
    padding: 1rem 1.25rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 0;
}

.epk-tech-list li:last-child {
    border-bottom: none;
}

.epk-tech-list li strong {
    color: var(--text-main);
}

/* --- Footer --- */
.footer {
    background-color: #08080a;
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
}

.footer-socials a {
    color: var(--text-muted);
    font-size: 1.5rem;
    transition: var(--transition);
}

.footer-socials a:hover {
    color: var(--primary-red);
    transform: translateY(-3px);
}

.footer-copy p {
    font-size: 0.85rem;
    margin-bottom: 0;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;    /* Centers logo and text horizontally */
    text-align: center;      /* Ensures multi-line text is centered */
    gap: 0.75rem;            /* Adds clean spacing between logo and text */
}

.footer-brand .nav-logo {
    height: 55px;            /* Bumps logo size up from 40px */
    width: auto;
}

.footer-brand p {
    font-size: 1rem;         /* Increases font size (default was 0.85rem) */
    font-weight: 600;        /* Makes the text pop a bit more */
    color: var(--text-main);  /* Lightens text color (previously muted gray) */
    letter-spacing: 0.5px;
}

/* --- Responsive Styles --- */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-dark);
        border-bottom: 1px solid var(--border-color);
        padding: 1.5rem;
        display: none;
    }

    .nav-menu.active {
        display: block;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 1.2rem;
        align-items: flex-start;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .show-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .show-date {
        padding-right: 0;
        padding-bottom: 1rem;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        width: 100%;
    }

    .show-details {
        padding: 0;
    }

    .stats-row {
        justify-content: space-around;
    }
}

/* --- Gallery Styles --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    aspect-ratio: 4 / 3; /* Keeps consistent image dimensions */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
}

/* Hover Zoom Effect */
.gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}
