:root {
    --black: #050505;
    --black-soft: #111111;
    --dark: #191919;
    --yellow: #ffd400;
    --yellow-dark: #caa500;
    --white: #f5f5f5;
    --muted: #b9b9b9;
    --line: rgba(255, 212, 0, 0.35);
    --danger: #ffd400;
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--black);
    color: var(--white);
    font-family: Arial, Helvetica, sans-serif;
}

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 88px;
    padding: 14px 34px;
    background: rgba(0, 0, 0, 0.92);
    border-bottom: 1px solid rgba(255, 212, 0, 0.18);
    backdrop-filter: blur(10px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.brand-symbol {
    color: var(--yellow);
    font-size: 48px;
    line-height: 1;
}

.brand-text strong {
    display: block;
    font-size: 33px;
    line-height: 0.95;
    letter-spacing: 1px;
}

.brand-text small {
    display: block;
    color: var(--yellow);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 13px;
}

.main-nav {
    display: flex;
    gap: 26px;
    align-items: center;
}

.main-nav a {
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.5px;
}

.main-nav a:hover {
    color: var(--yellow);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--yellow);
    color: var(--black);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 900;
    padding: 16px 20px;
    border-radius: 5px;
    box-shadow: 0 0 24px rgba(255, 212, 0, 0.18);
}

.hero {
  position: relative;
  min-height: calc(100vh - 74px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.82)),
    url("/assets/img/home/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.hero::before {
    inset: 0;
    background:
        repeating-linear-gradient(
            135deg,
            rgba(255, 212, 0, 0.9) 0 18px,
            rgba(0, 0, 0, 0.9) 18px 34px
        );
    width: 140px;
    opacity: 0.75;
    left: auto;
    right: 0;
}

.hero::after {
    right: 54px;
    bottom: 40px;
    width: 180px;
    height: 180px;
    border: 8px solid rgba(255, 212, 0, 0.5);
    border-radius: 50%;
    content: "☣";
    color: rgba(255, 212, 0, 0.45);
    font-size: 132px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-12deg);
}

.hero-noise {
    position: absolute;
    inset: 0;
    opacity: 0.21;
    background-image:
        linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 38px 38px;
    mix-blend-mode: screen;
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: var(--max);
    margin: 0 auto;
    padding: 86px 34px 70px;
}

.hero-content {
    max-width: 650px;
}

.hazard-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--black);
    background: var(--yellow);
    padding: 8px 14px;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 1px;
    transform: skew(-8deg);
    margin-bottom: 28px;
}

.hero h1 {
    margin: 0;
    font-size: clamp(72px, 10vw, 150px);
    line-height: 0.85;
    letter-spacing: 2px;
    color: var(--white);
    text-transform: uppercase;
    text-shadow: 0 10px 0 rgba(255, 212, 0, 0.16);
}

.hero-subtitle {
    display: inline-block;
    margin: 18px 0 24px;
    background: var(--yellow);
    color: var(--black);
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 900;
    text-transform: uppercase;
    padding: 4px 12px;
}

.hero-text {
    max-width: 520px;
    font-size: 20px;
    line-height: 1.5;
    color: var(--white);
}

.social-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 30px 0 24px;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 104px;
    padding: 18px;
    border: 2px solid var(--yellow);
    background: rgba(0, 0, 0, 0.62);
    text-decoration: none;
    box-shadow: inset 0 0 30px rgba(255, 212, 0, 0.08);
}

.social-card:hover {
    background: rgba(255, 212, 0, 0.12);
}

.social-icon {
    display: grid;
    place-items: center;
    min-width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--black);
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
}

.social-card strong {
    display: block;
    color: var(--yellow);
    text-transform: uppercase;
    font-size: 18px;
    line-height: 1.15;
}

.social-card small {
    display: block;
    margin-top: 6px;
    color: var(--white);
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 22px;
    border: 2px solid var(--yellow);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 900;
    border-radius: 5px;
}

.btn-primary,
.btn-small {
    color: var(--black);
    background: var(--yellow);
}

.btn-outline {
    color: var(--white);
    background: rgba(0, 0, 0, 0.55);
    border-color: rgba(255,255,255,0.75);
}

.btn-black {
    background: var(--black);
    color: var(--yellow);
    border-color: var(--black);
}

.btn-small {
    min-height: 42px;
    padding: 10px 16px;
    font-size: 14px;
}

.section-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 70px 34px;
}

