/* --- RESET & BASE VARIABLES --- */
:root {
    --bg-color: #020913; /* Your deep background */
    --surface-color: #011126; /* Pop-up box color */
    --text-primary: #e4e4e4; 
    --text-secondary: #90a0b6; /* Muted icy blue/grey */
    --accent: #e0e068; /* Highlight color */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Archivo', sans-serif;
    line-height: 1.6;
}

a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s;
}

h2, h3 {
    color: var(--accent);
}

a:hover {
    color: var(--text-secondary);
}

.text-center {
    text-align: center;
}

/* --- BUTTONS --- */
.hero-btn-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-filled,
.btn-outline {
    padding: 15px 40px;
    font-size: 1.2rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-filled {
    background-color: var(--accent);
    color: var(--bg-color);
    border: 2px solid var(--accent);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.btn-filled:hover {
    background-color: transparent;
    color: var(--accent);
}

.btn-outline {
    background-color: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.btn-outline:hover {
    background-color: var(--accent);
    color: var(--bg-color);
}

/* --- DIVIDERS & SECTIONS --- */
.divider {
    border: 0;
    height: 1px;
    background: #333;
    margin: 0;
    width: 100%;
}

.section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    min-height: 100vh;
    background-image: url('photos/hero-image-01.webp');
    background-size: cover;
    background-position: center;
    background-color: #222; /* Fallback if image doesn't load */
    padding: 20px;
}

/* Header / Nav Layout (NOW STICKY) */
/* Header / Nav Layout (TRANSPARENT TO SOLID) */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 20px 40px;
    
    /* Starts completely transparent */
    background-color: transparent; 
    
    /* Tells the browser to smoothly animate the change over 0.4 seconds */
    transition: background-color 0.4s ease, backdrop-filter 0.4s ease; 
}

/* This class gets added by JavaScript when the user scrolls */
.top-bar.scrolled {
    background-color: rgba(10, 10, 10, 0.8); /* 80% dark background */
    backdrop-filter: blur(10px); /* Keeps the premium blur effect */
}

.logo {
    display: flex;
    align-items: center;
    justify-self: start;
}

.nav-logo {
    height: 35px; /* Adjust this number to make your logo bigger or smaller in the top bar! */
    width: auto;
}
.main-nav {
    justify-self: center;
}

.main-nav a {
    margin: 0 15px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.social-icons {
    justify-self: end;
}

.social-icons a {
    margin-left: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
    display: block;
}

/* --- ALBUM OVERLAY (PERFECTLY CENTRED) --- */
.hero-album-overlay {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%); /* Absolute centering magic */
    z-index: 5;
    
    text-align: center;
    background: rgba(10, 10, 10, 0.0); /* Dark background box */
    padding: 40px;
    border-radius: 8px;
    width: 90%;
    max-width: 650px;
    border: 0x solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
}

.hero-album-overlay h2 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.hero-album-overlay p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    font-size: 1rem;
}

.album-art-placeholder {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1 / 1;
    margin: 0 auto 25px;
    background-image: url('photos/album-cover-01.webp'); 
    background-size: cover;
    background-position: center;
    background-color: #444; /* Fallback */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
}

/* --- MODAL (POP-UP) --- */
.modal-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    inset: 0;
    background: rgba(2, 9, 19, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: rgba(1, 17, 38, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    width: 90%;
    max-width: 400px;
    position: relative;
    border-radius: 6px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        inset 0 -1px 0 rgba(0, 0, 0, 0.4);
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.streaming-list {
    list-style: none;
    margin-top: 20px;
}

.streaming-list li {
    margin-bottom: 15px;
}

.streaming-list a {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 16px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.platform-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    fill: currentColor;
}

.platform-icon-text text {
    fill: currentColor;
}

.streaming-list a:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

/* --- LIVE SECTION --- */
.tour-dates {
    max-width: 800px;
    margin: 40px auto 0;
}

.tour-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #333;
}

.tour-row:last-child {
    border-bottom: none;
}

/* --- VIDEOS SECTION --- */
.video-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.video-thumb {
    aspect-ratio: 16 / 9;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    border: 1px solid #333;
}

.video-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* --- PRESS SECTION --- */
.press-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
    align-items: center; /* Ensures the centered cards align properly on wide screens */
}

/* This styles the actual quote box/card */
.press-article {
    padding: 35px;
    background: var(--surface-color);
    border: 0px solid rgba(255, 255, 255, 0.1); /* Soft border */
    border-radius: 4px; /* Optional subtle rounded corners */
    
    /* THESE TWO LINES FIX YOUR WIDTH ISSUE */
    max-width: 700px; 
    width: 100%; /* Allows it to shrink on smaller mobile screens */
}

/* Flips the quote back to your main text color and makes it regular weight */
.press-article h3 {
    color: var(--text-primary);
    font-weight: 500; 
    margin-bottom: 10px; 
    font-size: 1.15rem; /* Adjusts the text size slightly if needed */
}

/* Turns the publication/author name into your yellow accent color */
.press-article p {
    color: var(--accent);
    font-weight: 600; /* Makes the publication pop a bit more */
    font-size: 0.95rem;
}
/* --- ABOUT SECTION --- */
.about-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-top: 15px;
    color: var(--text-secondary);
}

.about-photo {
    flex: 1;
    position: relative;
    width: 100%;
}

.slider-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none; 
    scrollbar-width: none; 
}

.slider-wrapper::-webkit-scrollbar {
    display: none; 
}

.slide {
    flex: 0 0 100%;
    aspect-ratio: 4 / 3;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    scroll-snap-align: start;
    border: 1px solid #444;
    overflow: hidden;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.slider-controls {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 10px;
    gap: 10px;
}

.slider-controls button {
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: 5px 15px;
    cursor: pointer;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.slider-controls button:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

/* --- FOOTER --- */
.footer p {
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.footer-socials {
    margin: 30px 0;
    justify-content: center;
    display: flex;
}

.copyright {
    font-size: 0.8rem;
    margin-top: 40px;
}

/* --- RESPONSIVE DESIGN (MOBILE) --- */
@media (max-width: 768px) {
    .top-bar {
        display: flex;
        justify-content: center;
        padding: 25px 20px 15px;
        position: static;
    }
    .main-nav,
    .social-icons {
        display: none;
    }
    .hero-album-overlay {
        padding: 20px;
    }
    .hero-album-overlay h2 {
        font-size: 1.3rem;
        white-space: nowrap;
    }
    .video-grid {
        grid-template-columns: 1fr;
    }
    .tour-row {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    .about-container {
        flex-direction: column; 
    }
    .slider-controls {
        display: none; 
    }
}