/* =====================================================
   STRATOVARIUS 2027
   Darkgrove Band Framework
===================================================== */

/* =========================================================
   GLOBAL SECTION STYLES
========================================================= */

:root {
    --gold: #d7b56d;
    --section-line: rgba(255, 255, 255, .08);
}

.section h2 {
    color: var(--gold);
}

.section.section-alt-1 {
    background: #070707;
}

.section.section-alt-2 {
    background: linear-gradient(
        180deg,
        #242424 0%,
        #151515 100%
    );
}

.section.section-alt-3 {
    background:
        radial-gradient(
            ellipse at 50% 0%,
            rgba(215, 181, 109, .18),
            transparent 55%
        ),
        #100e0b;
}

.section-separated {
    border-top: 1px solid var(--section-line);
}

/* =====================================================
   GENERAL
===================================================== */

html {
    scroll-behavior: smooth;
}

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

body {
    margin: 0;
    background: #000;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

.container {
    width: min(1400px, 90%);
    margin: 0 auto;
}

.breadcrumb-nav {
    display: none;
}

body:not(.homepage) .page {
    padding-top: 70px;
}

.page-header {
    margin-bottom: 40px;
}

.page-header .title {
    max-width: 1100px;
    margin: 0 auto;
    font-size: clamp(2.6rem, 5vw, 3.6rem);
}

#back-to-top{
    position:fixed;
    right:30px;
    bottom:30px;

    width:48px;
    height:48px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:1px solid rgba(198,168,91,.45);
    border-radius:50%;

    background:rgba(10,10,10,.75);
    backdrop-filter:blur(8px);

    color:#c6a85b;
    font-size:22px;

    opacity:0;
    visibility:hidden;
    transform:translateY(15px);

    transition:.25s;
    z-index:9999;
}

#back-to-top.show{
    opacity:1;
    visibility:visible;
    transform:none;
}

#back-to-top:hover{
    background:#c6a85b;
    color:#111;
}

/* =====================================================
   NAVBAR
===================================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition:
        padding .25s ease,
        background-color .25s ease,
        backdrop-filter .25s ease;
}

.navbar.scrolled {
    padding: 8px 0;
    background: rgba(0, 0, 0, .55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 30px;
}

.navbar-logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    text-decoration: none;
}

.navbar-logo img {
    display: block;
    width: auto;
    height: 65px;
    transition:
        height .25s ease,
        opacity .25s ease;
}

.navbar-logo:hover img,
.navbar-logo:focus img {
    opacity: .8;
}

.navbar.scrolled .navbar-logo img {
    height: 40px;
}

.menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu li {
    margin: 0;
    padding: 0;
    list-style: none;
    white-space: nowrap;
}

.menu a {
    position: relative;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    transition: color .25s ease;
}

.menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    background: #d1aa56;
    transition: width .25s ease;
}

.menu a:hover,
.menu a:focus {
    color: #d1aa56;
}

.menu a:hover::after,
.menu a:focus::after,
.menu a.active::after {
    width: 100%;
}

/* =====================================================
   HERO
===================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 140px 0 100px;
    text-align: center;
    background:
        linear-gradient(
            rgba(0, 0, 0, .55),
            rgba(0, 0, 0, .75)
        ),
        url("../img/hero.jpg");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.hero-inner {
    width: 100%;
}

.hero-logo {
    display: block;
    width: min(800px, 90vw);
    height: auto;
    margin: 0 auto 30px;
}

.hero-subtitle {
    margin: 10px 0 35px;
    color: #999;
    font-size: 18px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

/* =====================================================
   BUTTONS
===================================================== */

.button {
    display: inline-block;
    padding: 13px 25px;
    border: 1px solid #fff;
    background: #fff;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    transition:
        background .25s ease,
        color .25s ease,
        border-color .25s ease;
}

.button:hover,
.button:focus {
    background: #c59d4d;
    border-color: #c59d4d;
    color: #000;
}

.button-outline {
    background: transparent;
    color: #fff;
}

.button-outline:hover,
.button-outline:focus {
    background: #fff;
    border-color: #fff;
    color: #000;
}

/* =====================================================
   SECTIONS
===================================================== */

section {
    scroll-margin-top: 82px;
}

.section {
    min-height: 60vh;
    padding: 110px 0;
    color: #fff;
}

.section-dark {
    background: #111;
}

