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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Forum', serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Forum', serif;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.05em;
}

h1 {
    font-size: 2.5rem;
    text-transform: uppercase;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

a:hover {
    color: #666;
}

/* Header */
.header {
    position: static;
    background: transparent;
    z-index: 1000;
    padding: 2rem 0 1rem 0;
    border-bottom: none;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.logo h1 {
    font-size: 3rem;
    color: #8B0000;
    letter-spacing: 0.001em;
    font-family: 'Forum', serif;
    font-weight: 400;
    margin: 0;
}

.logo a:hover h1 {
    color: #666;
}

.logo a:focus {
    outline: none;
}

.logo a:focus-visible {
    outline: 2px solid #8B0000;
    outline-offset: 2px;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1000;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
}

.nav-link {
    text-transform: lowercase;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    position: relative;
    padding: 0.5rem 1.5rem 0.5rem 2.5rem;
    color: #555;
    transition: color 0.3s ease;
}

.nav-list > li:not(:last-child)::after {
    content: '|';
    margin-left: 1.5rem;
    color: #ccc;
    font-weight: 300;
}

.nav-link:hover {
    color: #8B0000;
}

.nav-link:focus {
    outline: none;
}

.nav-link:focus-visible {
    outline: 2px solid #8B0000;
    outline-offset: 2px;
}

.nav-link.active {
    color: #FFB6C1;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    z-index: 1000;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: none;
    padding: 0rem 0;
    min-width: 120px;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0.5rem 1.5rem;
}

.dropdown-menu a {
    display: block;
    padding: 0rem 0;
    font-size: 0.9rem;
    color: #555;
    transition: color 0.3s ease;
}

.dropdown-menu a:hover {
    color: #8B0000;
}

.dropdown-menu a:focus {
    outline: none;
}

.dropdown-menu a:focus-visible {
    outline: 2px solid #8B0000;
    outline-offset: 2px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    gap: 4px;
    position: relative;
    z-index: 1001;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}



.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
    display: block;
    border-radius: 2px;
}

.mobile-menu-toggle:focus {
    outline: none;
}

.mobile-menu-toggle:focus-visible {
    outline: 2px solid #8B0000;
    outline-offset: 2px;
}

.main-content {
    margin-top: 0;
    min-height: calc(100vh - 200px);
}

/* Hero Section */
.hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 2rem 4rem 2rem;
    background: #fff;
}

.hero-image {
    position: relative;
    max-width: 700px;
    width: 100%;
    text-align: center;
}

.hero-img {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
    margin: 0 auto;
    transition: none !important;
    transform: none !important;
}

.hero-img:hover {
    transform: none !important;
    scale: none !important;
}

.photo-credit {
    position: static;
    margin-top: 1rem;
    text-align: right;
    color: #888;
    font-size: 0.8rem !important;
    font-style: normal;
}

/* Force photo credit font size */
.photo-credit,
.photo-credit * {
    font-size: 0.8rem !important;
}

/* About page specific photo credit styling */
.about-image .photo-credit {
    text-align: left;
    margin-left: 5.3rem;
    padding-left: 0rem;
    margin-top: 0.01rem;
}

/* Social Media Bar */
.social-bar {
    position: fixed;
    right: 2rem;
    top: 90%;
    transform: translateY(-50%);
    background: transparent;
    padding: 0;
    border-top: none;
    z-index: 100;
}

.social-list {
    display: flex;
    flex-direction: column;
    justify-content: bottom;
    list-style: none;
    gap: 0.5rem;
}

.social-icon {
    width: 30px;
    height: 30px;
    transition: none !important;
    transform: none !important;
}

.social-icon:hover {
    transform: scale(1.2) !important;
    transition: transform 0.3s ease;
}

.social-icon:focus {
    outline: none;
}

.social-icon:focus-visible {
    outline: 2px solid #8B0000;
    outline-offset: 2px;
}

/* Footer */
.footer {
    background: #fff;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* About Section */
.about-section {
    padding: 2rem 0;
    background: #fff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-text {
    margin-left: 0;
}

.about-text p {
    font-size: 0.9375rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

.about-text a {
    color: #8B0000;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.about-text a:hover {
    color: #666;
}

/* IMA Project Page Specific Styles */
.ima-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.website-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: white !important;
    color: #8B0000 !important;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 0.05em;
    border: 1px solid #8B0000 !important;
    transition: all 0.3s ease;
    font-family: 'Forum', serif;
}

.website-btn:hover {
    background: #8B0000 !important;
    color: white !important;
}

.social-link {
    display: inline-flex;
    align-items: center;
}

.about-image {
    text-align: center;
}

.about-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 0;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: none !important;
    transform: none !important;
}

