/* Klasic Cafe & Sport Hub - trang chu */

:root {
    --dark: #00151c;
    --dark-2: #04222c;
    --dark-3: #073442;
    --line: rgba(255,255,255,.12);
    --lime: #8bd318;
    --lime-2: #b7ef2e;
    --lime-ink: #0b2000;
    --lime-soft: rgba(139,211,24,.12);
    --text: #0c1a21;
    --text-2: #33454f;
    --muted: #64707b;
    --soft: #f4f7f4;
    --soft-2: #e9efea;
    --card: #fff;
    --border: #e2e9ea;

    --radius-xs: 8px;
    --radius-sm: 12px;
    --radius: 18px;
    --radius-lg: 26px;
    --pill: 999px;

    --shadow-sm: 0 2px 8px rgba(6,32,42,.05), 0 14px 28px -20px rgba(6,32,42,.34);
    --shadow: 0 4px 14px rgba(6,32,42,.06), 0 26px 50px -30px rgba(6,32,42,.42);
    --shadow-lg: 0 8px 26px rgba(6,32,42,.08), 0 44px 84px -42px rgba(6,32,42,.52);
    --shadow-lime: 0 12px 30px -12px rgba(139,211,24,.55);

    --ease: cubic-bezier(.22,.61,.36,1);
    --font: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
    margin: 0;
    color: var(--text);
    background: #fff;
    font-family: var(--font);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
h1, h2, h3 { text-wrap: balance; }

::selection { background: var(--lime); color: var(--lime-ink); }

:focus-visible {
    outline: 2px solid var(--lime-2);
    outline-offset: 3px;
    border-radius: 6px;
}

.container {
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
}

/* ---------- Header ---------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(0,17,23,.86);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    transition: background .3s var(--ease), box-shadow .3s var(--ease);
}

.site-header.is-scrolled {
    background: rgba(0,17,23,.97);
    box-shadow: 0 14px 34px -22px rgba(0,0,0,.9);
}

.nav {
    height: 78px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: height .3s var(--ease);
}

.site-header.is-scrolled .nav { height: 66px; }

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    color: #fff;
    font-weight: 800;
}

.brand-logo {
    width: 152px;
    height: 42px;
    padding: 5px 9px;
    border-radius: 10px;
    background: #fff;
    object-fit: contain;
    box-shadow: 0 8px 20px -12px rgba(0,0,0,.7);
    transition: transform .3s var(--ease);
}

.brand:hover .brand-logo { transform: translateY(-1px); }

.nav-links {
    flex: 1;
    min-width: 0;
    display: flex;
    justify-content: center;
    gap: 2px;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .015em;
}

.nav-links a {
    position: relative;
    display: grid;
    place-items: center;
    height: 38px;
    padding: 0 10px;
    border-radius: var(--pill);
    color: rgba(255,255,255,.82);
    white-space: nowrap;
    transition: color .22s var(--ease), background .22s var(--ease);
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 3px;
    width: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--lime);
    transform: translateX(-50%);
    transition: width .28s var(--ease);
}

.nav-links a:hover {
    color: #fff;
    background: rgba(255,255,255,.07);
}

.nav-links a:hover::after { width: 18px; }

.nav-links a.active {
    color: var(--lime-2);
    background: var(--lime-soft);
}

.nav-links a.active::after { width: 18px; }

.nav-actions {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 8px;
    color: #fff;
}

.nav-actions .btn {
    min-height: 40px;
    padding: 0 17px;
    font-size: 12.5px;
}

.icon-btn {
    width: 38px;
    height: 38px;
    border: 1px solid transparent;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    color: inherit;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background .22s var(--ease), border-color .22s var(--ease), color .22s var(--ease);
}

.icon-btn:hover {
    background: var(--lime-soft);
    border-color: rgba(139,211,24,.4);
    color: var(--lime-2);
}

.user-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 15px;
    border: 1px solid rgba(139,211,24,.34);
    border-radius: var(--pill);
    background: var(--lime-soft);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}

/* ---------- Buttons ---------- */

.btn {
    position: relative;
    border: 0;
    border-radius: var(--pill);
    min-height: 46px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    cursor: pointer;
    font-size: 13.5px;
    font-weight: 800;
    letter-spacing: .01em;
    white-space: nowrap;
    transition: transform .22s var(--ease), box-shadow .22s var(--ease),
                background .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease);
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-lime {
    color: var(--lime-ink);
    background: linear-gradient(135deg, var(--lime-2), var(--lime));
    box-shadow: var(--shadow-lime);
}

.btn-lime:hover { box-shadow: 0 18px 40px -12px rgba(139,211,24,.62); }

.btn-dark {
    color: #fff;
    background: var(--dark);
    box-shadow: 0 12px 28px -14px rgba(0,21,28,.7);
}

.btn-outline {
    color: #fff;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.4);
    backdrop-filter: blur(6px);
}

.btn-outline:hover {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.7);
}

