/* CSS Variables */
:root {
    --bg-color: #050505;
    --text-color: #e0e0e0;
    --accent-color: #c27b4e;
    /* Copper/Burnt Orange from Lux Arcana */
    --accent-hover: #e09e72;
    --secondary-bg: #111111;
    --nav-bg: rgba(5, 5, 5, 0.95);

    --font-body: 'Montserrat', sans-serif;
    --font-heading: 'Cinzel', serif;

    --transition-speed: 0.3s;
}

/* Mobile-only utility */
/* Mobile-only utility */
.mobile-only {
    display: none;
}

/* Mobile Header Socials - Hidden on Desktop */
.mobile-header-socials {
    display: none;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-color);
    font-weight: 700;
    letter-spacing: 0.05em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed), text-shadow var(--transition-speed), transform var(--transition-speed);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1400px;
    /* Wider for inline nav */
    margin: 0 auto;
    padding: 0 30px;
}

.section {
    padding: 100px 0;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-color);
    text-shadow: 0 0 15px rgba(194, 123, 78, 0.4);
}

.section-title::after {
    content: '';
    display: block;
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    margin: 20px auto 0;
}

.dark-bg {
    background-color: var(--secondary-bg);
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: background-color var(--transition-speed), padding var(--transition-speed);
}

header.scrolled {
    background-color: var(--nav-bg);
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

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

.logo-img {
    height: 60px;
    /* Increased size */
    width: auto;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
}

.nav-container-inline {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    /* Brighter white for visibility */
    position: relative;
    font-weight: 400;
    /* Use standard weight for readability, bold on hover maybe? or just keep clean */
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-color);
    transition: width var(--transition-speed);
}

.nav-links a:hover {
    color: var(--accent-color);
    text-shadow: 0 0 10px var(--accent-color);
}

.nav-links a:hover::after {
    width: 100%;
}

.social-icons {
    display: flex;
    gap: 15px;
    padding-left: 20px;
    border-left: 1px solid #333;
}

.social-icons a {
    font-size: 1.1rem;
    color: #888;
}

.social-icons a:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: all 0.3s;
}

/* Hero Section */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

#hero {
    height: 100vh;
    background-image: url('../assets/images/hero_bg.jpg');
    /* New Silhouette Photo */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.hero-logo {
    max-width: 800px;
    width: 90%;
    max-height: 35vh;
    /* Prevent logo taking entire screen */
    margin: 0 auto 20px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.8));
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 0 20px;
    width: 100%;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-weight: 700;
    /* Bold */
    letter-spacing: 5px;
    color: #fff;
    /* Brighter */
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid var(--accent-color);
    background: var(--accent-color);
    /* Colorful */
    color: #000;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    transition: all var(--transition-speed);
    position: relative;
    overflow: hidden;
    border-radius: 50px;
    /* Rounded */
    box-shadow: 0 0 15px rgba(194, 123, 78, 0.3);
}

/* Un-skew text */
.btn>* {
    transform: none;
    display: inline;
}

/* If text is direct child of btn (like text node), we can't unskew easily without wrapper. 
   Assuming basic text for now, but better to wrap content if strictly needed. 
   Simpler approach: skew the container, skew specific children back? 
   Actually, standard way is just transform on btn, and if text looks weird, wrap it. 
   Let's check implementation. The <a class="btn">Text</a> has text directly.
   Skewing text slightly is often acceptable in "tech/metal" designs. 
   Let's leave it skewed for the "speed" look, or verify. 
   User asked for "less square".
*/
.btn:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    color: #000;
    box-shadow: 0 0 30px rgba(194, 123, 78, 0.6);
    transform: translateY(-2px);
}

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

.btn-primary:hover {
    background-color: #fff;
    border-color: #fff;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.5);
}

.btn-outline {
    background-color: transparent;
    border-color: #555;
    color: #ccc;
}

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


/* Bio Section */
.bio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.bio-text p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: #ccc;
    text-align: justify;
}

.band-members {
    margin-top: 20px;
    padding-left: 20px;
}

.band-members li {
    list-style: square;
    margin-bottom: 5px;
    color: var(--accent-color);
}

.band-members li strong {
    color: #fff;
}

.bio-image img {
    width: 100%;
    /* clip-path: polygon(10% 0, 100% 0%, 90% 100%, 0% 100%);  Optional tech shape */
    box-shadow: -10px 10px 0 var(--secondary-bg), -20px 20px 0 var(--accent-color);
    transition: transform var(--transition-speed);
}

/* Removed Hover Effect per request */

/* Music Section */
.album-showcase {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    /* Align top due to detailed tracklist */
    justify-content: center;
    flex-wrap: wrap;
}

.album-art {
    flex: 1;
    max-width: 450px;
}

.album-art img {
    width: 100%;
    box-shadow: 0 0 40px rgba(194, 123, 78, 0.2);
    border: 1px solid #333;
}

.album-details {
    flex: 1;
    max-width: 600px;
    text-align: left;
}

.album-details h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.album-desc {
    margin-bottom: 30px;
    color: #bbb;
    font-size: 1rem;
    font-style: italic;
}

.streaming-links {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: center;
}

.streaming-icon {
    font-size: 2.5rem;
    color: #666;
    transition: all 0.3s ease;
}

.streaming-icon:hover {
    color: var(--accent-color);
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px var(--accent-color));
}

/* Tracklist & Singles Styling */
.tracklist-preview {
    margin-top: 30px;
    text-align: left;
}