.about-img:hover {
    transform: none !important;
    scale: none !important;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

/* Smaller title for contact page */
.contact-section .section-title {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    margin-top: 0.75rem;
    text-transform: lowercase;
    font-weight: 400;
    text-align: center;
}

/* Shows Section */
.shows-section {
    padding: 1rem 0 4rem 0;
    background: #fff;
}

.shows-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.shows-header {
    display: flex;
    align-items: flex-start;
    gap: 5rem;
    margin-left: 10rem;
}

.shows-label {
    font-size: 0.9375rem;
    color: #333;
    font-family: 'Forum', serif;
    font-weight: 700;
    flex-shrink: 0;
}

.shows-main-content {
    flex: 1;
    max-width: 600px;
    margin-left: 2rem;
}

.shows-year {
    font-size: 0.9375rem;
    color: #333;
    font-family: 'Forum', serif;
    font-weight: 700;
    text-decoration: underline;
    margin-bottom: 0.5rem;
}

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

.show-entry {
    margin-bottom: 1.5rem;
}

.show-date-time {
    font-size: 0.9375rem;
    color: #333;
    margin-bottom: 0rem;
    font-family: 'Forum', serif;
    font-weight: 700;
}

.show-title {
    font-size: 0.9375rem;
    color: #8B0000;
    margin-bottom: 0rem;
    font-family: 'Forum', serif;
    font-weight: 700;
}

.show-location {
    font-size: 0.9375rem;
    color: #333;
    margin-bottom: 0rem;
    font-family: 'Forum', serif;
    font-weight: 700;
}

.show-location::before {
    content: "@ ";
    color: #888;
}

.more-info-link {
    color: #333;
    text-decoration: underline;
    font-size: 0.9375rem;
    margin-left: 0.5rem;
    transition: color 0.3s ease;
}

.more-info-link:hover {
    color: #8B0000;
}

.no-shows {
    color: #888;
    font-style: italic;
    font-size: 0.9375rem;
}

/* Contact Section */
.contact-section {
    padding: 0.75rem 0;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.contact-section .container {
    max-width: none !important;
    width: 100vw !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: -16rem !important;
    margin-right: -16rem !important;
}

.contact-content {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: none;
}

.contact-info h3,
.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
    font-family: 'Forum', serif;
}

.contact-item p {
    color: #555;
    font-size: 1.1rem;
}

.contact-item a {
    color: #333;
    text-decoration: underline;
}

.contact-item a:hover {
    color: #666;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links a {
    padding: 0.5rem 1rem;
    background: #333;
    color: white;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #666;
    transform: translateY(-2px);
}

/* Contact Form */
.contact-form {
    background: transparent;
    padding: 0.5rem 0;
    border-radius: 0;
    width: 100%;
    max-width: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.centered-form {
    max-width: 600px;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin: 0 auto;
}

/* Contact form styling */
#contactForm {
    width: 100%;
    max-width: 600px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.5rem 0.5rem;
    border: none;
    border-radius: 0;
    background-color: #F5F0E8;
    font-family: inherit;
    font-size: 1rem;
    color: #333;
    box-sizing: border-box;
    transition: background-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background-color: #F0E8DC;
}

.form-group textarea {
    resize: vertical;
    min-height: 200px;
}

.submit-btn {
    background: #A08A7A;
    color: white;
    border: none;
    padding: 0.5rem 0.5rem;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    margin-top: 1rem;
    float: right;
}

.form-message,
.success-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

.success-message {
    background: #d4edda;
    color: #04310e;
    border: 1px solid #c3e6cb;
    clear: both;
    width: 100%;
}

.success-message h4 {
    margin: 0 0 0.5rem 0;
    color: #04310e;
    font-size: 1.1rem;
}

.success-message p {
    margin: 0;
    color: #04310e;
    font-size: 1.1rem;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.submit-btn:hover {
    background: #927B6A;
    transform: none;
}

/* Clear float after submit button */
.contact-form form::after {
    content: "";
    display: table;
    clear: both;
}

.submit-btn:focus {
    outline: none;
}

.submit-btn:focus-visible {
    outline: 2px solid #8B0000;
    outline-offset: 2px;
}

.submit-btn:active {
    transform: translateY(0);
}

/* Media Section */
.media-section {
    padding: 2rem 0;
    background: #fff;
    min-height: 400px;
}

.media-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    min-height: 300px;
}

.media-content h1 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
    font-size: 1.5rem;
    font-weight: 400;
    text-transform: lowercase;
    font-family: 'Forum', serif;
}