.btn-ghost {
    color: var(--text);
    background: #fff;
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    border-color: var(--lime);
    color: #3f7f04;
    box-shadow: 0 12px 26px -16px rgba(6,32,42,.5);
}

/* ---------- Hero ---------- */

.hero {
    position: relative;
    min-height: 620px;
    color: #fff;
    background: var(--dark);
    overflow: hidden;
    isolation: isolate;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(102deg,
            rgba(0,17,23,.97) 0%,
            rgba(0,17,23,.92) 34%,
            rgba(0,17,23,.5) 62%,
            rgba(0,17,23,.82) 100%),
        url("../img/background.jpg") center / cover no-repeat;
    transform: scale(1.02);
}

/* Halo lime mem phia sau the dat san */
.hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: -18%;
    right: -6%;
    width: 46vw;
    height: 46vw;
    max-width: 720px;
    max-height: 720px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139,211,24,.22), rgba(139,211,24,0) 68%);
    pointer-events: none;
}

.hero-grid {
    min-height: 620px;
    display: grid;
    grid-template-columns: 1.05fr 442px;
    align-items: center;
    gap: 62px;
    padding: 64px 0;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
    padding: 7px 16px 7px 12px;
    border: 1px solid rgba(139,211,24,.38);
    border-radius: var(--pill);
    background: var(--lime-soft);
    color: var(--lime-2);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .09em;
}

.hero-eyebrow .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--lime-2);
    box-shadow: 0 0 0 4px rgba(183,239,46,.2);
}

.hero-copy h1 {
    margin: 0;
    font-size: clamp(40px, 5vw, 70px);
    /* Chu hoa tieng Viet can nhieu chieu cao dong hon de khong cat dau */
    line-height: 1.14;
    letter-spacing: -.02em;
    text-transform: uppercase;
}

.hero-copy h1 span {
    display: block;
    background: linear-gradient(96deg, var(--lime-2), var(--lime) 62%, #6fb80c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-copy p {
    max-width: 520px;
    margin: 22px 0 30px;
    color: rgba(255,255,255,.86);
    font-size: 18.5px;
    line-height: 1.62;
}

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

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,.14);
}

.hero-stat {
    display: grid;
    gap: 2px;
    padding: 12px 20px 12px 0;
    border-right: 1px solid rgba(255,255,255,.12);
}

.hero-stat:last-child { border-right: 0; padding-right: 0; }

.hero-stat b {
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: var(--lime-2);
}

.hero-stat span {
    color: rgba(255,255,255,.7);
    font-size: 12.5px;
    font-weight: 600;
}

/* ---------- The dat san nhanh ---------- */

.booking-card {
    position: relative;
    background: #fff;
    color: var(--text);
    border: 1px solid rgba(255,255,255,.6);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-lg);
}

.booking-card::before {
    content: "";
    position: absolute;
    left: 30px;
    right: 30px;
    top: 0;
    height: 4px;
    border-radius: 0 0 4px 4px;
    background: linear-gradient(90deg, var(--lime-2), var(--lime));
}

.booking-card h2 {
    margin: 0 0 22px;
    font-size: 26px;
    line-height: 1.2;
    letter-spacing: -.02em;
    text-transform: uppercase;
}

.tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    margin-bottom: 20px;
    padding: 4px;
    border-radius: var(--pill);
    background: var(--soft-2);
}

.tab {
    min-height: 38px;
    border: 0;
    border-radius: var(--pill);
    background: transparent;
    color: var(--muted);
    font-weight: 800;
    font-size: 13.5px;
    cursor: pointer;
    transition: background .22s var(--ease), color .22s var(--ease), box-shadow .22s var(--ease);
}

.tab:hover { color: var(--text-2); }

.tab.active {
    background: #fff;
    color: #3f7f04;
    box-shadow: 0 2px 8px rgba(6,32,42,.12);
}

.form-field { margin-bottom: 18px; }