.section-dark {
    position: relative;
    background:
        radial-gradient(circle at 80% 35%, rgba(255, 212, 0, 0.16), transparent 30%),
        linear-gradient(135deg, #101010, #050505);
}

.about {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.90), rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.82)),
        url("/assets/img/home/about-bg.jpg");
    background-size: cover;
    background-position: center 38%;
    background-repeat: no-repeat;
}

.hero-inner,
.about-grid {
    position: relative;
    z-index: 2;
}

.about-grid {
    display: grid;
    grid-template-columns: 90px minmax(320px, 560px);
    gap: 34px;
    align-items: center;
    min-height: 520px;
}

.about-symbol {
    color: var(--yellow);
    font-size: 84px;
    line-height: 1;
}

h2 {
    margin: 0 0 18px;
    font-size: clamp(38px, 5vw, 62px);
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h2::after {
    content: "";
    display: block;
    width: 68px;
    height: 5px;
    margin-top: 14px;
    background: var(--yellow);
}

.center-title {
    text-align: center;
}

.center-title::after {
    margin-left: auto;
    margin-right: auto;
}

.about p,
.booking p,
.contact p {
    color: var(--white);
    line-height: 1.6;
    font-size: 18px;
}

.about-photo-placeholder {
    min-height: 250px;
    display: grid;
    place-items: center;
    border: 2px dashed rgba(255, 212, 0, 0.45);
    background:
        linear-gradient(135deg, rgba(255,212,0,0.12), rgba(255,255,255,0.03)),
        #111;
    color: var(--yellow);
    text-transform: uppercase;
    font-weight: 900;
}

.events {
    background:
        repeating-linear-gradient(
            135deg,
            rgba(255, 212, 0, 0.85) 0 18px,
            rgba(0, 0, 0, 0.95) 18px 34px
        ) top / 100% 60px no-repeat,
        #070707;
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-top: 38px;
}

.event-card {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 16px;
    min-height: 170px;
    padding: 20px;
    background: linear-gradient(135deg, #171717, #0b0b0b);
    border: 1px solid rgba(255, 212, 0, 0.32);
    box-shadow: 0 20px 40px rgba(0,0,0,0.28);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--yellow);
    color: var(--black);
    font-weight: 900;
    line-height: 1;
    padding: 10px 4px;
}

.event-date strong,
.event-date span {
    font-size: 38px;
}

.event-date small {
    margin-top: 8px;
}

.event-card h3 {
    margin: 0 0 8px;
    text-transform: uppercase;
    font-size: 20px;
}

.event-card p {
    margin: 0 0 8px;
    color: var(--white);
}

.event-card small {
    display: block;
    color: var(--muted);
    margin-bottom: 10px;
}

.event-card a {
    color: var(--yellow);
    font-weight: 900;
    text-decoration: none;
}

.event-facebook {
    grid-template-columns: 70px 1fr;
}

.event-icon {
    color: var(--yellow);
    font-size: 54px;
}

.booking {
    position: relative;
    background:
        radial-gradient(circle at 88% 20%, rgba(255, 212, 0, 0.16), transparent 32%),
        linear-gradient(135deg, #121212, #050505);
    color: var(--white);
    border-top: 1px solid rgba(255, 212, 0, 0.25);
}

.booking-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 28px;
    align-items: center;
}

.booking h2::after {
    background: var(--black);
}

.booking p {
    max-width: 880px;
    color: var(--white);
}

.booking-item {
    min-height: 190px;
    padding: 26px 22px;
    border-left: 2px solid rgba(0, 0, 0, 0.35);
}

.booking-item strong {
    display: block;
    text-transform: uppercase;
    font-size: 22px;
    margin-bottom: 14px;
}

.booking-item span {
    line-height: 1.5;
}

.booking-contact-card {
    max-width: 980px;
    margin: 0 auto;
    padding: 42px;
    border: 1px solid rgba(255, 212, 0, 0.35);
    background:
        linear-gradient(135deg, rgba(255, 212, 0, 0.10), transparent 38%),
        rgba(0, 0, 0, 0.62);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
}

.booking-contact-card h2 {
    color: var(--yellow);
}

.booking-contact-card h2::after {
    background: var(--yellow);
}

.contact-inline {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin: 32px 0 28px;
}

.contact-inline .contact-item {
    min-height: 96px;
    padding: 18px;
    border: 1px solid rgba(255, 212, 0, 0.28);
    background: rgba(255, 255, 255, 0.04);
}

.contact-inline .contact-item strong {
    display: block;
    margin-bottom: 8px;
    color: var(--yellow);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.contact-inline .contact-item a {
    color: var(--white);
    text-decoration: none;
    font-weight: 900;
    word-break: break-word;
}

.contact-inline .contact-item a:hover {
    color: var(--yellow);
}

.booking-contact-card .btn-black {
    background: var(--yellow);
    color: var(--black);
    border-color: var(--yellow);
}

.booking-contact-card .btn-black:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--black);
}

