:root {
    --bg: #050505;
    --panel: #0d0d0f;
    --line: rgba(255,255,255,.12);
    --red: #e02020;
    --white: #fff;
    --black: #000;
    --dgrey: #222;
    --blue: #172454;
    --cream: #f2eee6;
    --muted: #aaa;
}

* {
    box-sizing: border-box;
}

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

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

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

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

/* Header */

.header {
    position: relative;
    width: 100%;
    z-index: 20;
}

.nav {
    display: grid;
    grid-template-columns: 220px 1fr auto;
    align-items: center;
    gap: 40px;
}

.logo img {
    width: 220px;
}

.menu {
    display: flex;
    justify-content: center;
    gap: 34px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.menu a {
    padding: 10px 12px;
    border-radius: 3px;
    
    transition: .2s ease;
}

.menu a.active,
.menu a:hover {
    color: var(--white);
    background: var(--red);
    border-color: var(--red);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.burger {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 4px;
    background: transparent;
    color: var(--white);
    font-size: 26px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 4px;
    background: var(--red);
    color: var(--white);
    font-weight: 900;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .05em;
    border: 1px solid var(--red);
    transition: .2s ease;
}

.btn.outline {
    background: transparent;
    border-color: rgba(255,255,255,.35);
}

.btn:hover {
    filter: brightness(1.1);
}

/* Mobile Menu */

.mobile-menu {
    display: none;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.mobile-menu img {
    width: 150px;
}

.mobile-menu-close {
    background: transparent;
    border: 1px solid rgba(255,255,255,.25);
    color: var(--white);
    width: 42px;
    height: 42px;
    font-size: 28px;
    cursor: pointer;
}

.mobile-menu a {
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    border-bottom: 1px solid rgba(255,255,255,.12);
    padding-left: 12px;
    padding-top: 12px;
    padding-bottom: 12px;
}

.mobile-menu a:hover {
    color: var(--white);
    background: var(--red);
    padding-left: 12px;
    padding-top: 12px;
    padding-bottom: 12px;
}

/* Hero */

.hero {
    min-height: 680px;
    padding: 170px 0 90px;
    background:
        linear-gradient(90deg, rgba(0,0,0,.95) 0%, rgba(0,0,0,.72) 38%, rgba(0,0,0,.25) 75%, rgba(0,0,0,.8) 100%),
        url("../images/deco/lost-souls-samui-01.webp") center/cover;
    border-bottom: 1px solid var(--line);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr 320px;
    gap: 40px;
    align-items: center;
}

.kicker {
    color: var(--red);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .25em;
    margin-bottom: 22px;
}

.hero h1 {
    margin: 0;
    font-size: clamp(54px, 6vw, 94px);
    line-height: .9;
    text-transform: uppercase;
    letter-spacing: -.04em;
}

.hero h1 span {
    color: var(--red);
}

.hero p {
    max-width: 520px;
    color: var(--cream);
    font-size: 18px;
    line-height: 1.6;
    margin: 24px 0 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.live-card {
    background: rgba(0,0,0,.62);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 14px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.live-card small {
    color: var(--red);
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: .14em;
}

.live-card h3 {
    font-size: 28px;
    line-height: 1.1;
    margin: 14px 0 10px;
    text-transform: uppercase;
}

.live-card p {
    font-size: 15px;
    margin: 0 0 20px;
    color: var(--muted);
}

.live-meta {
    display: grid;
    gap: 10px;
    color: #ddd;
    font-size: 14px;
    margin-bottom: 26px;
}

/* Sections */

.section {
    padding: 70px 0;
}

.events-row {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 45px;
    align-items: center;
}

.event-list {
    min-width: 0;
}

.section-title h2 {
    font-size: 36px;
    text-transform: uppercase;
    margin: 0 0 14px;
    letter-spacing: .03em;
}

.red-line {
    width: 52px;
    height: 3px;
    background: var(--red);
    margin-bottom: 24px;
}

.section-title p {
    color: var(--muted);
    line-height: 1.6;
}

.event-list {
    display: grid;
    grid-template-columns: repeat(6, minmax(150px, 1fr));
    gap: 24px;
}

.event-card img {
    aspect-ratio: 1 / 1.08;
    width: 100%;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,.18);
}

.event-card .date {
    color: var(--red);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    margin-top: 14px;
}

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

.event-card p {
    color: var(--muted);
    font-size: 14px;
    margin: 0;
}

/* Feature Panels */

.feature-strip {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1.1fr;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.feature-panel {
    min-height: 300px;
    padding: 42px;
    border-right: 1px solid var(--line);
    background: var(--panel);
}

.feature-panel.image {
    padding: 0;
}

.feature-panel.image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-panel h3 {
    color: var(--red);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .16em;
    margin: 0 0 14px;
}

.feature-panel h2 {
    font-size: 34px;
    line-height: 1.1;
    text-transform: uppercase;
    margin: 0 0 18px;
}

.feature-panel p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 26px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.gallery-grid img {
    aspect-ratio: 1.3 / 1;
    object-fit: cover;
}

/* Footer */

.footer {
    border-top: 1px solid var(--line);
    padding: 38px 0;
    background: #080808;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.3fr;
    gap: 40px;
    align-items: start;
}

.footer-logo img {
    width: 140px;
    margin-bottom: 18px;
}

.footer h4 {
    color: var(--red);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: .16em;
    margin: 0 0 14px;
}

.footer p,
.footer a {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}

.copyright {
    border-top: 1px solid var(--line);
    text-align: center;
    color: #777;
    padding: 18px;
    font-size: 13px;
}

/* Scroll Top */

.scroll-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    font-size: 22px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: .2s ease;
    z-index: 1000;
}

.scroll-top.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* Generic Cards */

.card {
    transition: .25s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0,0,0,.12);
}

/* Tablet / Mobile Nav Switch */

@media (max-width: 1350px) {
    .nav {
        grid-template-columns: 170px 1fr;
    }

    .logo img {
        width: 170px;
    }

    .menu,
    .header-actions .btn {
        display: none;
    }

    .header-actions {
        justify-content: flex-end;
    }

    .burger {
        display: inline-flex;
    }

    .mobile-menu {
        position: fixed;
        inset: 0;
        z-index: 999;
        background: rgba(5,5,5,.97);
        padding: 28px;
        display: flex;
        flex-direction: column;
        gap: 22px;
        transform: translateX(100%);
        transition: transform .25s ease;
    }
}
@media (max-width: 1350px) {
    .events-row {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .event-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
/* Layout Breakpoints */

@media (max-width: 1000px) {
    .hero-grid,
    .events-row,
    .feature-strip,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .hero {
        min-height: auto;
        padding-top: 140px;
    }

    .feature-panel {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }
}

@media (max-width: 560px) {
    .container {
        width: 90%;
    }

    .nav {
        grid-template-columns: 130px 1fr;
    }

    .logo img {
        width: 130px;
    }

    .hero {
        padding: 60px 0;
    }

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

    .hero p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .event-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .event-card h3 {
        font-size: 15px;
    }

    .event-card p {
        font-size: 12px;
    }

    .feature-panel {
        padding: 28px;
    }

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

    .mobile-menu a {
        font-size: 20px;
    }
}

.nav-translate {
    display: flex;
    align-items: center;
}

.gtranslate_wrapper select {
    background: #050505;
    color: #fff;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 4px;
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
}

.gtranslate_wrapper select:hover {
    border-color: var(--red);
}
.glightbox-container .gslide-title,
.glightbox-container .gslide-desc,
.glightbox-container .gslide-description {
    display: none !important;
}

.glightbox-container .gslide-inner-content,
.glightbox-container .ginner-container {
    background: transparent !important;
}

.glightbox-container .gslide-media {
    box-shadow: none !important;
}

.copyright {
    border-top: 1px solid var(--line);
    background: #050505;
    color: #777;
    padding: 18px 20px;
    text-align: center;
    font-size: 13px;
    line-height: 1.7;
}

.copyright a {
    color: var(--cream);
    font-weight: 800;
    transition: .2s ease;
}

.copyright a:hover {
    color: #fff;
    background: var(--red);
    padding: 3px 6px;
    border-radius: 3px;
}