.form-field label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-2);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.input {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: #fff;
    padding: 0 14px;
    color: var(--text);
    outline: none;
    transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}

.input:hover { border-color: #c9d4d5; }

.input:focus {
    border-color: var(--lime);
    box-shadow: 0 0 0 4px rgba(139,211,24,.16);
}

.time-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
}

.slot {
    min-height: 42px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: #fff;
    color: var(--text-2);
    font-size: 12.5px;
    font-weight: 700;
    cursor: pointer;
    transition: border-color .2s var(--ease), background .2s var(--ease),
                color .2s var(--ease), transform .2s var(--ease);
}

.slot:hover {
    border-color: var(--lime);
    background: rgba(139,211,24,.08);
    transform: translateY(-1px);
}

.slot.active {
    border-color: transparent;
    background: linear-gradient(135deg, var(--lime-2), var(--lime));
    color: var(--lime-ink);
    box-shadow: var(--shadow-lime);
}

/* ---------- Dai tinh nang ---------- */

.quick-features {
    position: relative;
    z-index: 3;
    margin-top: -1px;
    background: var(--dark);
    color: #fff;
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.feature-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.feature {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 18px;
    padding: 30px 32px;
    border-left: 1px solid rgba(255,255,255,.07);
    transition: background .3s var(--ease);
}

.feature:first-child { border-left: 0; }
.feature:hover { background: rgba(139,211,24,.06); }

.feature-icon {
    width: 52px;
    height: 52px;
    border: 1px solid rgba(139,211,24,.45);
    border-radius: 15px;
    background: var(--lime-soft);
    display: grid;
    place-items: center;
    color: var(--lime-2);
    transition: transform .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}

.feature:hover .feature-icon {
    transform: translateY(-2px) rotate(-3deg);
    background: rgba(139,211,24,.2);
    box-shadow: 0 14px 28px -16px rgba(139,211,24,.8);
}

.feature h3 {
    margin: 0 0 7px;
    font-size: 14.5px;
    letter-spacing: .01em;
    text-transform: uppercase;
}

.feature p {
    margin: 0;
    color: rgba(255,255,255,.72);
    font-size: 13px;
    line-height: 1.55;
}

/* ---------- Khung section ---------- */

main { background: #fff; }

.section { padding: clamp(52px, 6vw, 88px) 0; }

.section--alt {
    background: var(--soft);
    border-top: 1px solid var(--soft-2);
    border-bottom: 1px solid var(--soft-2);
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.section-heading { display: grid; gap: 10px; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #4d8f05;
    font-size: 11.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .14em;
}

.eyebrow::before {
    content: "";
    width: 26px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--lime), var(--lime-2));
}

.section-title {
    margin: 0;
    font-size: clamp(24px, 2.6vw, 34px);
    line-height: 1.22;
    letter-spacing: -.025em;
    text-transform: uppercase;
}

.view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 4px;
    color: #4d8f05;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
    transition: gap .22s var(--ease), color .22s var(--ease);
}

.view-all:hover { gap: 13px; color: #3b7005; }

.filters {
    display: inline-flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 26px;
    padding: 5px;
    border: 1px solid var(--border);
    border-radius: var(--pill);
    background: #fff;
}

.filter {
    border: 0;
    background: transparent;
    min-height: 34px;
    padding: 0 18px;
    border-radius: var(--pill);
    font-size: 12.5px;
    font-weight: 800;
    color: var(--text-2);
    cursor: pointer;
    transition: background .22s var(--ease), color .22s var(--ease), box-shadow .22s var(--ease);
}

.filter:hover { background: var(--soft-2); }

.filter.active {
    background: linear-gradient(135deg, var(--lime-2), var(--lime));
    color: var(--lime-ink);
    box-shadow: var(--shadow-lime);
}

/* ---------- The (card) ---------- */

.card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.card {
    display: flex;
    flex-direction: column;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}

a.card:hover,
.card:hover {
    transform: translateY(-5px);
    border-color: rgba(139,211,24,.5);
    box-shadow: var(--shadow);
}

.media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #0f2a32;
}

.media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
}

.card:hover .media img { transform: scale(1.06); }
.media.court img { object-position: center 62%; }

.media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,12,17,.5), rgba(0,12,17,.05) 52%, transparent);
}