.contact {
    background: #090909;
    border-top: 1px solid rgba(255, 212, 0, 0.28);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(4, 1fr) 1.4fr;
    gap: 24px;
    align-items: center;
}

.contact h2 {
    font-size: 42px;
}

.contact-item {
    border-left: 1px solid var(--line);
    padding-left: 18px;
}

.contact-item strong {
    display: block;
    color: var(--yellow);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
}

.footer-logo {
    text-align: right;
}

.footer-logo span {
    display: block;
    color: var(--yellow);
    font-size: 60px;
}

.footer-logo strong {
    display: block;
    font-size: 36px;
    line-height: 0.95;
}

.footer-logo small {
    color: var(--yellow);
    text-transform: uppercase;
    font-weight: 900;
}

.site-footer {
    padding: 22px 18px;
    text-align: center;
    color: var(--muted);
    background: #050505;
    border-top: 1px solid rgba(255, 212, 0, 0.35);
    font-weight: 900;
}

.site-footer::before {
    content: "";
    display: block;
    height: 10px;
    margin: -22px -18px 18px;
    background:
        repeating-linear-gradient(
            135deg,
            rgba(255, 212, 0, 1) 0 18px,
            rgba(0, 0, 0, 1) 18px 34px
        );
}

@media (max-width: 1050px) {
    .main-nav {
        display: none;
    }

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

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

    .about-grid {
        min-height: auto;
    }

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

    .footer-logo {
        text-align: left;
    }
}

@media (max-width: 680px) {
    .site-header {
        position: relative;
        padding: 16px;
        align-items: flex-start;
    }

    .brand-symbol {
        font-size: 38px;
    }

    .booking-contact-card {
    padding: 28px 20px;
    }

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

    .brand-text strong {
        font-size: 25px;
    }

    .header-cta {
        display: none;
    }

    .hero {
        min-height: auto;
    }

    .hero::before {
        width: 54px;
    }

    .hero::after {
        display: none;
    }

    .hero-inner {
        padding: 52px 20px 48px;
    }

    .hero h1 {
        font-size: 64px;
    }

    .hero-text {
        font-size: 17px;
    }

    .social-cards,
    .event-grid {
        grid-template-columns: 1fr;
    }

    .section-inner {
        padding: 52px 20px;
    }

    .booking-item {
        min-height: auto;
        border-left: 0;
        border-top: 2px solid rgba(0,0,0,0.3);
        padding-left: 0;
    }

    .contact-grid {
        gap: 20px;
    }
}

.admin-login-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 30px;
    background:
        radial-gradient(circle at 70% 20%, rgba(255, 212, 0, 0.16), transparent 28%),
        repeating-linear-gradient(
            135deg,
            rgba(255, 212, 0, 0.18) 0 18px,
            transparent 18px 36px
        ),
        #050505;
}

.admin-login-box {
    width: min(100%, 440px);
    padding: 34px;
    background: rgba(10, 10, 10, 0.94);
    border: 1px solid rgba(255, 212, 0, 0.45);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}

.admin-login-logo {
    color: var(--yellow);
    font-size: 70px;
    line-height: 1;
}

.admin-login-box h1 {
    margin: 0 0 8px;
    font-size: 36px;
    text-transform: uppercase;
}

.admin-login-box p {
    margin: 0 0 24px;
    color: var(--muted);
}

.admin-login-box label {
    display: block;
    margin-bottom: 16px;
    color: var(--yellow);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 13px;
}

.admin-login-box input {
    display: block;
    width: 100%;
    margin-top: 8px;
    padding: 14px 16px;
    background: #111;
    border: 1px solid rgba(255, 212, 0, 0.38);
    color: var(--white);
    font-size: 16px;
}

.admin-login-box button {
    width: 100%;
    cursor: pointer;
}

.admin-alert {
    margin-bottom: 18px;
    padding: 12px 14px;
    color: #050505;
    background: var(--yellow);
    font-weight: 900;
}