.section h2 {
    margin: 0 0 40px;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* =====================================================
   NEWS
===================================================== */

.news-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
}

.news-item {
    min-width: 0;
    margin: 0;
    padding: 0 0 35px;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.news-title {
    margin: 0 0 12px;
    font-size: 28px;
    line-height: 1.2;
}

.news-title a {
    color: #fff;
    text-decoration: none;
}

.news-title a:hover,
.news-title a:focus {
    color: #c59d4d;
}

.news-date {
    margin: 0 0 20px;
    color: #888;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.news-excerpt {
    margin-bottom: 28px;
    line-height: 1.8;
}

.news-excerpt p:last-child {
    margin-bottom: 0;
}

/* =====================================================
   LIVE DATES
===================================================== */

.tour-content {
    max-width: 1100px;
    margin: 0 auto;
}

.tour-content h2,
.tour-content h3 {
    margin: 0 0 35px;
    color: #d1aa56;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.1;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.tour-content p {
    position: relative;
    display: flex;
    align-items: baseline;
    gap: 16px;
    min-height: 0;
    margin: 0;
    padding: 8px 135px 8px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    font-size: 16px;
    line-height: 1.5;
    transition: background .2s ease;
}

.tour-content p:hover {
    background: rgba(255, 255, 255, .035);
}

.tour-content strong {
    color: #d1aa56;
    font-weight: 700;
    line-height: inherit;
}

.tour-content p > a {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 92px;
    margin: 0;
    padding: 6px 10px;
    border: 1px solid rgba(209, 170, 86, .75);
    border-radius: 3px;
    color: #d1aa56;
    background: transparent;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    transition:
        background .2s ease,
        color .2s ease,
        border-color .2s ease;
}

.tour-content p > a::after {
    content: "→";
    margin-left: 6px;
    font-size: 11px;
}

.tour-content p > a:hover,
.tour-content p > a:focus {
    border-color: #d1aa56;
    background: #d1aa56;
    color: #000;
}

.tour-content s,
.tour-content del {
    color: #777;
}

.tour-content p:last-child {
    display: block;
    min-height: 0;
    margin-top: 35px;
    padding: 25px 0 0;
    border-bottom: 0;
}

.tour-content p:last-child:hover {
    background: transparent;
}

.tour-content p:last-child > a {
    position: static;
    transform: none;
    display: inline-flex;
    min-width: 0;
    padding: 11px 18px;
    border: 1px solid #d1aa56;
    border-radius: 3px;
    color: #d1aa56;
    background: transparent;
    font-size: 12px;
    letter-spacing: 1px;
}

.tour-content p:last-child > a::after {
    content: none;
}

.tour-content p:last-child > a:hover,
.tour-content p:last-child > a:focus {
    background: #d1aa56;
    color: #000;
}

/* =====================================================
   PAST LIVE SHOWS
===================================================== */

.past-shows-content {
    max-width: 1100px;
    margin: 0 auto;
}

.past-shows-content h1 {
    margin: 0 0 40px;
    text-align: center;
}

.past-shows-content h2 {
    margin: 50px 0 18px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(209, 170, 86, .35);
    color: #d1aa56;
    font-size: 30px;
    letter-spacing: 2px;
}

.past-shows-content p {
    margin: 0;
    padding: 9px 0;
    color: #c8c8c8;
    line-height: 1.45;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    transition:
        background .2s ease,
        padding-left .2s ease;
}

.past-shows-content p:hover {
    padding-left: 10px;
    background: rgba(255, 255, 255, .03);
}

.past-shows-content strong {
    color: #d1aa56;
    font-weight: 700;
}

.past-shows-content del {
    opacity: .45;
    text-decoration-thickness: 2px;
}

.past-shows-content a {
    color: #d1aa56;
    text-decoration: none;
}

.past-shows-content a:hover {
    text-decoration: underline;
}

/* =====================================================
   BAND SECTION
===================================================== */

#band {
    position: relative;
    min-height: 720px;
    padding: 100px 0 70px;
    overflow: hidden;
}

#band::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    transform: scale(1.04);

    background:
        linear-gradient(
            rgba(0, 0, 0, .25) 0%,
            rgba(0, 0, 0, .45) 35%,
            rgba(0, 0, 0, .82) 100%
        ),
        url("/bl-themes/Stratovarius2027/img/band.jpg");

    background-size: cover;
    background-position:center 20%;
    background-repeat: no-repeat;
}