.play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(255,255,255,.85);
    background: rgba(0,0,0,.3);
    backdrop-filter: blur(4px);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 19px;
    padding-left: 3px;
    transition: background .28s var(--ease), color .28s var(--ease),
                border-color .28s var(--ease), transform .28s var(--ease);
}

.card:hover .play {
    transform: translate(-50%, -50%) scale(1.08);
    border-color: var(--lime-2);
    background: linear-gradient(135deg, var(--lime-2), var(--lime));
    color: var(--lime-ink);
}

.duration {
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 2;
    background: rgba(0,0,0,.72);
    color: #fff;
    border-radius: 6px;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 800;
}

.card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 18px;
}

.badge {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    min-height: 25px;
    padding: 0 11px;
    border-radius: var(--pill);
    color: var(--lime-ink);
    background: linear-gradient(135deg, var(--lime-2), var(--lime));
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.badge.blue {
    color: #fff;
    background: linear-gradient(135deg, #6366f1, #4338ca);
}

.card h3 {
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 1.45;
    letter-spacing: -.015em;
}

.meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
    color: var(--muted);
    font-size: 12.5px;
    line-height: 1.5;
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #3f7f04;
    font-weight: 800;
}

.empty-state {
    padding: 56px 24px;
    border: 1px dashed #cfdad2;
    border-radius: var(--radius);
    background: #fff;
    text-align: center;
    color: var(--muted);
    font-size: 14.5px;
}

/* ---------- Co so (venue) ---------- */

.venue {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    align-items: stretch;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow .3s var(--ease);
}

.venue:hover { box-shadow: var(--shadow); }

.venue-media {
    position: relative;
    min-height: 340px;
    overflow: hidden;
    background: #0f2a32;
}

.venue-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
    transition: transform .7s var(--ease);
}

.venue:hover .venue-media img { transform: scale(1.05); }

.venue-media .status {
    position: absolute;
    left: 18px;
    top: 18px;
    z-index: 2;
    padding: 8px 15px;
    border-radius: var(--pill);
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(6px);
    box-shadow: 0 10px 24px -14px rgba(0,0,0,.6);
    font-size: 12.5px;
}

.venue-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: clamp(24px, 3vw, 40px);
}

.venue-body h3 {
    margin: 0;
    font-size: clamp(21px, 2.2vw, 28px);
    line-height: 1.3;
    letter-spacing: -.02em;
}

.venue-body > p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.venue-facts {
    display: grid;
    gap: 11px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.venue-facts li {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 11px;
    align-items: start;
    color: var(--text-2);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
}

.venue-facts li::before {
    content: "";
    width: 20px;
    height: 20px;
    margin-top: 1px;
    border-radius: 50%;
    background: var(--lime-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234d8f05' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 13 4 4L19 7'/%3E%3C/svg%3E") center / 12px no-repeat;
}

.venue-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: auto;
    padding-top: 6px;
}

/* ---------- Giai dau + tin tuc ---------- */

.split-section {
    display: grid;
    grid-template-columns: 1fr 1.34fr;
    gap: 40px;
    align-items: start;
}

.event-list { display: grid; gap: 14px; }

.event {
    display: grid;
    grid-template-columns: 116px 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}

.event:hover {
    transform: translateX(3px);
    border-color: rgba(139,211,24,.5);
    box-shadow: var(--shadow);
}

.event img {
    width: 116px;
    height: 78px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.event h3 {
    margin: 0 0 6px;
    font-size: 15.5px;
    line-height: 1.35;
    letter-spacing: -.015em;
}

.event p {
    margin: 0;
    color: var(--muted);
    font-size: 12.5px;
    line-height: 1.6;
}

.event .btn {
    min-height: 40px;
    padding: 0 18px;
    font-size: 12.5px;
}

.event-empty {
    padding: 34px 24px;
    border: 1px dashed #cfdad2;
    border-radius: var(--radius);
    background: #fff;
    color: var(--muted);
    text-align: center;
    font-size: 14px;
}

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

.news-card .media { aspect-ratio: 16 / 11; }
.news-card h3 { font-size: 15px; }

.news-card .meta {
    margin: 0 0 9px;
    color: #4d8f05;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: auto;
    padding-top: 12px;
    color: #3b7f05;
    font-size: 12.5px;
    font-weight: 800;
    transition: gap .22s var(--ease);
}

.news-card:hover .read-more { gap: 12px; }

/* ---------- CTA ---------- */

.cta {
    position: relative;
    background: linear-gradient(118deg, var(--lime-2), var(--lime) 58%, #74bd0d);
    color: var(--lime-ink);
    overflow: hidden;
}

.cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 82% 120%, rgba(255,255,255,.42), transparent 58%);
    pointer-events: none;
}

.cta-inner {
    position: relative;
    min-height: 132px;
    display: grid;
    grid-template-columns: 62px 1fr auto;
    align-items: center;
    gap: 22px;
    padding: 30px 0;
}

.cta-icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    background: rgba(255,255,255,.42);
    font-size: 32px;
    line-height: 1;
}