.admin-dev-note {
    display: block;
    margin-top: 18px;
    color: var(--muted);
    text-align: center;
}

.admin-dashboard {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 280px 1fr;
    background: #080808;
}

.admin-sidebar {
    padding: 28px;
    background: #050505;
    border-right: 1px solid rgba(255, 212, 0, 0.28);
}

.admin-brand span {
    display: block;
    color: var(--yellow);
    font-size: 56px;
    line-height: 1;
}

.admin-brand strong {
    display: block;
    font-size: 28px;
    text-transform: uppercase;
}

.admin-brand small {
    display: block;
    color: var(--yellow);
    text-transform: uppercase;
    font-weight: 900;
}

.admin-sidebar nav {
    display: grid;
    gap: 8px;
    margin-top: 36px;
}

.admin-sidebar nav a {
    display: block;
    padding: 13px 14px;
    color: var(--white);
    text-decoration: none;
    border: 1px solid rgba(255, 212, 0, 0.18);
    background: rgba(255, 255, 255, 0.03);
    font-weight: 900;
    text-transform: uppercase;
}

.admin-sidebar nav a:hover {
    color: var(--black);
    background: var(--yellow);
}

.admin-content {
    padding: 44px;
}

.admin-content h1 {
    margin: 0 0 10px;
    font-size: 54px;
    text-transform: uppercase;
}

.admin-content p {
    color: var(--muted);
}

.admin-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 30px;
}

.admin-card {
    min-height: 160px;
    padding: 24px;
    border: 1px solid rgba(255, 212, 0, 0.35);
    background: linear-gradient(135deg, #161616, #0b0b0b);
}

.admin-card strong {
    display: block;
    color: var(--yellow);
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.admin-card span {
    color: var(--white);
    line-height: 1.5;
}

@media (max-width: 850px) {
    .admin-dashboard {
        grid-template-columns: 1fr;
    }

    .admin-cards {
        grid-template-columns: 1fr;
    }
}

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

.admin-card-link:hover {
    border-color: var(--yellow);
    transform: translateY(-3px);
}

.admin-page-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.admin-page-head h1 {
    margin-bottom: 8px;
}

.admin-table-wrap {
    overflow-x: auto;
    border: 1px solid rgba(255, 212, 0, 0.28);
    background: #0c0c0c;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}

.admin-table th,
.admin-table td {
    padding: 16px 18px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 212, 0, 0.16);
}

.admin-table th {
    color: var(--yellow);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.6px;
    background: #050505;
}

.admin-table td {
    color: var(--white);
}

.admin-table a {
    color: var(--yellow);
    font-weight: 900;
    text-decoration: none;
    margin-right: 12px;
}

.admin-empty {
    padding: 32px;
    border: 1px dashed rgba(255, 212, 0, 0.45);
    background: rgba(255, 212, 0, 0.04);
}

.admin-empty strong {
    display: block;
    color: var(--yellow);
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.admin-empty span {
    color: var(--white);
    line-height: 1.5;
}

@media (max-width: 850px) {
    .admin-page-head {
        align-items: flex-start;
        flex-direction: column;
    }
}

.admin-form {
    max-width: 980px;
    padding: 26px;
    border: 1px solid rgba(255, 212, 0, 0.28);
    background: #0c0c0c;
}

.admin-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 24px;
}

.admin-form label {
    display: block;
    color: var(--yellow);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 13px;
}

.admin-form input,
.admin-form textarea,
.admin-form select {
    display: block;
    width: 100%;
    margin-top: 8px;
    padding: 14px 15px;
    color: var(--white);
    background: #111;
    border: 1px solid rgba(255, 212, 0, 0.35);
    font: inherit;
}

.admin-form textarea {
    resize: vertical;
}

.admin-form-full {
    grid-column: 1 / -1;
}

.admin-checkbox {
    display: flex !important;
    align-items: center;
    gap: 10px;
    grid-column: 1 / -1;
    color: var(--white) !important;
}

.admin-checkbox input {
    width: auto;
    margin: 0;
}

@media (max-width: 760px) {
    .admin-form-grid {
        grid-template-columns: 1fr;
    }
}

.event-card .btn,
.event-card .btn-small,
.event-facebook .btn,
.event-facebook .btn-small {
    color: var(--black);
    background: var(--yellow);
    border-color: var(--yellow);
    text-decoration: none;
}

.event-card .btn:hover,
.event-card .btn-small:hover,
.event-facebook .btn:hover,
.event-facebook .btn-small:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--black);
}