#band > .container {
    position: relative;
    z-index: 2;
}

#band h2 {
    margin-bottom: 60px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* Hide the old inline band image */
.band-image,
.band-photo,
#band > .container > img,
#band .band-intro img {
    display: none;
}

.band-intro {
    max-width: 850px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 18px;
    line-height: 1.75;
}

.band-intro > *:last-child {
    margin-bottom: 0;
}

/* Supports both current .band-members links and old .member-grid markup */
.band-members,
.member-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 30px;
    margin-top: 420px;
}

.band-members a,
.member-link {
    display: block;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 700;
    transition:
        color .25s ease,
        transform .25s ease;
}

.band-members a:hover,
.band-members a:focus,
.member-link:hover,
.member-link:focus {
    color: #d1aa56;
    transform: translateY(-3px);
}

.band-members a::after,
.member-link::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    margin: 10px auto 0;
    background: #d1aa56;
    transition: width .25s ease;
}

.band-members a:hover::after,
.band-members a:focus::after,
.member-link:hover::after,
.member-link:focus::after {
    width: 60px;
}

/* Hide old member thumbnail images inside the cover-layout band section */
#band .member-image {
    display: none;
}

#band .member-info {
    padding-top: 0;
    text-align: center;
}

#band .member-name {
    margin: 0;
    color: inherit;
    font-size: inherit;
    line-height: 1.2;
}

#band .member-role {
    margin-top: 7px;
    color: #999;
    font-size: 13px;
    line-height: 1.4;
    letter-spacing: 2px;
    text-transform: uppercase;
}


/* =====================================================
   MEMBER PAGE BACKGROUND
===================================================== */

.page-member {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #000;
}

.page-member::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;

    background:
        linear-gradient(
            rgba(0, 0, 0, .88),
            rgba(0, 0, 0, .94)
        ),
        url("/bl-themes/Stratovarius2027/img/bg.jpg");

    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.page-member > .container {
    position: relative;
    z-index: 2;
}

/* Background for all member pages */

.page:has(.member-profile){
    position:relative;
    overflow:hidden;
    background:#000;
}

.page:has(.member-profile)::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:0;

    background:
        linear-gradient(
            rgba(0,0,0,.88),
            rgba(0,0,0,.94)
        ),
        url("/bl-themes/Stratovarius2027/img/bg.jpg");

    background-size:cover;
    background-position:center top;
    background-repeat:no-repeat;
}

.page:has(.member-profile) .container{
    position:relative;
    z-index:2;
}

/* =====================================================
   MEMBER PAGE
===================================================== */

.member-page {
    position: relative;
    min-height: 100vh;
    padding: 140px 0 100px;
    overflow: hidden;
    background: #080808;
}

.member-page-background{
    position:absolute;
    inset:0;
    z-index:0;

    background:
        linear-gradient(
            rgba(0,0,0,.40) 0%,
            rgba(0,0,0,.55) 45%,
            rgba(0,0,0,.75) 100%
        ),
        url("/bl-themes/Stratovarius2027/img/bg.jpg");

    background-size:cover;
    background-position:center top;
    background-repeat:no-repeat;
}

.member-page > .container {
    position: relative;
    z-index: 2;
}

.member-page-header{
    margin: 20px 0 25px;
}

.member-page-header h1{
    font-size: clamp(2rem, 3vw, 3rem);
}
.member-page-description {
    margin-top: 15px;
    color: #c6a85b;
    font-size: 1.1rem;
}

.member-back-link {
    display: inline-block;
    color: #c6a85b;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .85rem;
}

.member-back-link:hover {
    color: #fff;
}

.member-page-content {
    position: relative;
}

/* =====================================================
   BAND MEMBER PROFILE
===================================================== */

.member-profile {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 42%;
    gap: 70px;
    align-items: start;
    margin-top: 45px;
}

.member-profile{
    background:rgba(0,0,0,.35);
    backdrop-filter:blur(8px);
    border:1px solid rgba(255,255,255,.08);
    border-radius:12px;
    padding:40px;
}

.member-profile .member-info {
    padding-top: 0;
    text-align: left;
    font-size: 18px;
    line-height: 1.7;
}

.member-profile .member-info p {
    margin: 0 0 14px;
}

.member-profile .member-info strong {
    color: #d1aa56;
}

.member-history {
    margin-top: 35px !important;
}