.singles-list {
    margin-top: 30px;
    text-align: left;
    /* Match description alignment */
}

.tracklist-preview h4,
.singles-list h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    text-transform: uppercase;
    color: var(--accent-color);
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
}

.tracklist-preview ul li {
    padding: 5px 0;
    font-size: 1rem;
    color: #ccc;
    font-family: 'Lato', sans-serif;
    /* Keep lists readable */
}

.singles-list ul li {
    padding: 5px 0;
    font-size: 1rem;
    color: #ccc;
    font-weight: 700;
}

/* Video Section */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.video-item {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    background: #000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

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

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
}

.gallery-item {
    overflow: hidden;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: grayscale(100%);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

/* Shows Section */
.bandsintown-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--secondary-bg);
    padding: 40px;
    text-align: left;
    border-radius: 5px;
    border: 1px solid #333;
}

.tour-dates-placeholder h3 {
    margin: 20px 0 10px;
}

.tour-dates-placeholder p {
    margin-bottom: 30px;
    color: #888;
}

/* Store Section */
.store-bg {
    background-image: url('../assets/images/live_4.jpg');
    /* Another band photo or atmospheric */
}

#store {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center;
    position: relative;
    text-align: center;
}

.store-content {
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.7);
    padding: 40px;
    border-radius: 5px;
}

.store-content p {
    margin-bottom: 30px;
    font-size: 1.2rem;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Contact / Footer */
.contact-container {
    text-align: center;
}

.contact-methods {
    margin-bottom: 40px;
}

.contact-item i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.contact-item p {
    color: #888;
    margin-bottom: 5px;
}

.contact-item a {
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-socials a {
    font-size: 1.5rem;
    color: #888;
    transition: color 0.3s;
}

.footer-socials a:hover {
    color: var(--accent-color);
}

footer {
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid #222;
    color: #666;
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .mobile-only {
        display: block;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .header-content {
        padding: 0 20px;
    }

    /* Mobile Nav */
    .hamburger {
        display: block;
        z-index: 1001;
        /* Ensure above nav overlay */
        position: relative;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 100%;
        background-color: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1000;
        padding-top: 60px;
        /* Space for close button if needed, but we use hamburger toggle */
    }

    /* Center Mobile Socials in Header */
    .mobile-header-socials {
        display: flex;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        gap: 15px;
    }

    .mobile-header-socials a {
        color: #fff;
        font-size: 1.2rem;
    }

    /* Mobile Socials (Removed from nav in refined plan, removing old class style if redundant, but keeping generic if reused) */
    .mobile-socials {
        display: none;
    }

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

    .nav-links li {
        margin: 15px 0;
        /* Reduced margin */
        opacity: 0;
        animation: navLinkFade 0.5s ease forwards 0.3s;
    }

    @keyframes navLinkFade {
        from {
            opacity: 0;
            transform: translateX(50px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    /* Hamburger Animation to X */
    .hamburger.toggle span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.toggle span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.toggle span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    /* Disable smooth scroll on mobile for interactions */
    html {
        scroll-behavior: auto;
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    .social-icons {
        display: none;
        /* Can be hidden or moved inside slide menu for space */
    }

    /* Hero */
    .hero-content .mobile-only {
        margin-top: 20px;
    }

    .hero-content .btn {
        width: 250px;
        box-sizing: border-box;
    }

    /* Bio */
    .bio-grid {
        grid-template-columns: 1fr;
    }



    /* Music Grid Layout for Mobile */
    .album-showcase {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        align-items: start;
    }

    .album-art {
        max-width: 100%;
        margin-bottom: 0;
        grid-column: 1;
        grid-row: 1;
    }

    .album-details {
        display: contents;
        /* Allows children to be part of the grid */
    }

    .album-details h3 {
        grid-column: 2;
        grid-row: 1;
        font-size: 1.5rem;
        /* Smaller title for side-by-side */
        text-align: left;
        align-self: center;
        margin-bottom: 10px;
    }

    .streaming-links {
        grid-column: 2;
        grid-row: 1;
        align-self: end;
        /* Push to bottom of cell if needed, or just flow */
        margin-top: 50px;
        /* Offset to not overlap title */
        justify-content: flex-start;
        gap: 15px;
        flex-wrap: wrap;
    }

    .streaming-icon {
        font-size: 2rem;
    }

    .album-desc-container {
        display: block;
        /* Unhide */
        grid-column: 1 / -1;
        /* Full width */
        grid-row: 2;
        text-align: justify;
    }

    .album-desc {
        display: block;
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .tracklist-preview,
    .singles-list {
        display: none;
    }

    .footer-rights {
        display: none;
    }
}

/* Small Mobile Override to Stack Music */
@media screen and (max-width: 450px) {
    .album-showcase {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 15px;
    }

    .album-art {
        grid-column: 1 / -1;
        grid-row: 1;
    }

    .album-details h3 {
        grid-column: 1 / -1;
        grid-row: 2;
        text-align: center;
        margin-top: 10px;
        font-size: 2rem;
    }

    .streaming-links {
        grid-column: 1 / -1;
        grid-row: 3;
        justify-content: center;
        margin-top: 10px;
        align-self: center;
    }

    .streaming-icon {
        font-size: 3rem;
    }

    .album-desc-container {
        grid-column: 1 / -1;
        grid-row: 4;
        margin-top: 0;
    }
}