/* ===========================
   RESET
=========================== */

:root {
    color-scheme: dark;
    --bg: #050505;
    --bg-soft: #090909;
    --surface: rgba(255,255,255,.05);
    --surface-strong: rgba(255,255,255,.12);
    --text: #f6f1e7;
    --muted: rgba(246,241,231,.72);
    --accent: #d4af37;
    --accent-dark: #b18726;
    --border: rgba(255,255,255,.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    min-height: 100vh;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.55;
    color: var(--text);
    background: radial-gradient(circle at top, rgba(212,175,55,.08), transparent 25%), linear-gradient(180deg, #050505 0%, #0b0b0b 100%);
    overflow-x: hidden;
}

img,
video {
    display: block;
    max-width: 100%;
}

button,
input,
textarea,
select {
    font: inherit;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

section {
    padding: 100px 0;
}

.section-block {
    padding-top: 100px;
    padding-bottom: 100px;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 40px;
}

.section-copy {
    max-width: 640px;
    color: var(--muted);
    margin-top: 12px;
    font-size: 1rem;
}

.section-tag,
.eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(212,175,55,.18);
    color: var(--accent);
    letter-spacing: .16em;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 18px;
}

header.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(22px);
    background: rgba(8, 8, 8, .92);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 28px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--accent);
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    letter-spacing: 3px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
}

.logo-svg {
    height: 42px;
    width: auto;
    max-height: 56px;
    max-width: 220px;
    display: block;
    vertical-align: middle;
    object-fit: contain;
}

/* show only the image logo in header; text kept in markup for accessibility fallback via img alt */
.logo .brand-text { display: none; }

@media (max-width: 420px) {
    .logo-svg { height: 36px; max-width: 160px; }
    .brand-text { display: none; }
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(212,175,55,.25);
    background: rgba(212,175,55,.1);
    color: var(--accent);
    font-size: 1rem;
    font-weight: 700;
}

.brand-text {
    font-size: 1rem;
    letter-spacing: 4px;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
    margin: 0 auto;
    padding: 0;
}

.nav-links li {
    white-space: nowrap;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-size: .95rem;
    text-transform: uppercase;
    letter-spacing: .18em;
    transition: color .25s ease, transform .25s ease;
    padding: 10px 0;
}

.nav-links a:hover,
.nav-links a:focus {
    color: var(--accent);
    transform: translateY(-1px);
    outline: none;
    box-shadow: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.lang-select {
    background: rgba(255,255,255,.06);
    color: var(--text);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 12px;
    padding: 10px 14px;
    min-width: 98px;
    flex-shrink: 0;
    appearance: none;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid rgba(212,175,55,.8);
    color: var(--text);
    background: transparent;
    padding: 10px 20px;
    border-radius: 999px;
    transition: background .25s ease, color .25s ease, transform .25s ease;
}

.btn-outline:hover,
.btn-outline:focus {
    background: rgba(212,175,55,.12);
    color: #fff;
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    border: none;
    background: transparent;
    padding: 10px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    border-radius: 999px;
    background: var(--text);
    margin: 5px 0;
    transition: transform .25s ease, opacity .25s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 920px) {
    .header-inner {
        padding: 12px 16px;
        gap: 12px;
        align-items: center;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, .98);
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 18px 16px 24px;
        transform: translateY(-100%);
        transition: transform .28s ease, opacity .28s ease;
        opacity: 0;
        box-shadow: 0 28px 80px rgba(0, 0, 0, .35);
        z-index: 1000;
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links li a {
        width: 100%;
        text-align: left;
        padding: 14px 18px;
        border-radius: 18px;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .header-actions {
        flex-direction: row;
        width: 100%;
        justify-content: space-between;
        gap: 10px;
        padding: 0 16px;
    }

    .lang-select,
    .btn-outline {
        width: auto;
        min-width: 120px;
    }

    .nav-links {
        display: none;
    }

    .nav-links.open {
        display: flex;
    }
}

.skip-link {
    position: absolute;
    left: -999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip-link:focus {
    left: 16px;
    top: 16px;
    width: auto;
    height: auto;
    background: var(--accent);
    color: #050505;
    padding: 10px 14px;
    border-radius: 8px;
    z-index: 1200;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 120px 0 80px;
    background: #050505;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .55;
}

.hero .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6,6,6,.45) 0%, rgba(5,5,5,.92) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    padding: 0 24px;
}

.hero h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(3.4rem, 7vw, 5.5rem);
    letter-spacing: .24em;
    line-height: 1;
    margin: 16px 0 18px;
    color: var(--text);
}