.media-videos {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.media-video-item {
    border-bottom: 1px solid #eee;
    padding-bottom: 2rem;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
    align-items: start;
}

.media-video-item:last-child {
    border-bottom: none;
}

.media-video-title {
    font-size: 1.1rem;
    color: #8B0000;
    margin-bottom: 0.5rem;
    font-family: 'Forum', serif;
    font-weight: 400;
}

.media-video-description {
    font-size: 0.9375rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-family: 'Forum', serif;
    font-weight: 400;
}

.media-video-details {
    font-size: 0.9375rem;
    color: #555;
    margin-bottom: 0.5rem;
    font-family: 'Forum', serif;
    font-weight: 400;
    font-style: italic;
}

.media-video-performers {
    font-size: 0.9375rem;
    color: #333;
    margin-bottom: 1rem;
    font-family: 'Forum', serif;
    font-weight: 400;
    line-height: 1.4;
}

.media-video-date {
    font-size: 0.9375rem;
    color: #333;
    margin-bottom: 1rem;
    font-family: 'Forum', serif;
    font-weight: 400;
}

.media-video-left {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex-shrink: 0;
    width: 100%;
}

.media-video-right {
    display: flex;
    flex-direction: column;
}

.media-video-embed {
    text-align: center;
    width: 100%;
}

.media-video-embed iframe {
    width: 100%;
    height: 225px;
    border: none;
    max-width: 400px;
}

.media-video-placeholder {
    background: #f8f8f8;
    padding: 2rem;
    text-align: center;
    border: 1px solid #e0e0e0;
    color: #888;
    font-style: italic;
    font-size: 0.9375rem;
}

.no-media {
    color: #888;
    font-style: italic;
    font-size: 0.9375rem;
    text-align: center;
    padding: 2rem;
}

/* Project Section */
.project-section {
    padding: 4rem 0;
    background: #fff;
}

.project-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.project-content h1 {
    margin-bottom: 2rem;
    color: #333;
}

.project-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.project-content a {
    color: #8B0000;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
}

.project-content a:hover {
    color: #666;
}

/* Releases Section */
.releases-section {
    padding: 2rem 0;
    background: #fff;
    min-height: 400px;
}

.releases-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    min-height: 300px;
}

.releases-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.release-item {
    border-bottom: 1px solid #eee;
    padding-bottom: 2rem;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    align-items: start;
}

.release-item:last-child {
    border-bottom: none;
}

.release-left {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex-shrink: 0;
    width: 100%;
}

.release-right {
    display: flex;
    flex-direction: column;
}

.release-image {
    text-align: center;
    width: 100%;
}

.release-img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.release-title {
    font-size: 1.1rem;
    color: #8B0000;
    margin-bottom: 0.5rem;
    font-family: 'Forum', serif;
    font-weight: 400;
}

.release-description {
    font-size: 0.9375rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-family: 'Forum', serif;
    font-weight: 400;
}

.release-details {
    font-size: 0.9375rem;
    color: #555;
    margin-bottom: 1rem;
    font-family: 'Forum', serif;
    font-weight: 400;
    line-height: 1.4;
}

.release-date {
    font-size: 0.9375rem;
    color: #333;
    margin-bottom: 1rem;
    font-family: 'Forum', serif;
    font-weight: 400;
}

.release-actions {
    margin-top: auto;
}

.listen-buy-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: white;
    color: #8B0000;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 0.05em;
    border: 1px solid #8B0000;
    transition: all 0.3s ease;
    font-family: 'Forum', serif;
    font-size: 0.9rem;
}

.listen-buy-btn:hover {
    background: #8B0000;
    color: white;
}

.sold-out {
    color: #888;
    font-style: italic;
    font-size: 0.9rem;
}