.member-photo {
    max-width: 300px;
    margin-top: -10px;
    margin-left: auto;
}

.member-photo img {
    display: block;
    width: 100%;
    padding: 6px;
    border: 1px solid rgba(209, 170, 86, .5);
    background: #111;
}


/* =========================================================
   RELEASES GRID
========================================================= */

.releases-section{
    padding:100px 0;
}

.release-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:36px;
}

.release-card{
    display:block;
    color:#fff;
    text-decoration:none;
}

.release-card-cover{
    position:relative;
    overflow:hidden;
    border-radius:10px;
    border:1px solid rgba(255,255,255,.12);
    background:#111;
    box-shadow:0 18px 40px rgba(0,0,0,.35);
    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.release-card-cover img{
    display:block;
    width:100%;
    aspect-ratio:1 / 1;
    object-fit:cover;
    transition:transform .35s ease;
}

.release-card-info{
    padding-top:16px;
}

.release-card-info h3{
    margin:0 0 5px;
    font-size:1.15rem;
    letter-spacing:.03em;
}

.release-card-info p{
    margin:0;
    color:rgba(255,255,255,.6);
    font-size:.9rem;
}

.release-card:hover .release-card-cover{
    transform:translateY(-5px);
    border-color:rgba(198,168,91,.7);
    box-shadow:0 25px 55px rgba(0,0,0,.5);
}

.release-card:hover .release-card-cover img{
    transform:scale(1.03);
}

.release-card:hover h3{
    color:#c6a85b;
}

@media (max-width:900px){

    .release-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }

}

@media (max-width:560px){

    .releases-section{
        padding:70px 0;
    }

    .release-grid{
        grid-template-columns:1fr;
        gap:30px;
    }

}

/* =========================================================
   RELEASE PAGE
========================================================= */

.release-page{
    position:relative;
    min-height:100vh;
    padding:140px 0 100px;
    overflow:hidden;
}

.release-page-background{
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            rgba(0,0,0,.42),
            rgba(0,0,0,.72)
        ),
        url("/bl-themes/Stratovarius2027/img/bg.jpg");

    background-size:cover;
    background-position:center top;
    background-repeat:no-repeat;

    z-index:0;
}

.release-page .container{
    position:relative;
    z-index:1;
}

.release-back-link{
    display:inline-block;
    margin-bottom:24px;

    color:rgba(255,255,255,.75);
    text-decoration:none;
    font-size:.9rem;
    letter-spacing:.04em;

    transition:.2s ease;
}

.release-back-link:hover{
    color:#fff;
}

.release-panel{
    display:grid;
    grid-template-columns:minmax(260px, 420px) 1fr;
    gap:50px;

    padding:42px;

    background:rgba(10,10,10,.58);
    border:1px solid rgba(255,255,255,.13);
    border-radius:18px;

    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);

    box-shadow:
        0 30px 80px rgba(0,0,0,.45),
        inset 0 1px 0 rgba(255,255,255,.06);
}

.release-cover img{
    display:block;
    width:100%;
    height:auto;

    border-radius:8px;

    box-shadow:0 20px 45px rgba(0,0,0,.5);
}

.release-header h1{
    margin:0 0 8px;

    font-size:clamp(2rem, 3vw, 3.2rem);
    line-height:1;
    letter-spacing:.02em;
}

.release-header{
    margin-bottom:30px;
}
.release-description{
    margin-bottom:30px;

    color:rgba(255,255,255,.65);
    font-size:1rem;
    letter-spacing:.04em;
}

.release-content{
    color:rgba(255,255,255,.85);
    line-height:1.75;
}

.release-content h2,
.release-content h3{
    margin-top:32px;
    margin-bottom:15px;
    color:#fff;
}

.release-content p{
    margin:0 0 18px;
}

.release-content ol,
.release-content ul{
    padding-left:22px;
}

@media (max-width:800px){

    .release-page{
        padding:110px 0 70px;
    }

    .release-panel{
        grid-template-columns:1fr;
        gap:32px;
        padding:24px;
    }

    .release-cover{
        max-width:440px;
        margin:0 auto;
    }

}

/* =====================================================
   ALBUMS / VIDEOS / CONTACT
===================================================== */

/* =====================================================
   SINGLE PAGES
===================================================== */

.back-link {
    display: inline-block;
    margin-bottom: 30px;
    color: #999;
    font-size: 13px;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
}