.hero p {
    color: var(--muted);
    font-size: 1.06rem;
    max-width: 720px;
    margin: 0 auto;
}

.buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    margin-top: 2rem;
}

.hero-labels {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 2.2rem;
    color: var(--muted);
    font-size: .95rem;
}

.hero-labels span {
    background: rgba(255,255,255,.05);
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.08);
}

.intro-section {
    padding-top: 110px;
    padding-bottom: 110px;
}

.intro-grid {
    display: grid;
    grid-template-columns: minmax(280px, 1.6fr) 1fr;
    gap: 40px;
    align-items: start;
}

.intro-copy h2,
.about-preview h2,
.biography-hero-copy h1 {
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    line-height: 1.05;
    color: var(--accent);
    margin-bottom: 20px;
}

.intro-copy p,
.about-preview p,
.section-copy,
.biography-story-intro,
.privacy-page p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.feature-list {
    display: grid;
    gap: 16px;
}

.feature-item {
    padding: 22px 24px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.03);
}

.feature-item strong {
    display: block;
    margin-bottom: 8px;
    color: var(--text);
}

.intro-cards {
    display: grid;
    gap: 24px;
}

.feature-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 26px;
    padding: 30px;
    box-shadow: 0 24px 60px rgba(0,0,0,.22);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212,175,55,.25);
    box-shadow: 0 28px 70px rgba(0,0,0,.28);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 14px;
}

.feature-card p {
    color: var(--muted);
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 30px;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.card:hover {
    transform: translateY(-8px);
    border-color: rgba(212,175,55,.3);
    box-shadow: 0 24px 60px rgba(0,0,0,.2);
}

.card h3 {
    margin-bottom: 18px;
    font-size: 1.2rem;
}

.card p {
    color: var(--muted);
    margin-bottom: 24px;
}

.card a {
    color: var(--accent);
    font-weight: 700;
    text-decoration: none;
}

.about-preview,
.biography-story,
.gallery-preview,
.contact-section,
.privacy-page {
    background: rgba(255,255,255,.02);
    border-top: 1px solid rgba(255,255,255,.05);
}

.split-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 36px;
    align-items: start;
}

.about-preview-list,
.preview-item {
    display: grid;
    gap: 18px;
}

.preview-item {
    padding: 24px;
    border-radius: 20px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
}

.preview-item strong {
    font-size: 1.06rem;
    display: block;
    margin-bottom: 10px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    min-height: 260px;
    background: rgba(255,255,255,.02);
    border: 1px solid rgba(255,255,255,.08);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease, filter .4s ease;
}

.gallery-item:hover img {
    transform: scale(1.07);
    filter: saturate(1.08);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: start;
}

.contact-card,
.contact-form-wrapper {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 26px;
    padding: 36px;
}

.contact-card h2,
.privacy-page h1,
.biography-hero-copy h1 {
    font-size: clamp(2rem, 3vw, 3rem);
    margin-bottom: 16px;
    color: var(--text);
}

.contact-card p,
.contact-details p {
    color: var(--muted);
    margin-bottom: 14px;
}

.contact-details strong {
    color: var(--text);
}

.contact-details a {
    color: var(--accent);
    text-decoration: none;
}

form {
    display: grid;
    gap: 20px;
}

label {
    display: grid;
    gap: 10px;
    color: var(--muted);
}

label span {
    font-weight: 600;
    color: var(--text);
}

input,
textarea {
    width: 100%;
    padding: 18px 20px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.04);
    color: var(--text);
    transition: border-color .25s ease, box-shadow .25s ease;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: rgba(212,175,55,.45);
    box-shadow: 0 0 0 5px rgba(212,175,55,.08);
}

