@font-face {
    font-family: 'Zuume Rough Bold';
    src: url('https://media.flowstatesites.com/fonts/zuumerough-bold.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
/* =========================================
   TMA ENTERTAINMENT - 2025
   (Dark Premium Theme - Red & Black)
   ========================================= */

/* --- Variables & Design Tokens --- */
:root {
    /* Color Palette - Dark Premium */
    --color-bg: #121212; /* Deep Charcoal/Black */
    --color-bg-alt: #1E1E1E; /* Lighter Dark for cards/sections */
    --color-bg-glass: rgba(18, 18, 18, 0.95);
    --color-text: #F0F0F0; /* Off-White */
    --color-text-muted: #A0A0A0; /* Light Gray */
    --color-accent: #D32F2F; /* TMA Red - High Contrast */
    --color-border: rgba(255, 255, 255, 0.1);
    --color-border-hover: rgba(211, 47, 47, 0.5);
    --color-gradient-overlay: linear-gradient(180deg, rgba(18,18,18,0) 0%, #121212 100%);

    /* Typography */
    --font-display: 'Zuume Rough Bold', 'Anton', sans-serif; /* High-impact, Condensed Bold */
    --font-body: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif; /* Used sparingly for elegance */

    /* Spacing Scale */
    --space-2xs: 0.5rem;
    --space-xs: 1rem;
    --space-sm: 2rem;
    --space-md: 4rem;
    --space-lg: 8rem;
    --space-xl: 12rem;
    --space-2xl: 16rem;

    /* Layout */
    --container-width: 1440px;
    --header-height: 100px;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 2px;

    /* Animation Timing */
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
    --duration-fast: 0.4s;
    --duration-slow: 1.2s;
}

/* --- Reset & Base --- */
@import 'sr-only.css';

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

::selection {
    background: var(--color-accent);
    color: #fff;
}


html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg);
}

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

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--duration-fast) var(--ease-out-expo);
}

ul { list-style: none; }

/* --- Typography System --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: normal; /* Bold for impact */
    line-height: 1.1;
    letter-spacing: 0.05em;
    text-transform: uppercase; /* Strong agency feel */
    color: var(--color-text);
}

h1 {
    font-size: clamp(2.5rem, 8vw, 6rem);
    margin-bottom: var(--space-md);
}

h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: var(--space-lg);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin-bottom: var(--space-sm);
    font-weight: 700;
}

p {
    font-size: clamp(1rem, 1.1vw, 1.25rem);
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
    max-width: 60ch;
    font-weight: 400;
}

.text-lead {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    color: var(--color-text);
    line-height: 1.5;
    font-weight: 300;
}

.text-accent {
    color: var(--color-accent);
}

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

.section-label {
    font-family: var(--font-display);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    opacity: 1;
    font-weight: 700;
}

.section-label::before {
    content: '';
    display: block;
    width: 30px;
    height: 2px; /* Thicker line */
    background: var(--color-accent);
}

/* --- Layout Utilities --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
    width: 100%;
}

/* Modern Grid System */
.grid {
    display: grid;
    gap: var(--space-md);
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-auto { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

/* Asymmetrical Grids (Simplified) */
.grid-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: var(--space-md);
}

.span-2 { grid-column: span 2; }
.span-full { grid-column: 1 / -1; }

section {
    padding: var(--space-xl) 0;
    position: relative;
}

/* --- Components --- */

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 3rem;
    background: var(--color-accent);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid var(--color-accent);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-out-expo);
    position: relative;
    overflow: hidden;
    font-size: 0.85rem;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--duration-fast) var(--ease-out-expo);
    z-index: -1;
}

.btn:hover {
    color: var(--color-accent);
    border-color: var(--color-accent);
}

.btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

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

.btn-outline::before {
    background: var(--color-accent);
}

.btn-outline:hover {
    color: #fff;
    border-color: var(--color-accent);
}

.btn-icon {
    margin-left: var(--space-xs);
    transition: transform var(--duration-fast) var(--ease-out-expo);
}