.back-link:hover,
.back-link:focus {
    color: #fff;
}

/* =====================================================
   FOOTER
===================================================== */

footer {
    padding: 60px 0;
    background: #050505;
    color: #999;
    font-size: 14px;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-left,
.footer-right {
    color: #666;
    font-size: 13px;
}

.footer-right a {
    color: #d1aa56;
    text-decoration: none;
}

.footer-right a:hover,
.footer-right a:focus {
    color: #fff;
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {

    .navbar .container {
        gap: 20px;
    }

    .menu {
        gap: 16px;
    }

    .menu a {
        font-size: 12px;
    }
}

/* =====================================================
   MOBILE NAVIGATION / CONTENT
===================================================== */

@media (max-width: 900px) {

    .navbar {
        padding: 12px 0;
    }

    .navbar .container {
        flex-direction: column;
        justify-content: center;
        gap: 12px;
    }

    .navbar-logo img {
        height: 42px;
    }

    .navbar.scrolled {
        padding: 7px 0;
        background: rgba(0, 0, 0, .9);
    }

    .navbar.scrolled .navbar-logo img {
        height: 32px;
    }

    .menu {
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px 16px;
    }

    .menu a {
        font-size: 11px;
    }

    .hero {
        padding: 175px 0 80px;
    }

    .hero-logo {
        width: min(700px, 88vw);
        margin-bottom: 24px;
    }

    .hero-subtitle {
        font-size: 16px;
        letter-spacing: 2px;
    }

    .section {
        padding: 80px 0;
    }

    .section h2 {
        margin-bottom: 28px;
    }

    .news-list {
        grid-template-columns: 1fr;
    }

    #band {
        min-height: auto;
        padding: 80px 0;
    }

    .band-members,
    .member-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 320px;
    }
}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 800px) {

    .member-profile {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .member-photo {
        order: -1;
        margin-right: auto;
        margin-left: auto;
    }
}

@media (max-width: 768px) {

    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

@media (max-width: 700px) {

    .tour-content p {
        display: block;
        min-height: 0;
        padding: 14px 10px;
        font-size: 14px;
        line-height: 1.5;
    }

    .tour-content p > a {
        position: static;
        transform: none;
        display: flex;
        width: max-content;
        min-width: 0;
        margin-top: 9px;
        padding: 5px 9px;
    }

    .tour-content p:last-child {
        padding-right: 0;
        padding-left: 0;
    }

    .past-shows-content h2 {
        font-size: 24px;
    }

    .past-shows-content p {
        font-size: 14px;
        line-height: 1.6;
    }
}

@media (max-width: 560px) {

    .container {
        width: min(100% - 32px, 1400px);
    }

    .navbar-logo img {
        height: 36px;
    }

    .navbar.scrolled .navbar-logo img {
        height: 30px;
    }

    .menu {
        gap: 6px 12px;
    }

    .menu a {
        font-size: 10px;
        letter-spacing: .7px;
    }

    .hero {
        min-height: 85vh;
        padding: 180px 0 70px;
    }

    .hero-buttons {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .button {
        width: min(280px, 100%);
    }
}

/* =========================================================
   HOMEPAGE RELEASES GRID
========================================================= */
#albums .container{
    width:min(92vw, 1450px);
}

#albums.releases-section{
    padding:90px 0 110px;
   
}

#albums .release-grid{
    display:grid;
    grid-template-columns:repeat(5, minmax(0,1fr));
    gap:24px;
}

#albums .release-card{
    display:block;
    min-width:0;
    color:#fff;
    text-decoration:none;
}

#albums .release-card-cover{
    width:100%;
    overflow:hidden;
    background:#080808;
    border:1px solid rgba(255,255,255,.12);
    border-radius:8px;
    box-shadow:0 18px 40px rgba(0,0,0,.35);
    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

#albums .release-card-cover img{
    display:block;
    width:100%;
    aspect-ratio:1 / 1;
    object-fit:cover;
    transition:transform .35s ease;
}

#albums .release-card-info{
    padding-top:15px;
}

#albums .release-card-info h3{
    margin:0;
    font-size:1.15rem;
    line-height:1.25;
}

#albums .release-card-info p{
    margin:6px 0 0;
    color:rgba(255,255,255,.6);
    font-size:.9rem;
}

#albums .release-card:hover .release-card-cover{
    transform:translateY(-5px);
    border-color:rgba(198,168,91,.7);
    box-shadow:0 25px 55px rgba(0,0,0,.5);
}