textarea {
    min-height: 200px;
    resize: vertical;
}

.form-status {
    margin-top: 12px;
    color: var(--text);
    font-weight: 600;
    min-height: 1.4em;
}

.form-status.loading {
    color: #f5d76e;
}

.form-status.success {
    color: #c6f6d5;
}

.form-status.error {
    color: #f8b4b4;
}

button,
.btn,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 34px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background .25s ease, color .25s ease;
}

.btn {
    background: linear-gradient(180deg, #e1b84a, #c9982a);
    color: #111;
    border: none;
    box-shadow: 0 12px 35px rgba(212,175,55,.23);
}

.btn:hover,
button:hover {
    transform: translateY(-3px);
}

.btn-outline {
    color: var(--text);
    border: 2px solid rgba(212,175,55,.8);
    background: transparent;
}

.btn-outline:hover {
    background: rgba(212,175,55,.14);
    color: var(--accent);
}

.footer-top,
.footer-middle,
.footer-bottom {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.site-footer {
    padding: 54px 0 36px;
    background: linear-gradient(180deg, #050505 0%, #0c0c0c 100%);
    border-top: 1px solid rgba(255,255,255,.06);
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 26px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(212,175,55,.08);
    color: var(--accent);
    text-decoration: none;
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

.footer-middle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.footer-cta {
    color: var(--muted);
    font-size: .96rem;
}

.footer-cta a {
    color: var(--accent);
    text-decoration: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    color: rgba(255,255,255,.65);
    font-size: .9rem;
}

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 24px;
    width: 46px;
    height: 46px;
    display: none;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: #050505;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    box-shadow: 0 18px 40px rgba(0,0,0,.28);
    z-index: 1200;
    transition: transform .2s ease, opacity .2s ease;
}

.back-to-top:hover {
    transform: translateY(-3px);
}

.biography-page-main {
    padding-top: 120px;
}

.biography-hero {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr;
    gap: 40px;
    align-items: center;
    padding-top: 120px;
}

.biography-hero-image {
    min-height: 420px;
    border-radius: 30px;
    background: url('assets/images/gallery/PIC%201-342.jpg') center/cover no-repeat;
    box-shadow: 0 28px 90px rgba(0,0,0,.28);
}

.biography-hero-copy h1 {
    margin-top: 0;
}

.biography-story {
    padding-top: 80px;
}

.biography-story-intro {
    color: var(--muted);
    margin-bottom: 36px;
    font-size: 1rem;
    line-height: 1.85;
}

.biography-story-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.9fr;
    gap: 34px;
    align-items: start;
}

.biography-story-photo img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 24px;
}

.biography-story-copy p {
    margin-bottom: 20px;
    color: var(--muted);
}

.biography-timeline {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.timeline-item {
    border-radius: 22px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    padding: 24px;
}

.timeline-item strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--accent);
}

.timeline-item p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.biography-gallery {
    padding-top: 80px;
}

.biography-gallery-track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.biography-gallery-track figure {
    overflow: hidden;
    border-radius: 24px;
}

.biography-gallery-track img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.biography-gallery-track img:hover {
    transform: scale(1.04);
}

.biography-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
}

.biography-cta .btn-outline {
    padding: 16px 36px;
}

.privacy-page {
    padding-top: 120px;
    padding-bottom: 120px;
}

.privacy-page h1,
.privacy-page h2 {
    color: var(--text);
}

.privacy-page h1 {
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    margin-bottom: 18px;
}

.privacy-page h2 {
    margin-top: 32px;
    margin-bottom: 14px;
    font-size: 1.4rem;
}

.privacy-page ul {
    list-style: disc inside;
    color: var(--muted);
    margin-top: 14px;
    line-height: 1.9;
}

.privacy-page .last-updated {
    margin-top: 32px;
    color: rgba(255,255,255,.65);
}