.btn:hover .btn-icon {
    transform: translateX(5px);
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    background: var(--color-bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    transition: transform var(--duration-fast) ease;
}

header.nav-hidden {
    transform: translateY(-100%);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    color: var(--color-text);
    z-index: 1002;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: var(--space-md);
}

.nav-link {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.1em;
    position: relative;
    color: var(--color-text);
    opacity: 0.7;
    font-family: var(--font-display);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 120%;
    left: 50%;
    width: 4px;
    height: 4px;
    background: var(--color-accent);
    border-radius: 50%;
    transform: translateX(-50%) scale(0);
    transition: transform var(--duration-fast) var(--ease-out-expo);
}

.nav-link:hover, .nav-link.active {
    opacity: 1;
    color: var(--color-accent);
}

.nav-link:hover::before, .nav-link.active::before {
    transform: translateX(-50%) scale(1);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding-top: var(--header-height);
    overflow: hidden;
    border-bottom: none;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    z-index: 0;
    transform: scale(1.05);
    transition: transform 5s ease;
}

.hero:hover .hero-bg {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(18,18,18,0.4) 0%, var(--color-bg) 90%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 10vh var(--space-md) 0;
    color: #fff;
}

.hero-title {
    color: #fff;
    line-height: 1;
    font-weight: 800;
    margin-bottom: var(--space-xs);
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    max-width: 600px;
    margin-top: 0;
    margin-bottom: var(--space-sm);
    border-left: 3px solid var(--color-accent); /* Thicker accent */
    padding-left: var(--space-sm);
    color: rgba(255,255,255,0.9);
}

/* Feature Cards (Dark Mode) */
.feature-card {
    background: var(--color-bg-alt); /* Dark Grey */
    border: 1px solid var(--color-border);
    padding: var(--space-sm) var(--space-md) var(--space-md);
    transition: all var(--duration-fast) var(--ease-out-expo);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
    background: #252525;
}

.card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(211, 47, 47, 0.1); /* Red tint */
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
    transition: all var(--duration-fast) var(--ease-out-expo);
}

.feature-card:hover .card-icon {
    background: var(--color-accent);
    color: #fff;
    transform: scale(1.1);
}

.card-icon svg {
    width: 32px;
    height: 32px;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--color-text);
}

.card-link-icon {
    align-self: flex-end;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    color: var(--color-text);
    transition: all var(--duration-fast) var(--ease-out-expo);
    margin-top: var(--space-sm);
}

.card-link-icon:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
    transform: rotate(45deg);
}

/* Footer */
footer {
    background: var(--color-bg-alt);
    padding: var(--space-xl) 0 var(--space-lg);
    border-top: 1px solid var(--color-border);
}

.footer-logo {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-display);
    display: block;
    margin-bottom: var(--space-md);
    color: var(--color-text);
    letter-spacing: -0.02em;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.socials {
    display: flex;
    gap: var(--space-md);
}

.socials a {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid var(--color-border);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    color: var(--color-text);
    transition: all var(--duration-fast) ease;
}

.socials a:hover {
    border-color: var(--color-accent);
    background: var(--color-accent);
    color: #fff;
}

/* Mobile & Responsive */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1003;
}

.bar {
    width: 30px;
    height: 2px;
    background: var(--color-text);
    transition: all var(--duration-fast) ease;
}

@media (max-width: 1024px) {
    :root {
        --container-width: 100%;
        --space-xl: 6rem;
    }

    .grid-3, .grid-bento {
        grid-template-columns: repeat(2, 1fr);
    }

    .span-2 { grid-column: span 1; }
}

@media (max-width: 768px) {
    :root {
        --space-md: 1.5rem;
        --space-lg: 4rem;
        --space-xl: 4rem;
        --header-height: 70px;
    }

    .hamburger { display: flex; }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--color-bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.5s var(--ease-out-expo);
        z-index: 1001;
    }

    .nav-menu.active { right: 0; }

    .nav-link { font-size: 1.5rem; }

    .grid-2, .grid-3, .grid-4, .grid-bento {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: clamp(2rem, 10vw, 3.5rem);
    }

    h2 {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .hamburger.active .bar:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

    /* Mobile Buttons */
    .btn, .btn-outline {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        display: flex;
    }

    .btn + .btn {
        margin-top: 1rem !important;
    }

    /* Footer Mobile Adjustments */
    .footer-grid {
        align-items: flex-start !important;
        gap: 2rem !important;
    }

    .footer-contact {
        text-align: left !important;
        align-items: flex-start !important;
    }

    .footer-meta {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        align-items: center;
    }
}


/* Animation Utilities */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity var(--duration-slow) var(--ease-out-expo),
                transform var(--duration-slow) var(--ease-out-expo);
}

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