#albums .release-card:hover .release-card-cover img{
    transform:scale(1.03);
}

#albums .release-card:hover h3{
    color:#c6a85b;
}

@media (max-width:1300px){

    #albums .release-grid{
        grid-template-columns:repeat(3, minmax(0, 1fr));
    }

}

@media (max-width:900px){

    #albums .release-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }

}

@media (max-width:560px){

    #albums .release-grid{
        grid-template-columns:1fr;
        gap:30px;
    }

}

#videos{
    
    padding:100px 0;
}
.video-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0,1fr));
    gap:28px;
}

.video-card{
    display:block;
    color:inherit;
    text-decoration:none;
}

.video-card img{
    display:block;
    width:100%;
    aspect-ratio:16/9;
    object-fit:cover;

    border:1px solid rgba(193,164,92,.25);
    border-radius:16px;

    box-shadow:0 8px 24px rgba(0,0,0,.45);

    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.video-card:hover img{
    transform:scale(1.03);
    border-color:#c1a45c;
    box-shadow:
        0 12px 32px rgba(0,0,0,.55),
        0 0 18px rgba(193,164,92,.25);
}

.video-card h3{
    margin:14px 0 0;
    font-size:1.1rem;
    line-height:1.25;
    text-transform:uppercase;
    letter-spacing:.04em;
}

@media (max-width:1000px){
    .video-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media (max-width:650px){
    .video-grid{
        grid-template-columns:1fr;
    }
}

.video-thumb{
    position:relative;
}

.video-thumb img{
    display:block;
    width:100%;
    aspect-ratio:16 / 9;
    object-fit:cover;
}

.video-play{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);

    display:flex;
    align-items:center;
    justify-content:center;

    width:68px;
    height:68px;
    padding-left:5px;

    border:1px solid rgba(193,164,92,.8);
    border-radius:50%;

    color:#fff;
    background:rgba(0,0,0,.68);

    font-size:27px;

    transition:
        transform .25s ease,
        background .25s ease,
        border-color .25s ease;
}

.video-card:hover .video-play{
    transform:translate(-50%,-50%) scale(1.1);
    background:rgba(193,164,92,.9);
    border-color:#c1a45c;
}

.video-lightbox{
    position:fixed;
    inset:0;
    z-index:9999;

    display:none;
    align-items:center;
    justify-content:center;

    padding:40px;

    background:rgba(0,0,0,.92);
}

.video-lightbox.is-open{
    display:flex;
}

.video-lightbox-player{
    width:min(1100px,90vw);
    aspect-ratio:16 / 9;
    box-shadow:0 15px 60px rgba(0,0,0,.8);
}

.video-lightbox iframe{
    display:block;
    width:100%;
    height:100%;
    border:0;
}

.video-lightbox-close{
    position:absolute;
    top:20px;
    right:28px;

    border:0;
    background:none;
    color:#fff;

    font-size:48px;
    line-height:1;
    cursor:pointer;
}

@media (max-width:650px){
    .video-lightbox{
        padding:15px;
    }

    .video-play{
        width:54px;
        height:54px;
        font-size:22px;
    }
}

/* CONTACT */

.contact-section{
    padding:110px 0 80px;
}

.contact-section .container{
    width:min(92vw,1600px);
}

.contact-section h2{
    margin-bottom:55px;
}

/* ---------- CONTACT GRID ---------- */

.contact-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:28px;
    align-items:stretch;
}

.contact-card{
    padding:26px;
    border:1px solid rgba(255,255,255,.12);
    background:rgba(255,255,255,.025);
    min-height:250px;
}

.contact-card h3{
    margin:0 0 22px;
    font-size:1.25rem;
    line-height:1.2;
}

.contact-card-content{
    font-size:.95rem;
    line-height:1.6;
    color:rgba(255,255,255,.84);
}

.contact-card-content p{
    margin:0 0 18px;
}

.contact-card-content p:last-child{
    margin-bottom:0;
}

.contact-card-content strong{
    color:#fff;
}

.contact-card-content a{
    color:inherit;
    text-decoration:none;
    border-bottom:1px solid rgba(255,255,255,.35);
    transition:.2s;
}

.contact-card-content a:hover{
    color:#d7b56d;
    border-color:#d7b56d;
}

.contact-card-logo{
    margin-bottom:20px;
}