.event-grid {
    justify-content: center;
}

.event-card {
    max-width: 360px;
}

.admin-muted {
    color: var(--muted);
    font-size: 13px;
}

.admin-page-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 0 0 24px;
}

.admin-empty {
    border: 1px solid rgba(255, 216, 0, 0.35);
    background: rgba(255, 216, 0, 0.04);
    padding: 24px;
    margin: 24px 0;
}

.admin-empty strong {
    display: block;
    color: #ffd800;
    font-size: 20px;
    margin-bottom: 8px;
}

.admin-empty span {
    color: #d8d8d8;
}

.admin-photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
    margin: 24px 0;
}

.admin-photo-card {
    border: 1px solid rgba(255, 216, 0, 0.35);
    background: rgba(255, 255, 255, 0.03);
}

.admin-photo-card img {
    display: block;
    width: 100%;
    height: 170px;
    object-fit: cover;
    background: #111;
}

.admin-photo-card-body {
    padding: 14px;
}

.admin-photo-card-body label {
    display: block;
    margin-bottom: 10px;
}

.admin-photo-card-body input {
    width: 100%;
}

.admin-photo-meta {
    color: #aaa;
    font-size: 13px;
    line-height: 1.4;
    margin: 10px 0;
    word-break: break-word;
}

.admin-danger-link {
    color: #ff6666;
    font-weight: 700;
}
/* Public gallery preview on homepage */
.gallery-preview {
    padding: 90px 0;
    border-top: 1px solid rgba(255, 212, 0, 0.22);
    border-bottom: 1px solid rgba(255, 212, 0, 0.18);
}

.gallery-preview .section-inner {
    padding-top: 82px;
    padding-bottom: 82px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 42px;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 212, 0, 0.32);
    background: linear-gradient(135deg, #171717, #0b0b0b);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
}

.gallery-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(135deg, rgba(255, 212, 0, 0.10), transparent 38%),
        radial-gradient(circle at 88% 14%, rgba(255, 212, 0, 0.20), transparent 24%);
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: 2;
}

.gallery-card:hover::before {
    opacity: 1;
}

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

.gallery-card img {
    display: block;
    width: 100%;
    height: 260px;
    object-fit: cover;
    background: #111;
    transition: transform 0.25s ease, filter 0.25s ease;
}

.gallery-card:hover img {
    transform: scale(1.04);
    filter: contrast(1.08) saturate(1.06);
}

.gallery-card-body {
    position: relative;
    z-index: 3;
    padding: 22px;
    border-top: 1px solid rgba(255, 212, 0, 0.22);
}

.gallery-card-body h3 {
    margin: 0 0 10px;
    color: var(--yellow);
    font-size: 24px;
    line-height: 1.05;
    text-transform: uppercase;
}

.gallery-card-body p {
    margin: 0 0 14px;
    color: #ddd;
    line-height: 1.5;
}

.gallery-card-meta {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 9px;
    color: var(--black);
    background: var(--yellow);
    font-size: 13px;
    font-weight: 900;
}

@media (max-width: 1050px) {
    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .gallery-preview {
        padding: 52px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .gallery-card img {
        height: 230px;
    }

    .gallery-card-body {
        padding: 18px;
    }
}

.gallery-detail {
    min-height: calc(100vh - 88px);
}

.gallery-detail-head {
    max-width: 860px;
    margin: 0 auto 42px;
    text-align: center;
}

.gallery-detail-head h1 {
    margin: 18px 0 16px;
    font-size: clamp(46px, 7vw, 84px);
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-detail-head h1::after {
    content: "";
    display: block;
    width: 72px;
    height: 5px;
    margin: 18px auto 0;
    background: var(--yellow);
}

.gallery-detail-head p {
    color: var(--white);
    font-size: 18px;
    line-height: 1.6;
}

.gallery-back-link {
    display: inline-flex;
    color: var(--yellow);
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 900;
    margin-bottom: 10px;
}

.gallery-back-link:hover {
    color: var(--white);
}

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

.gallery-detail-photo {
    position: relative;
    display: block;
    overflow: hidden;
    border: 1px solid rgba(255, 216, 0, 0.32);
    background: #111;
    box-shadow: 0 24px 46px rgba(0, 0, 0, 0.32);
}

.gallery-detail-photo img {
    display: block;
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.25s ease, filter 0.25s ease;
}

.gallery-detail-photo:hover img {
    transform: scale(1.05);
    filter: contrast(1.08);
}

.gallery-detail-photo span {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 14px 16px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), transparent);
    color: var(--white);
    font-weight: 900;
}