.no-releases {
    color: #888;
    font-style: italic;
    font-size: 0.9375rem;
    text-align: center;
    padding: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        padding: 0 1rem;
        gap: 1rem;
    }
    
    .logo h1 {
        font-size: 2rem;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-list {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 4rem 2rem 2rem 2rem;
        gap: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 9999;
        justify-content: flex-start;
        align-items: center;
        overflow-y: auto;
        display: flex;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin: 0;
        box-sizing: border-box;
    }
    
    .nav-list.active {
        transform: translateX(0);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        border: none;
        padding: 0rem 0 0 1rem;
        min-width: auto;
        box-shadow: none;
    }
    
    .nav-list li {
        width: 100%;
        text-align: center;
    }
    
    .nav-link {
        font-size: 1.5rem;
        padding: 1.5rem 0;
        text-align: center;
        border-bottom: 2px solid #eee;
        width: 100%;
        display: block;
        color: #333;
        font-weight: 500;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-list > li:not(:last-child)::after {
        display: none;
    }
    
    .hero-section {
        padding: 2rem 1rem;
    }
    
    .hero-image {
        max-width: 100%;
    }
    
    .social-list {
        gap: 1.5rem;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
    }
    
    /* Smoother page transitions for mobile */
    .page-transition {
        transition: opacity 0.4s ease-out;
    }
    
    .page-content-animate {
        transition: opacity 0.4s ease-out, transform 0.4s ease-out;
    }
    
    .page-content-animate.fade-out {
        transform: translateY(-10px);
    }
    
    .page-content-animate.fade-in {
        transform: translateY(10px);
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-text {
        text-align: left;
    }
    
    .about-text h2 {
        font-size: 2.5rem;
    }
    
    .about-text p {
        font-size: 1.1rem;
    }
    
    .shows-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .shows-heading {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .shows-list {
        gap: 1.5rem;
    }
    
    .show-entry {
        margin-bottom: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-section {
        padding: 0.5rem 0;
    }
    
    .contact-section .section-title {
        margin-top: 0.5rem;
        margin-bottom: 0.25rem;
    }
    
    .contact-form {
        padding: 1rem 1.5rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .media-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .media-category {
        padding: 1.5rem;
    }
    
    .project-content {
        padding: 0 1rem;
    }
    
    .shows-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
        margin-left: 0;
    }
    
    .shows-main-content {
        margin-left: 0;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 0.5rem;
    }
    
    .logo h1 {
        font-size: 1.8rem;
    }
    
    .hero-section {
        padding: 1rem 0.5rem;
    }
    
    .photo-credit {
        padding: 0.3rem 0.8rem;
        font-size: 0.8rem !important;
    }
    
    .about-image .photo-credit {
        margin-left: 0 !important;
        text-align: left !important;
    }
    
    .ima-page .photo-credit {
        margin-left: 0 !important;
        text-align: left !important;
    }
    
    .nomon-page .photo-credit {
        margin-left: 0 !important;
        text-align: left !important;
    }
    
    /* Move content up closer to hamburger menu */
    .main-content {
        padding-top: 0.5rem !important;
    }
    
    .hero-section {
        padding-top: 0.5rem !important;
    }
    
    .about-section {
        padding-top: 0.5rem !important;
    }
    
    .section-title {
        margin-top: 0.5rem !important;
    }
    
    .about-text {
        margin-top: 0.5rem !important;
    }
    
    .contact-section {
        padding-top: 0.5rem !important;
    }
    
    .social-bar {
        position: fixed;
        bottom: 1rem;
        right: 1rem;
        z-index: 100;
    }
    
    .social-list {
        gap: 1rem;
        flex-direction: column;
    }
    
    .social-icon {
        width: 30px;
        height: 30px;
    }
    
    .media-content {
        padding: 0 1rem;
    }
    
    .media-videos {
        max-width: 100%;
        gap: 2rem;
    }
    
    .media-video-item {
        padding-bottom: 1.5rem;
    }
    
    .media-video-item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .media-video-left {
        min-width: 0;
        flex-shrink: 1;
    }
    
    .media-video-embed iframe {
        width: 100%;
        height: 200px;
        max-width: 100%;
    }
    
    .release-item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .release-left {
        min-width: 0;
        flex-shrink: 1;
    }
    
    .release-img {
        max-width: 150px;
    }
    
    .release-item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .release-left {
        min-width: 0;
        flex-shrink: 1;
    }
    
    .release-img {
        max-width: 150px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
a:focus,
button:focus {
    outline: none;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid #8B0000;
    outline-offset: 2px;
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

/* Page Transitions - Clean and Simple */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-transition.active {
    opacity: 1;
    pointer-events: all;
}

.page-transition::after {
    content: '';
    width: 40px;
    height: 40px;
    border: 3px solid transparent;
    border-top: 3px solid #333;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.page-transition.active::after {
    opacity: 1;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ONLY animate the very specific content areas */
.page-content-animate {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
}

.page-content-animate.fade-out {
    opacity: 0;
    transform: translateY(-20px);
}

.page-content-animate.fade-in {
    opacity: 0;
    transform: translateY(20px);
}

.page-content-animate.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