.contact-card-logo img{
    display:block;
    max-width:180px;
    max-height:80px;
    width:auto;
    height:auto;
    object-fit:contain;
}

/* ---------- OFFICIAL PARTNERS ---------- */

.sponsors-section{
    margin-top:70px;
    padding-top:45px;
    border-top:1px solid rgba(255,255,255,.12);
    text-align:center;
}

.sponsors-section h3{
    margin:0 0 35px;
    font-size:.9rem;
    letter-spacing:.18em;
    text-transform:uppercase;
    color:rgba(255,255,255,.55);
}

.sponsor-logos{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:50px;
}

.sponsor-logos img{
    display:block;
    max-height:60px;
    width:auto;
    opacity:.75;
    transition:opacity .2s ease, transform .2s ease;
}

.sponsor-logos img:hover{
    opacity:1;
    transform:translateY(-2px);
}

/* ---------- RESPONSIVE ---------- */

@media (max-width:1200px){

    .contact-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

}

@media (max-width:650px){

    .contact-section{
        padding:80px 0 60px;
    }

    .contact-grid{
        grid-template-columns:1fr;
    }

    .contact-card{
        padding:24px;
        min-height:0;
    }

}
.sponsor-row{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:50px;
}
.sponsor-logos a{
    display:flex;
    align-items:center;
    justify-content:center;
    min-width:120px;
}
/* =========================================================
   FOOTER
========================================================= */

.site-footer{
    padding:70px 0 50px;
    border-top:1px solid rgba(255,255,255,.10);
    text-align:center;
}

.site-footer .container{
    width:min(92vw,1200px);
}

/* Logo */

.footer-logo{
    margin-bottom:28px;
}

.footer-logo a{
    display:inline-block;
}

.footer-logo img{
    display:block;
    width:auto;
    height:auto;
    max-width:220px;
    max-height:90px;
    margin:0 auto;
    opacity:.9;
    transition:opacity .25s ease, transform .25s ease;
}

.footer-logo a:hover img{
    opacity:1;
    transform:translateY(-2px);
}

/* Navigation */

.footer-nav{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:18px 30px;
    margin:0 0 38px;
}

.footer-nav a{
    color:rgba(255,255,255,.82);
    font-size:.95rem;
    letter-spacing:.03em;
    text-decoration:none;
    transition:color .2s ease;
}

.footer-nav a:hover{
    color:#d7b56d;
}

/* Copyright */

.footer-copy{
    font-size:.78rem;
    line-height:1.7;
    color:rgba(255,255,255,.45);
}

.footer-copy p{
    margin:0;
}

.footer-framework{
    margin-top:8px;
}

.footer-framework a{
    color:rgba(255,255,255,.6);
    text-decoration:none;
    transition:color .2s ease;
}

.footer-framework a:hover{
    color:#d7b56d;
}

/* Footer icons */

.footer-nav i {
    width: 14px;
    margin-right: 6px;
    opacity: .7;
}

.footer-nav a:hover i {
    opacity: 1;
}

/* Mobile */

@media (max-width: 650px) {

    .site-footer {
        padding: 60px 0 40px;
    }

    .footer-logo img {
        max-width: 180px;
    }

    .footer-nav {
        gap: 14px 22px;
        margin-bottom: 30px;
    }
}

.news-list{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:28px;
}

.news-item{
    display:flex;
    flex-direction:column;
    min-width:0;
    overflow:hidden;
    padding:0;
    border:1px solid rgba(255,255,255,.10);
    border-radius:12px;
    background:rgba(0,0,0,.22);
    box-shadow:0 16px 38px rgba(0,0,0,.25);
}

.news-image{
    display:block;
    width:100%;
    aspect-ratio:16 / 9;
    object-fit:cover;
}

.news-item-content{
    display:flex;
    flex:1;
    flex-direction:column;
    padding:24px;
}

.news-date{
    margin:0 0 12px;
    color:var(--gold);
}

.news-title{
    margin:0 0 14px;
    font-size:1.35rem;
}

.news-excerpt{
    display:-webkit-box;
    overflow:hidden;
    margin:0 0 24px;
    color:rgba(255,255,255,.72);
    -webkit-line-clamp:4;
    -webkit-box-orient:vertical;
}

.news-read-more{
    margin-top:auto;
}

.news-page-content{
    max-width:900px;
    margin:0 auto;
}