.gallery-empty {
    max-width: 720px;
    margin: 0 auto;
    padding: 28px;
    border: 1px solid rgba(255, 216, 0, 0.35);
    background: rgba(255, 216, 0, 0.04);
    text-align: center;
}

.gallery-empty strong {
    color: var(--yellow);
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .gallery-detail-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .gallery-detail-grid {
        grid-template-columns: 1fr;
    }

    .gallery-detail-photo img {
        height: 230px;
    }
}

.repertoire-hero {
    min-height: calc(100vh - 88px);
}

.repertoire-head {
    max-width: 860px;
    margin: 0 auto 38px;
    text-align: center;
}

.repertoire-kicker {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 8px 14px;
    color: var(--black);
    background: var(--yellow);
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 1px;
    transform: skew(-8deg);
}

.repertoire-head h1 {
    margin: 0;
    font-size: clamp(54px, 8vw, 96px);
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.repertoire-head h1::after {
    content: "";
    display: block;
    width: 78px;
    height: 5px;
    margin: 22px auto 0;
    background: var(--yellow);
}

.repertoire-head p {
    max-width: 760px;
    margin: 22px auto 0;
    color: var(--white);
    font-size: 18px;
    line-height: 1.6;
}

.repertoire-filter {
    display: grid;
    grid-template-columns: 1.4fr 1fr auto auto;
    gap: 14px;
    align-items: end;
    margin: 0 0 34px;
    padding: 22px;
    border: 1px solid rgba(255, 216, 0, 0.32);
    background: rgba(0, 0, 0, 0.52);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.repertoire-filter label {
    color: var(--yellow);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 13px;
}

.repertoire-filter input,
.repertoire-filter select {
    display: block;
    width: 100%;
    margin-top: 8px;
    padding: 14px 15px;
    color: var(--white);
    background: #111;
    border: 1px solid rgba(255, 212, 0, 0.35);
    font: inherit;
}

.repertoire-list {
    border: 1px solid rgba(255, 216, 0, 0.32);
    background: rgba(0, 0, 0, 0.38);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
    overflow: hidden;
}

.repertoire-list-head,
.repertoire-row {
    display: grid;
    grid-template-columns: 90px 1.6fr 1.3fr 1fr;
    gap: 0;
    align-items: center;
}

.repertoire-list-head {
    background: #050505;
    border-bottom: 1px solid rgba(255, 216, 0, 0.28);
}

.repertoire-list-head a {
    display: block;
    padding: 18px 20px;
    color: var(--yellow);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.6px;
}

.repertoire-list-head a:hover {
    background: rgba(255, 212, 0, 0.12);
}

.repertoire-row {
    border-bottom: 1px solid rgba(255, 216, 0, 0.14);
    transition: background 0.18s ease, transform 0.18s ease;
}

.repertoire-row:hover {
    background: rgba(255, 212, 0, 0.07);
}

.repertoire-row > div {
    padding: 18px 20px;
}

.repertoire-order {
    color: var(--yellow);
    font-weight: 900;
    font-size: 22px;
}

.repertoire-title {
    color: var(--white);
    font-weight: 900;
    text-transform: uppercase;
}

.repertoire-artist {
    color: var(--white);
}

.repertoire-genre {
    color: var(--black);
    background: var(--yellow);
    justify-self: start;
    margin-left: 20px;
    padding: 7px 12px !important;
    font-weight: 900;
    text-transform: uppercase;
    border-radius: 4px;
}

.admin-filter-form {
    margin-bottom: 28px;
}

@media (max-width: 900px) {
    .repertoire-filter {
        grid-template-columns: 1fr;
    }

    .repertoire-list-head {
        display: none;
    }

    .repertoire-row {
        grid-template-columns: 70px 1fr;
        padding: 16px;
        gap: 8px 12px;
    }

    .repertoire-row > div {
        padding: 0;
    }

    .repertoire-title,
    .repertoire-artist,
    .repertoire-genre {
        grid-column: 2;
    }

    .repertoire-order {
        grid-row: 1 / span 3;
    }

    .repertoire-genre {
        margin-left: 0;
        margin-top: 6px;
    }
}

.song-request-page {
    min-height: calc(100vh - 88px);
}

.song-request-head {
    max-width: 860px;
    margin: 0 auto 38px;
    text-align: center;
}

.song-request-head h1 {
    margin: 0;
    font-size: clamp(52px, 8vw, 92px);
    line-height: 0.9;
    text-transform: uppercase;
}

.song-request-head h1::after {
    content: "";
    display: block;
    width: 78px;
    height: 5px;
    margin: 22px auto 0;
    background: var(--yellow);
}

.song-request-head p {
    max-width: 760px;
    margin: 22px auto 0;
    color: var(--white);
    font-size: 18px;
    line-height: 1.6;
}

.song-request-form,
.song-request-closed {
    max-width: 820px;
    margin: 0 auto;
    padding: 28px;
    border: 1px solid rgba(255, 216, 0, 0.32);
    background: rgba(0, 0, 0, 0.52);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.song-request-form label {
    display: block;
    margin-bottom: 18px;
    color: var(--yellow);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 13px;
}

.song-request-form input,
.song-request-form textarea,
.song-request-form select {
    display: block;
    width: 100%;
    margin-top: 8px;
    padding: 14px 15px;
    color: var(--white);
    background: #111;
    border: 1px solid rgba(255, 212, 0, 0.35);
    font: inherit;
}

.song-request-form textarea {
    resize: vertical;
}

.song-request-closed {
    text-align: center;
}

.song-request-closed strong {
    display: block;
    margin-bottom: 10px;
    color: var(--yellow);
    font-size: 24px;
    text-transform: uppercase;
}

.song-request-closed span {
    display: block;
    max-width: 620px;
    margin: 0 auto 22px;
    color: var(--white);
    line-height: 1.6;
}

.events-page {
  min-height: calc(100vh - 120px);
  padding: 5px 0 80px;
}

.events-page-head {
  max-width: 900px;
  margin: 0 auto 34px;
  text-align: center;
}

.events-page-head h1 {
  margin: 10px 0 14px;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.events-page-head p {
  margin: 0 auto;
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.year-switcher {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 0 22px;
  flex-wrap: wrap;
}

.year-current {
  min-width: 130px;
  padding: 14px 22px;
  border: 1px solid rgba(255, 221, 0, 0.35);
  background: rgba(255, 221, 0, 0.08);
  text-align: center;
}

.year-current strong {
  color: var(--yellow);
  font-size: 28px;
  letter-spacing: 0.08em;
}

.year-list {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 0 0 38px;
  flex-wrap: wrap;
}

.year-list a {
  display: inline-flex;
  padding: 8px 14px;
  border: 1px solid rgba(255, 221, 0, 0.25);
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
}

.year-list a:hover,
.year-list a.is-active {
  background: var(--yellow);
  color: #050505;
}

.events-list {
  display: grid;
  gap: 18px;
}

.event-row-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 26px;
  border: 1px solid rgba(255, 221, 0, 0.22);
  background:
    linear-gradient(135deg, rgba(255, 221, 0, 0.08), transparent 35%),
    rgba(255, 255, 255, 0.03);
}

.event-row-date {
  min-height: 120px;
  border: 1px solid rgba(255, 221, 0, 0.35);
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--yellow);
}

.event-row-date strong {
  font-size: 42px;
  line-height: 1;
}

.event-row-date span {
  font-size: 22px;
  font-weight: 900;
}

.event-row-date small {
  margin-top: 4px;
  color: var(--muted);
  font-weight: 800;
}

.event-row-body h2 {
  margin: 0 0 10px;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.event-row-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.event-row-meta span {
  display: inline-flex;
  padding: 7px 10px;
  border: 1px solid rgba(255, 221, 0, 0.18);
  color: var(--muted);
  font-weight: 800;
}

.event-row-body p {
  margin: 0 0 14px;
  color: var(--text);
  line-height: 1.7;
}

.event-row-body a {
  color: var(--yellow);
  font-weight: 900;
  text-decoration: none;
}

.event-row-body a:hover {
  text-decoration: underline;
}

@media (max-width: 720px) {
  .event-row-card {
    grid-template-columns: 1fr;
  }

  .event-row-date {
    min-height: auto;
    padding: 16px;
    flex-direction: row;
    gap: 10px;
  }

  .event-row-date strong,
  .event-row-date span,
  .event-row-date small {
    margin: 0;
  }
}