/* Force visibility on mobile to prevent empty spaces if JS/Observer fails or is slow */
@media (max-width: 768px) {
    .fade-in-up {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}

/* Stagger Delays */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }

/* Event Items */
.event-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-sm);
    padding: var(--space-md);
    border-radius: var(--radius-sm);
    background: var(--color-bg-alt); /* Darker BG */
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    border: 1px solid var(--color-border);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    padding: var(--space-xs);
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.05);
}

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

@media (max-width: 768px) {
    .event-item {
        flex-direction: column;
        text-align: center;
        align-items: stretch;
    }

    .event-date {
        width: 100%;
        height: auto;
        flex-direction: row;
        gap: 0.5rem;
        padding: 0.5rem;
        margin-bottom: 1rem;
    }

    .event-date span:first-child {
        display: inline !important;
    }
}

/* Forms */
.contact-form {
    background: var(--color-bg-alt);
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

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

.form-control {
    width: 100%;
    padding: 1rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all var(--duration-fast) ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-accent);
}

.form-control::placeholder {
    color: var(--color-text-muted);
    opacity: 0.5;
}

select.form-control {
    cursor: pointer;
}

select.form-control option {
    background: var(--color-bg);
    color: var(--color-text);
}

/* Tracklist */
.track-item {
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all var(--duration-fast) ease;
    cursor: default;
}

.track-item::before {
    counter-increment: track-counter;
    content: counter(track-counter, decimal-leading-zero);
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--color-accent);
    font-size: 0.9rem;
    opacity: 0.8;
}

.track-item:hover {
    padding-left: 1rem;
    background: rgba(211, 47, 47, 0.05);
    color: var(--color-text);
}

.track-item:hover::before {
    color: var(--color-accent);
    opacity: 1;
}

/* --- Ticket Modal --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--duration-fast) ease, visibility var(--duration-fast) ease;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: var(--color-bg);
    width: 100%;
    max-width: 500px;
    padding: var(--space-md);
    border-radius: var(--radius-md);
    position: relative;
    transform: translateY(20px);
    transition: transform var(--duration-fast) var(--ease-out-expo);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid var(--color-border);
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text-muted);
    transition: color var(--duration-fast) ease;
}

.modal-close:hover {
    color: var(--color-accent);
}

.ticket-details {
    margin-bottom: var(--space-sm);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--color-border);
}

.ticket-details h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.ticket-details p {
    margin-bottom: 0.2rem;
    font-size: 0.9rem;
}

.ticket-summary {
    background: var(--color-bg-alt);
    padding: var(--space-sm);
    border-radius: var(--radius-sm);
    margin-top: var(--space-sm);
    margin-bottom: var(--space-sm);
    border: 1px solid var(--color-border);
}

.ticket-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.ticket-total {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1.1rem;
    border-top: 1px solid var(--color-border);
    padding-top: 0.5rem;
    margin-top: 0.5rem;
    color: var(--color-accent);
}

/* --- Band Grid Items (Formerly Slideshow) --- */
.band-slide {
    display: flex;
    flex-direction: column;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 100%;
}

.band-image-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.band-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) ease;
    filter: grayscale(100%);
}

/* Red Gradient Overlay */
.band-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(211, 47, 47, 0.3), rgba(211, 47, 47, 0.8));
    opacity: 1;
    transition: opacity var(--duration-fast) ease;
    pointer-events: none; /* Allow clicks on image if needed */
}

/* Hover Effect: Remove overlay and zoom image */
.band-slide:hover .band-image-container::after {
    opacity: 0;
}

.band-slide:hover .band-image-container img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.band-info {
    padding: var(--space-md);
    text-align: center;
}

.band-info h3 {
    margin-bottom: var(--space-xs);
}

.band-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}


@media (max-width: 768px) {
    .band-image-container {
        height: 250px;
    }

    .band-info {
        padding: var(--space-sm);
    }
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #121212;
    color: #F0F0F0;
    padding: 1.5rem 2rem;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border-left: 4px solid #D32F2F;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 9999;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 400px;
}

.toast-notification.active {
    transform: translateY(0);
    opacity: 1;
}

.toast-notification.error {
    border-left-color: #f44336;
}

@media (max-width: 768px) {
    .toast-notification {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: none;
        justify-content: center;
    }
}

.no-zuume {
    font-family: var(--font-body) !important;
    font-weight: 600 !important;
    letter-spacing: normal !important;
    text-transform: none !important;
}