.cta h2 {
    margin: 0 0 5px;
    font-size: clamp(21px, 2.3vw, 28px);
    line-height: 1.25;
    letter-spacing: -.02em;
    text-transform: uppercase;
}

.cta p {
    margin: 0;
    font-weight: 600;
    opacity: .82;
}

/* ---------- Footer ---------- */

.site-footer {
    background: var(--dark);
    color: #fff;
    padding: 62px 0 22px;
}

.site-footer .brand-logo { margin-bottom: 18px; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr .7fr .8fr 1fr 1.05fr;
    gap: 40px;
    padding-bottom: 38px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-grid h3 {
    margin: 0 0 16px;
    color: var(--lime-2);
    font-size: 12.5px;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.footer-grid p,
.footer-grid li {
    color: rgba(255,255,255,.72);
    font-size: 13.5px;
    line-height: 1.85;
}

.footer-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-grid ul a {
    display: inline-block;
    transition: color .2s var(--ease), transform .2s var(--ease);
}

.footer-grid ul a:hover {
    color: var(--lime-2);
    transform: translateX(3px);
}

.newsletter {
    display: flex;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: var(--pill);
    background: rgba(255,255,255,.05);
    overflow: hidden;
    height: 46px;
    transition: border-color .22s var(--ease), box-shadow .22s var(--ease);
}

.newsletter:focus-within {
    border-color: rgba(139,211,24,.6);
    box-shadow: 0 0 0 4px rgba(139,211,24,.14);
}

.newsletter input {
    flex: 1;
    min-width: 0;
    border: 0;
    background: transparent;
    color: #fff;
    padding: 0 18px;
    outline: none;
}

.newsletter input::placeholder { color: rgba(255,255,255,.45); }

.newsletter button {
    width: 52px;
    border: 0;
    background: linear-gradient(135deg, var(--lime-2), var(--lime));
    color: var(--lime-ink);
    cursor: pointer;
    font-weight: 900;
    transition: filter .2s var(--ease);
}

.newsletter button:hover { filter: brightness(1.08); }

.footer-bottom {
    padding-top: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: rgba(255,255,255,.54);
    font-size: 12.5px;
}

.payments {
    display: flex;
    gap: 10px;
}

.payments span {
    padding: 5px 11px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 6px;
    background: rgba(255,255,255,.04);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
}

/* ---------- Nut lien he noi + modal ---------- */

.contact-anchor {
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-fab {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 80;
    width: 66px;
    height: 66px;
    border: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lime-2), var(--lime));
    color: var(--lime-ink);
    box-shadow: 0 18px 42px -12px rgba(139,211,24,.6);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}

.contact-fab:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 24px 56px -14px rgba(139,211,24,.7);
}

.contact-fab::before,
.contact-fab::after {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px solid rgba(158,242,26,.7);
    animation: contactPulse 2.4s ease-out infinite;
}

.contact-fab::after { animation-delay: 1.2s; }
.contact-fab svg { position: relative; z-index: 1; }

.contact-fab-label {
    position: absolute;
    right: 78px;
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    padding: 0 16px;
    border-radius: var(--pill);
    background: var(--dark);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 14px 30px -12px rgba(0,18,24,.8);
}

@keyframes contactPulse {
    0% { opacity: .75; transform: scale(.84); }
    70%, 100% { opacity: 0; transform: scale(1.34); }
}

.lead-modal,
.auth-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(1, 12, 17, .7);
    backdrop-filter: blur(10px);
}

.lead-modal { z-index: 90; }
.auth-modal { z-index: 200; background: rgba(0, 12, 16, .74); }

.lead-modal.active,
.auth-modal.active { display: flex; }

