/* General Setup */
:root {
    --primary-red: #B22222; /* A strong, classic red */
    --dark-grey: #222222;
    --off-white: #F5F5F5;
    --black: #000000;
    --white: #FFFFFF;
}

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    color: var(--dark-grey);
    background-color: var(--off-white);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-family: 'Teko', sans-serif;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-top: 0;
}

/* 1. Navigation Bar */
.main-header {
    background-color: var(--black);
    padding: 10px 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar a {
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    padding: 10px 15px;
    transition: color 0.3s;
}

.navbar a:hover {
    color: var(--primary-red);
}

.logo {
    height: 60px;
}

/* 2. Hero Section */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/hero-bw.jpg');
    background-size: cover;
    background-position: center;
    height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-text h1 {
    color: var(--white);
    font-size: 4rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* 3. Shows Section */
.shows-section {
    background-color: var(--dark-grey);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.shows-section h2 {
    font-size: 3rem;
    color: var(--white);
}

.divider {
    border: 1px solid var(--primary-red);
    width: 80px;
    margin: 20px auto 40px auto;
}

.show-date {
    color: var(--primary-red);
    font-weight: bold;
}

.show-details {
    font-style: italic;
    margin: 5px 0;
}

.show-buttons {
    margin-top: 20px;
}

/* 4. About Section */
.about-section {
    padding: 60px 0;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 5px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 3rem;
    color: var(--dark-grey);
}

/* 5. Media Section */
.media-section {
    background-color: var(--dark-grey);
    padding: 60px 0;
    text-align: center;
}

.media-section h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

/* 6. Signup Section */
.signup-section {
    background-color: var(--primary-red);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.signup-section h2 {
    font-size: 3rem;
    color: var(--white);
}

.signup-form {
    margin-top: 20px;
}

.signup-form input {
    padding: 15px;
    width: 300px;
    border: none;
    border-radius: 5px;
    margin-right: 10px;
}

/* 7. Footer */
.main-footer-section {
    background-color: var(--black);
    color: var(--white);
    padding-top: 40px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
}

.footer-logo img {
    height: 50px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    margin: 0 10px;
}

.copyright {
    text-align: center;
    padding: 20px;
    border-top: 1px solid var(--dark-grey);
    font-size: 14px;
}

/* Buttons */
.btn {
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    display: inline-block;
    transition: background-color 0.3s, color 0.3s;
}

.btn-primary {
    background-color: var(--primary-red);
    color: var(--white);
    border: 2px solid var(--primary-red);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-red);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--dark-grey);
}

.btn-light {
    background-color: var(--white);
    color: var(--primary-red);
    border: none;
}


/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .navbar {
        flex-direction: column;
    }

    .logo {
        margin-bottom: 10px;
    }

    .about-container, .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .signup-form input {
        width: 80%;
        margin-bottom: 10px;
    }
}

/* --- Styles for Media Page --- */

.page-title-section {
    background-color: var(--dark-grey);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

.page-title-section h1 {
    font-size: 3.5rem;
    margin-bottom: 0;
}

.video-section, .photo-gallery-section {
    padding: 60px 0;
    text-align: center;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.video-container {
    background: #fff;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.video-container h3 {
    text-align: left;
    color: var(--dark-grey);
    margin-bottom: 10px;
}

.video-container iframe, .video-container video {
    width: 100%;
    aspect-ratio: 16 / 9; /* Ensures correct video shape */
    border-radius: 5px;
}

.full-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    margin-top: 40px;
}

.full-gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}




