:root {
    --cgk-dark: #10131f;
    --cgk-panel: #171b2b;
    --cgk-neon: #ffcf33;
    --cgk-blue: #42c4ff;
    --cgk-pink: #ff4faf;
}

body {
    background: #f8f9fb;
    color: #1d2433;
}

.cgk-nav, .footer {
    background: radial-gradient(circle at top left, #293050, var(--cgk-dark));
}

.status-bar {
    color: #111;
    font-weight: 700;
    padding: .55rem 0;
}

.status-bar.open { background: var(--cgk-neon); }
.status-bar.closed { background: #cfd4dc; }

.hero {
    position: relative;
    overflow: hidden;
    min-height: 75vh;
    display: flex;
    align-items: center;
    color: white;

    background:
        linear-gradient(
            90deg,
            rgba(10,12,22,.88) 0%,
            rgba(10,12,22,.60) 45%,
            rgba(10,12,22,.35) 100%
        ),
        url('../images/hero.jpg');

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

.hero::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 8px;
    background: linear-gradient(90deg, var(--cgk-neon), var(--cgk-blue), var(--cgk-pink));
}

.hero h1 {
    font-size: clamp(2.7rem, 7vw, 5.7rem);
    line-height: .95;
    font-weight: 900;
    letter-spacing: -.05em;
}

.hero .lead {
    max-width: 680px;
    font-size: 1.25rem;
}

.btn-cgk {
    background: var(--cgk-neon);
    border: 0;
    color: #111;
    font-weight: 800;
}

.btn-cgk:hover { background: #ffe07a; color: #111; }

.section-title {
    font-weight: 900;
    letter-spacing: -.03em;
}

.attraction-card {
    border: 0;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 14px 35px rgba(17, 24, 39, .12);
    height: 100%;
}

.attraction-img {
    min-height: 180px;
    background: linear-gradient(135deg, #1b2035, #39416a);
    color: white;
    display: grid;
    place-items: center;
    font-size: 3rem;
}

.callout {
    background: linear-gradient(135deg, #15192a, #293050);
    color: white;
    border-radius: 1.5rem;
    padding: 2rem;
}

.info-card {
    border: 0;
    border-radius: 1rem;
    box-shadow: 0 10px 24px rgba(17, 24, 39, .08);
}

.footer a { color: white; text-decoration: none; }
.footer a:hover { color: var(--cgk-neon); }

.gallery-tile {
    aspect-ratio: 4/3;
    border-radius: 1rem;
    background: linear-gradient(135deg, #28304e, #49548a);
    color: white;
    display: grid;
    place-items: center;
    font-size: 2.5rem;
}

.price-row,
.package-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid rgba(17, 24, 39, .12);
    padding: .85rem 0;
}

.price-row:last-child,
.package-row:last-child {
    border-bottom: 0;
}

.price-row strong {
    white-space: nowrap;
    font-size: 1.15rem;
}

.package-list {
    background: rgba(255,255,255,.08);
    border-radius: 1rem;
    padding: 1rem 1.25rem;
}

.package-row {
    border-bottom-color: rgba(255,255,255,.22);
    align-items: center;
}

.package-row strong,
.package-row span {
    color: white;
    font-size: 1.1rem;
}

.package-row small {
    display: block;
    color: rgba(255,255,255,.75);
    margin-top: .2rem;
}

.package-row span {
    font-weight: 900;
    white-space: nowrap;
}

.gallery-photo {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform .2s ease;
}

.gallery-photo:hover {
    transform: scale(1.03);
}

.attraction-photo {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.map-wrap {
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 10px 24px rgba(17, 24, 39, .12);
}

.map-wrap iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}

.footer {
    color: rgba(255,255,255,.78);
}

.footer h5,
.footer h6 {
    color: white;
    font-weight: 800;
}

.footer p,
.footer li,
.footer small {
    color: rgba(255,255,255,.72);
}

.footer .text-muted {
    color: rgba(255,255,255,.65) !important;
}

.footer hr {
    border-color: rgba(255,255,255,.18);
}