.lead-dialog {
    width: min(940px, 100%);
    max-height: min(780px, calc(100vh - 36px));
    overflow: auto;
    background:
        linear-gradient(135deg, rgba(0,18,24,.97), rgba(0,40,51,.9)),
        url("../img/background.jpg") center / cover no-repeat;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: var(--radius-lg);
    padding: 26px;
    color: #fff;
    box-shadow: 0 40px 90px -30px rgba(0,0,0,.8);
    animation: dialogIn .3s var(--ease);
}

@keyframes dialogIn {
    from { opacity: 0; transform: translateY(16px) scale(.985); }
    to { opacity: 1; transform: none; }
}

.lead-modal-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.lead-modal-title {
    display: flex;
    align-items: center;
    gap: 18px;
}

.mail-icon {
    width: 72px;
    height: 72px;
    flex: 0 0 auto;
    border-radius: 50%;
    border: 3px solid var(--lime);
    background: var(--lime-soft);
    display: grid;
    place-items: center;
    color: var(--lime-2);
}

.lead-modal-title h2 {
    margin: 0 0 6px;
    font-size: clamp(21px, 2.4vw, 28px);
    line-height: 1.25;
    letter-spacing: -.02em;
    text-transform: uppercase;
}

.lead-modal-title p {
    margin: 0;
    color: rgba(255,255,255,.76);
    font-size: 14px;
    line-height: 1.55;
}

.lead-close,
.auth-close {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.08);
    color: #fff;
    font-size: 23px;
    line-height: 1;
    cursor: pointer;
    transition: background .2s var(--ease), transform .2s var(--ease);
}

.lead-close:hover { background: rgba(255,255,255,.18); transform: rotate(90deg); }

.lead-form {
    background: #fff;
    border-radius: var(--radius);
    padding: 26px;
    color: var(--text);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 18px;
}

.form-grid .wide { grid-column: 1 / -1; }

textarea.input {
    min-height: 92px;
    resize: vertical;
    padding-top: 12px;
    line-height: 1.6;
}