@media (max-width: 1024px) {
    .intro-grid,
    .contact-grid,
    .split-grid,
    .biography-story-grid,
    .footer-top {
        grid-template-columns: 1fr;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 900px) {
    .hero {
        min-height: 85vh;
    }

    .hero h1 {
        font-size: clamp(2.6rem, 10vw, 4.2rem);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .biography-hero,
    .biography-story-grid,
    .contact-grid,
    .intro-grid {
        grid-template-columns: 1fr;
    }

    .header-inner {
        justify-content: space-between;
        align-items: center;
        padding: 14px 18px;
    }

    .nav-links {
        position: fixed;
        inset: 0 0 0 0;
        background: rgba(10, 10, 10, .96);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 18px;
        padding: 140px 24px 32px;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: transform .28s ease, opacity .28s ease;
        z-index: 1000;
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links li a {
        width: 100%;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        padding: 18px 0;
        font-size: 1.1rem;
        letter-spacing: .22em;
        border-radius: 999px;
        background: rgba(255,255,255,.05);
        transition: background .25s ease, color .25s ease;
    }

    .nav-links li a:hover,
    .nav-links li a:focus {
        background: rgba(212,175,55,.15);
        color: #fff;
    }

    .menu-toggle {
        display: inline-flex;
        z-index: 1100;
    }

    .header-actions {
        display: none;
    }

    .footer-bottom,
    .footer-middle,
    .footer-top {
        flex-direction: column;
        align-items: stretch;
        text-align: left;
    }

    .footer-bottom {
        margin-top: 18px;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

    .hero {
        min-height: 88vh;
        padding: 110px 0 70px;
    }

    .hero h1 {
        font-size: clamp(2rem, 12vw, 2.8rem);
        letter-spacing: .16em;
    }

    .hero p {
        font-size: 1rem;
        padding: 0 10px;
    }

    .section-block,
    section {
        padding: 80px 0;
    }

    .gallery-grid,
    .biography-gallery-track,
    .music-grid {
        grid-template-columns: 1fr;
    }

    .hero-labels,
    .biography-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .btn,
    .btn-outline,
    button,
    input,
    textarea,
    select {
        width: 100%;
    }

    .back-to-top {
        right: 16px;
        bottom: 16px;
    }
}

/* Mobile refinements */
@media (max-width: 640px) {
    .hero-content {
        padding: 0 18px;
    }

    .hero-video {
        display: none;
    }

    .header-inner {
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 12px;
    }

    .nav-links {
        width: 100%;
    }

    .nav-links li a {
        width: 100%;
    }

    .hero-labels {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-labels span {
        padding: 10px 14px;
        font-size: .9rem;
    }

    .buttons {
        flex-direction: column;
        gap: 12px;
    }
}

.btn {
    background: linear-gradient(180deg,#e1b84a,#c9982a);
    color:#111;
    box-shadow:0 8px 24px rgba(212,175,55,.12);
}

.btn:hover {
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(212,175,55,.45);
}

.btn-outline {
    border:2px solid #d4af37;
    color:white;
}

.btn-outline:hover {
    background:#d4af37;
    color:black;
}

/* ===========================
   CONTENT
=========================== */

section{

    padding:120px 8%;
}

.container{

    max-width:1300px;

    margin:auto;
}

section h2{

    text-align:center;

    margin-bottom:60px;

    font-size:3rem;

    font-family:'Cinzel',serif;

    color:#d4af37;

    letter-spacing:5px;
}

/* ===========================
   CARDS
=========================== */

.music-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:30px;
}

.card{

    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(16px);
    border-radius:16px;
    padding:30px;
    text-align:center;
    transition:transform .35s, box-shadow .35s;
}

.card:hover{

    transform:translateY(-8px) scale(1.01);
    border-color:#ffd97a;
    box-shadow:0 18px 40px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.02);
}

.card h3{

    margin-bottom:20px;
}

.card a{

    color:#d4af37;

    text-decoration:none;
}

/* ===========================
   GALLERY
=========================== */

.gallery{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;
}

.gallery div{

    aspect-ratio:1;

    border-radius:15px;

    transition:box-shadow .25s ease;
    overflow:hidden;
}

.gallery img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    border-radius:15px;
    opacity:0;
    transition:opacity .45s ease;
}

.gallery img.loaded{ opacity:1; }

/* GPU hint to make transforms smoother */
.gallery div, .gallery img {
    will-change: opacity;
    backface-visibility: hidden;
}

/* focus states */
a:focus, button:focus, .card:focus {
    outline:3px solid rgba(212,175,55,.9);
    outline-offset:3px;
}

.gallery div:hover{
    /* Removed transform/scale to reduce layout/repaint work; keep a subtle shadow only */
    box-shadow:0 12px 30px rgba(0,0,0,.35);
}

/* ===========================
   CONTACT
=========================== */

form{

    display:flex;

    flex-direction:column;

    gap:20px;

    max-width:700px;

    margin:auto;
}

input,
textarea{

    padding:18px;

    border:none;

    border-radius:12px;

    background:#111;

    color:white;

    font-size:16px;
}

textarea{

    min-height:180px;

    resize:vertical;
}

button{

    padding:18px;

    border:none;

    background:#d4af37;

    color:black;

    font-weight:bold;

    border-radius:50px;

    cursor:pointer;

    transition:.3s;
}

button:hover{

    transform:translateY(-3px);
}

/* ===========================
   FOOTER
=========================== */
/* ===========================
   SITE FOOTER (modern layout)
============================ */

.site-footer{
    background:linear-gradient(180deg,#050505 0%, #070707 100%);
    border-top:1px solid rgba(255,255,255,0.04);
    color:rgba(230,217,179,0.95);
    padding:48px 6%;
}

.site-footer .footer-inner{
    display:grid;
    grid-template-columns:1fr 360px;
    gap:32px;
    align-items:start;
    max-width:1300px;
    margin:0 auto;
}

.footer-col .logo{ font-size:26px; color:#d4af37; font-family:'Cinzel',serif; }
.footer-col h4{ font-family:'Cinzel',serif; color:#d4af37; margin-bottom:10px; letter-spacing:2px; }
.footer-col p.muted{ color:rgba(255,255,255,0.65); margin-top:8px; }
.footer-contact a{ display:block; color:rgba(255,255,255,0.9); text-decoration:none; margin-bottom:6px; }

.footer-social{ display:flex; gap:10px; margin-top:12px; }
.footer-social a{ width:40px; height:40px; display:inline-grid; place-items:center; border-radius:50%; background:transparent; color:#d4af37; text-decoration:none; font-weight:700; border:0; }

.footer-social a svg{ width:18px; height:18px; display:block; fill:currentColor; }
.footer-social a .visually-hidden{ position:absolute; width:1px; height:1px; left:-9999px; top:auto; overflow:hidden; }

.footer-social a{ transition:color .18s ease; }
.footer-social a[data-service="instagram"]:hover{ color:#E1306C; }
.footer-social a[data-service="tiktok"]:hover{ color:#69C9D0; }
.footer-social a[data-service="spotify"]:hover{ color:#1DB954; }
.footer-social a[data-service="youtube"]:hover{ color:#FF0000; }

.site-footer .copyright{ margin-top:18px; color:rgba(255,255,255,0.6); font-size:14px; }

/* responsive */
@media (max-width:900px){
    .site-footer .footer-inner{ grid-template-columns:1fr; text-align:center; }
    .footer-links nav, .footer-contact{ margin-top:8px; }
    .footer-social{ justify-content:center; }
}

@media(max-width:900px){
    .footer-grid{ grid-template-columns:1fr; text-align:center; }
    .footer-contact, .footer-links{ order:3; }
}

.social{

    display:flex;

    justify-content:center;

    gap:25px;

    margin-top:20px;
}

.social a{

    color:#d4af37;

    text-decoration:none;
}

/* ===========================
   RESPONSIVE
=========================== */

/* ensure the page content starts below the fixed header */
main {
    padding-top: 88px;
}

@media (max-width: 700px) {
    .header-inner {
        padding: 14px 16px;
        gap: 10px;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .nav-links {
        inset: 0 0 0 0;
        background: rgba(8, 8, 8, .98);
        padding: 130px 20px 32px;
        gap: 18px;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        position: fixed;
        z-index: 999;
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links li a {
        width: 100%;
        padding: 16px 0;
        font-size: 1.1rem;
        text-align: center;
        border-radius: 999px;
        background: rgba(255,255,255,.05);
    }

    .hero {
        min-height: 80vh;
        padding: 90px 16px 60px;
    }

    .hero-content {
        padding: 0 10px;
    }

    .hero h1 {
        font-size: 2.2rem;
        letter-spacing: .18em;
    }

    .hero p {
        font-size: .95rem;
        margin: 0 auto;
        max-width: 20rem;
    }

    .buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn,
    .btn-outline {
        padding: 14px 18px;
    }

    .hero-labels,
    .biography-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-labels span {
        width: 100%;
        text-align: center;
    }

    .music-grid,
    .gallery-grid,
    .biography-gallery-track {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

@media (max-width: 420px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: .9rem;
    }

    .logo {
        font-size: .9rem;
        letter-spacing: 2px;
    }
}

/* Biography page additions (styles required by about.html) */
.noise-layer {
        position: fixed;
        inset: 0;
        pointer-events: none;
        z-index: 1;
        opacity: 0.06;
        background-image: radial-gradient(rgba(255,255,255,0.22) 0.6px, transparent 0.6px);
        background-size: 2px 2px;
}

.topbar{
    position:fixed;
    top:0; left:0; right:0;
    z-index:1100;
    display:flex;
    align-items:center;
    gap:1rem;
    padding: 1.45rem 2rem 1.2rem;
    background:linear-gradient(180deg, rgba(0,0,0,0.85), rgba(0,0,0,0.35));
}

.brand{ font-family:'Cinzel',serif; font-size:30px; color:#d4af37; letter-spacing:4px; text-decoration:none }
/* make main-nav behave like index: centered container with max width */
.main-nav{
    width: min(1220px, 100%);
    margin: 0 auto;
    display:flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.95rem;
}
.main-nav a{ color:#fff; text-decoration:none; text-transform:uppercase; font-size:0.95rem; font-weight:600; letter-spacing:2px }

/* place language switcher to the far right inside the nav like index */
.main-nav .language-switcher{ margin-left: auto; }
.lang-btn{ width:36px; height:36px; border-radius:999px; background:#d4af37; color:#111; border:0; font-weight:700; display:inline-grid; place-items:center }

/* Ensure both header/nav variants (index/gallery vs about) render the same */
.nav-links,
.main-nav {
    display: flex;
    gap: 1.15rem;
    align-items: center;
}

.nav-links li { list-style: none; }
.nav-links a { color: white; text-decoration: none; text-transform: uppercase; font-size: 0.95rem; letter-spacing: 2px; font-weight:600 }

/* Footer alias - some pages use .site-footer, others .footer */
.site-footer { background: #0e0f12; border-top: 1px solid rgba(255,255,255,0.06); padding: 1.9rem 6.5vw; display:flex; justify-content:space-between; align-items:center; gap:1rem }
.site-footer p, .site-footer a { margin:0; font-size:1.08rem; font-weight:500 }
.site-footer a { color: inherit; text-decoration:none; border:0; padding:0; background:transparent }

/* Improved footer layout and responsive tweaks */
.site-footer{
    padding:40px 6%;
}
.site-footer .footer-inner{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:24px;
    max-width:1300px;
    margin:0 auto;
    flex-wrap:wrap;
}
.footer-brand{ display:flex; flex-direction:column; gap:8px; }
.footer-brand .logo{ font-size:26px; color:#d4af37; font-family:'Cinzel',serif; text-decoration:none }
.footer-brand .muted{ color:rgba(255,255,255,0.7); font-size:0.95rem }
.footer-social{ display:flex; gap:12px; margin-top:6px }
.footer-social a{ width:44px; height:44px; border-radius:10px; background:transparent; display:inline-grid; place-items:center; color:#d4af37; border:0 }
.footer-social a svg{ width:20px; height:20px }
.footer-contact p{ margin:0; color:rgba(255,255,255,0.8); font-size:0.95rem }
.footer-bottom{ display:flex; gap:16px; align-items:center }
.footer-bottom p{ color:rgba(255,255,255,0.65); font-size:0.95rem }
.footer-bottom a{ color:rgba(212,175,55,0.95); text-decoration:underline; border:0; padding:0 }

@media (max-width:900px){
    .site-footer .footer-inner{ flex-direction:column; text-align:center; }
    .footer-bottom{ justify-content:center; margin-top:16px }
    .footer-social{ justify-content:center }
}

/* Alt footer (centered multi-row) */
.alt-footer{ padding:40px 5%; background:linear-gradient(180deg,#050505,#070707); border-top:1px solid rgba(255,255,255,0.04); }
.alt-footer .footer-top{ display:flex; justify-content:center; align-items:center; gap:12px; max-width:1200px; margin:0 auto 12px; }
.alt-footer .logo{ font-size:22px; }
.alt-footer .footer-nav{ display:none }
.alt-footer .footer-middle{ display:flex; flex-direction:column; align-items:center; gap:12px; max-width:1200px; margin:0 auto 12px }
.alt-footer .footer-social{ display:flex; gap:10px }
.alt-footer .footer-social a{ width:40px; height:40px; display:inline-grid; place-items:center; border-radius:8px; background:transparent; color:#d4af37; border:0 }
.alt-footer .footer-cta{ color:rgba(255,255,255,0.86); margin:0; font-size:0.98rem }
.alt-footer .footer-cta a{ color:#d4af37; text-decoration:underline }
.alt-footer .footer-bottom{ display:flex; justify-content:center; gap:18px; align-items:center; margin-top:10px }
.alt-footer .footer-bottom p{ color:rgba(255,255,255,0.6); margin:0 }
.alt-footer .footer-bottom a{ color:rgba(212,175,55,0.95); text-decoration:none }

@media (max-width:700px){
    .alt-footer .footer-top{ flex-direction:column; gap:8px }
    .alt-footer .footer-bottom{ flex-direction:column; gap:6px }
}

/* Headings and typography unified */
h1, h2, h3, h4 { font-family: 'Cinzel', serif; }
body { font-family: 'Montserrat', sans-serif; }

.language-switcher{ display:inline-flex; gap:0.6rem }
.lang-btn{ width:36px; height:36px; border-radius:999px; background:#d4af37; color:#111; border:0; font-weight:700 }

.social-rail{ position:fixed; right:12px; top:64px; display:grid; gap:12px; z-index:1050 }
.social-rail .icon-svg{ width:22px; height:22px; fill:currentColor }

.biography-page-main{ padding-top:86px; background:#020304; }
.biography-hero{ min-height:40vh; display:grid; grid-template-columns:1.1fr 1fr; background:#040506; align-items:stretch }
.biography-hero-image{ background: linear-gradient(90deg, rgba(0,0,0,0.28), rgba(0,0,0,0.64)), url('../images/gallery/PIC%201-342.jpg') center 22%/cover no-repeat; filter:grayscale(1); min-height:360px }
.biography-hero-copy{ display:grid; place-items:center; padding:28px }
.biography-hero-copy h1{ font-family:'Bebas Neue',sans-serif; font-size:48px; letter-spacing:0.06em }

.biography-story{ width:min(1100px,92vw); margin:0 auto; padding:40px 0 }
.biography-story-intro{ color:#f8f8f8; font-size:1.05rem; line-height:1.3; max-width:1100px }
.biography-story-grid{ display:grid; grid-template-columns:44% 1fr; gap:20px; margin-top:20px }
.biography-story-photo img{ width:100%; height:100%; object-fit:cover; min-height:420px }
.biography-story-copy p{ color:#ddd; line-height:1.45; margin-bottom:1rem }

.biography-gallery-track{ width:min(1080px,92vw); margin:36px auto; display:grid; grid-template-columns:repeat(3,1fr); gap:8px }
.biography-gallery-track img{ width:100%; height:100%; object-fit:cover; min-height:300px }

.biography-cta{ width:min(1080px,92vw); margin:28px auto; display:flex; gap:12px }
.outline-button{ border:1px solid rgba(255,255,255,0.6); padding:10px 18px; color:#fff; text-decoration:none }

@media (max-width:900px){
    .biography-hero{ grid-template-columns:1fr }
    .biography-hero-image{ min-height:44vh; background-position:center 18% }
    .biography-story-grid{ grid-template-columns:1fr }
    .main-nav{ display:none }
}