.interest {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.interest button {
    min-height: 46px;
    border: 1px solid var(--border);
    background: #fff;
    border-radius: var(--radius-sm);
    font-weight: 800;
    color: var(--text-2);
    cursor: pointer;
    transition: border-color .2s var(--ease), color .2s var(--ease), background .2s var(--ease);
}

.interest button:hover { border-color: #c9d4d5; }

.interest button.active {
    border-color: var(--lime);
    background: rgba(139,211,24,.1);
    color: #3d8404;
    box-shadow: inset 0 0 0 1px var(--lime);
}

.privacy {
    margin-top: 14px;
    text-align: center;
    color: #8d979d;
    font-size: 12.5px;
}

/* ---------- Modal dang nhap / dang ky ---------- */

.auth-dialog {
    width: min(452px, 100%);
    border-radius: var(--radius-lg);
    background: #fff;
    color: var(--text);
    box-shadow: 0 40px 90px -30px rgba(0,0,0,.7);
    overflow: hidden;
    animation: dialogIn .3s var(--ease);
}

.auth-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 24px 26px;
    background: linear-gradient(135deg, #f4ffe4, #fff 70%);
    border-bottom: 1px solid var(--border);
}

.auth-head h2 {
    margin: 0;
    font-size: 23px;
    letter-spacing: -.025em;
}

.auth-close {
    border-color: var(--border);
    background: var(--soft-2);
    color: var(--text-2);
    font-weight: 900;
}

.auth-close:hover { background: #dee6df; transform: rotate(90deg); }

.auth-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    margin: 20px 26px 0;
    padding: 4px;
    border-radius: var(--pill);
    background: var(--soft-2);
}

.auth-tab {
    min-height: 40px;
    border: 0;
    border-radius: var(--pill);
    background: transparent;
    cursor: pointer;
    font-weight: 800;
    color: var(--muted);
    transition: background .22s var(--ease), color .22s var(--ease), box-shadow .22s var(--ease);
}

.auth-tab.active {
    background: #fff;
    color: #3f7f04;
    box-shadow: 0 2px 8px rgba(6,32,42,.12);
}

.auth-form {
    display: none;
    padding: 22px 26px 26px;
}

.auth-form.active { display: block; }

.auth-field { margin-bottom: 15px; }

.auth-field label {
    display: block;
    margin-bottom: 7px;
    font-size: 12.5px;
    font-weight: 800;
    color: var(--text-2);
}

.auth-input {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0 14px;
    outline: none;
    transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}

.auth-input:focus {
    border-color: var(--lime);
    box-shadow: 0 0 0 4px rgba(139, 211, 24, .16);
}

.auth-message {
    min-height: 22px;
    margin: 0 0 12px;
    color: #d03b2f;
    font-size: 13px;
    font-weight: 700;
}

.auth-message.success { color: #3d8508; }

/* ---------- Hieu ung xuat hien ---------- */

html.reveal-init .reveal {
    opacity: 0;
    transform: translateY(20px);
}

html.reveal-init .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: opacity .65s var(--ease), transform .65s var(--ease);
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    html.reveal-init .reveal { opacity: 1; transform: none; }
    .contact-fab::before,
    .contact-fab::after { animation: none; }
    * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* ---------- Responsive ---------- */

.mobile-menu { display: none; }

@media (max-width: 1340px) {
    .hero-grid { grid-template-columns: 1fr 404px; gap: 42px; }
}

/* Duoi nguong nay thanh dieu huong 7 muc khong con du cho -> dung hamburger */
@media (max-width: 1220px) {
    .split-section { grid-template-columns: 1fr; }
    .nav { position: relative; justify-content: space-between; }
    .nav-links {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        display: none;
        grid-template-columns: 1fr;
        gap: 2px;
        padding: 12px;
        border: 1px solid rgba(255,255,255,.12);
        border-radius: var(--radius);
        background: rgba(0,18,24,.98);
        backdrop-filter: blur(18px);
        box-shadow: 0 30px 70px -24px rgba(0,0,0,.9);
    }
    .nav.mobile-open .nav-links { display: grid; }
    .nav-links a {
        height: 48px;
        justify-content: start;
        padding: 0 14px;
        border-radius: var(--radius-sm);
    }
    .nav-links a::after { display: none; }
    .mobile-menu { display: grid; }

    .hero { min-height: auto; }
    .hero-grid { grid-template-columns: 1fr; min-height: auto; padding: 56px 0; }
    .booking-card { max-width: 560px; }
    .feature-row, .card-grid { grid-template-columns: repeat(2, 1fr); }
    .venue { grid-template-columns: 1fr; }
    .venue-media { min-height: 280px; }
    .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 32px 36px; }
}

@media (max-width: 860px) {
    .news-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
    .container { width: min(100% - 28px, 1280px); }
    .nav { height: 66px; }
    .site-header.is-scrolled .nav { height: 62px; }
    .brand { min-width: auto; }
    .brand-logo { width: 130px; height: 38px; }
    .nav-actions .btn-outline,
    .nav-actions .btn-lime { display: none; }
    .icon-btn { width: 42px; height: 42px; }

    .hero-grid { padding: 42px 0 34px; gap: 30px; }
    .hero-copy h1 { font-size: 36px; }
    .hero-copy p { font-size: 16px; }
    .hero-actions .btn { flex: 1 1 auto; }
    .hero-stats { gap: 0; margin-top: 28px; padding-top: 22px; }
    .hero-stat { padding: 10px 16px 10px 0; }
    .hero-stat b { font-size: 20px; }

    .booking-card { padding: 22px; border-radius: var(--radius); }
    .booking-card::before { left: 22px; right: 22px; }
    .time-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .slot { min-height: 46px; font-size: 13px; }

    .section-head { flex-direction: column; align-items: flex-start; gap: 12px; }
    .feature-row, .card-grid, .news-grid, .form-grid, .footer-grid { grid-template-columns: 1fr; }
    .feature { border-left: 0; border-top: 1px solid rgba(255,255,255,.07); padding: 22px 18px; }
    .feature:first-child { border-top: 0; }

    .event { grid-template-columns: 92px 1fr; }
    .event .btn { grid-column: 1 / -1; }
    .event img { width: 92px; height: 68px; }

    .venue-body { gap: 14px; }
    .venue-actions .btn { flex: 1 1 auto; }

    .contact-fab { right: 16px; bottom: 16px; width: 60px; height: 60px; }
    .contact-fab-label { display: none; }

    .lead-modal { padding: 0; align-items: flex-end; }
    .lead-dialog {
        width: 100%;
        max-height: calc(100vh - 18px);
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        padding: 20px;
    }
    .lead-modal-head { align-items: center; }
    .lead-modal-title { gap: 14px; }
    .mail-icon { width: 54px; height: 54px; border-width: 2px; }
    .lead-modal-title p { display: none; }
    .lead-form { padding: 20px; }

    .auth-dialog { border-radius: var(--radius); }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
}
