/* ── Golden Lounge KTV ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --gold: #c9954c;
    --gold-light: #e8c07a;
    --dark: #0a0a0f;
    --dark-card: #131318;
    --dark-surface: #1a1a22;
    --border: rgba(201,149,76,0.15);
    --text: #f0ece4;
    --text-muted: #9a958d;
    --white: #fff;
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --card-shadow: 0 4px 24px rgba(0,0,0,0.3);
    --transition: 0.3s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--sans);
    font-weight: 300;
    background: var(--dark);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Skip link ── */
.skip-link {
    position: absolute; left: -9999px; top: auto;
    background: var(--gold); color: var(--dark); padding: 8px 16px;
    font-size: 0.85rem; border-radius: 0 0 6px 0; z-index: 9999;
}
.skip-link:focus { left: 0; top: 0; }

*:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* ── Header ── */
header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    background: rgba(10,10,15,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 0;
}

.logo a {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none; color: var(--text);
}

.logo a:hover { opacity: 0.85; }

.logo img {
    height: 44px; width: auto; border-radius: 4px;
}

.logo-text {
    display: flex; flex-direction: column;
}

.logo-name {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 1px;
    line-height: 1.2;
}

.logo-sub {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

nav ul {
    display: flex; align-items: center; gap: 8px;
    list-style: none;
}

nav a {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 400;
    padding: 8px 16px;
    border-radius: 6px;
    transition: var(--transition);
}

nav a:hover, nav a.active { color: var(--gold); }
nav a.active { background: rgba(201,149,76,0.08); }

.nav-cta a {
    background: var(--gold) !important;
    color: var(--dark) !important;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 6px;
}

.nav-cta a:hover { background: var(--gold-light) !important; }

/* ── Hamburger ── */
.hamburger {
    display: none; background: none; border: none; cursor: pointer;
    width: 32px; height: 24px; position: relative; z-index: 1001;
}

.hamburger span {
    display: block; width: 100%; height: 2px; background: var(--text);
    position: absolute; left: 0; transition: var(--transition);
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 0; }

.hamburger.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

.hero-content {
    position: relative; z-index: 2;
    max-width: 720px; padding: 0 24px;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(201,149,76,0.4);
    padding: 8px 24px;
    border-radius: 999px;
    margin-bottom: 28px;
}

.hero h1 {
    font-family: var(--serif);
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 20px;
}

.hero h1 span { color: var(--gold); display: block; }

.hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 36px;
    font-weight: 300;
    line-height: 1.7;
}

.hero-btns {
    display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}

/* ── Buttons ── */
.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--gold); color: var(--dark);
    font-weight: 600; font-size: 0.9rem;
    padding: 14px 32px; border-radius: 6px;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary:hover { background: var(--gold-light); color: var(--dark); transform: translateY(-2px); }

.btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    border: 1px solid rgba(201,149,76,0.5); color: var(--gold);
    font-weight: 500; font-size: 0.9rem;
    padding: 14px 32px; border-radius: 6px;
    transition: var(--transition);
    text-decoration: none;
}

.btn-outline:hover { border-color: var(--gold); background: rgba(201,149,76,0.08); color: var(--gold-light); }

/* ── Section ── */
.section-eyebrow {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 500;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

/* ── Features Bar ── */
.features-bar {
    padding: 60px 0;
    border-bottom: 1px solid var(--border);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.feature-item h3 {
    font-family: var(--serif);
    font-size: 1.05rem;
    color: var(--text);
    margin-bottom: 6px;
}

.feature-item p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ── Rooms / Pricing ── */
.rooms-section {
    padding: 80px 0;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.room-card {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px 28px;
    text-align: center;
    transition: var(--transition);
}

.room-card:hover {
    border-color: rgba(201,149,76,0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.room-card.featured {
    border-color: rgba(201,149,76,0.5);
    border-top: 3px solid var(--gold);
}

.room-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.room-name {
    font-family: var(--serif);
    font-size: 1.35rem;
    color: var(--text);
    margin-bottom: 8px;
}

.room-price {
    font-family: var(--serif);
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 4px;
}

.room-price small {
    font-family: var(--sans);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.room-details {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 12px;
    line-height: 1.8;
}

/* ── Gallery ── */
.gallery-section {
    padding: 80px 0;
    background: var(--dark-surface);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
    margin-top: 48px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ── Page Hero ── */
.page-hero {
    padding: 140px 0 60px;
    text-align: center;
    background: linear-gradient(180deg, var(--dark-surface) 0%, var(--dark) 100%);
    border-bottom: 1px solid var(--border);
}

.page-hero h1 {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    color: var(--text);
    margin-bottom: 12px;
}

.page-hero p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto;
}

/* ── Contact ── */
.contact-section { padding: 60px 0 80px; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info-card {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 36px 32px;
}

.contact-info-card h2 {
    font-family: var(--serif);
    font-size: 1.4rem;
    color: var(--text);
    margin-bottom: 16px;
}

.contact-detail {
    display: flex; gap: 14px; align-items: flex-start;
    margin-top: 20px;
}

.contact-detail-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.contact-detail h4 {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-detail a, .contact-detail p {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.6;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.hours-table td {
    padding: 6px 0;
    color: var(--text);
}

.hours-table td:last-child {
    text-align: right;
    color: var(--gold);
}

.map-card {
    border-radius: 12px;
    overflow: hidden;
    background: var(--dark-card);
    border: 1px solid var(--border);
}

/* ── Prose ── */
.prose-section { padding: 60px 0 80px; }

.prose {
    max-width: 780px;
    margin: 0 auto;
}

.prose h2 {
    font-family: var(--serif);
    font-size: 1.3rem;
    color: var(--text);
    margin: 32px 0 12px;
}

.prose p, .prose li {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 12px;
}

.prose ul { padding-left: 20px; }

.prose a { color: var(--gold); }
.prose a:hover { color: var(--gold-light); }

/* ── About section ── */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 80px 0;
}

.about-text h2 {
    font-family: var(--serif);
    font-size: 2rem;
    color: var(--text);
    margin-bottom: 20px;
}

.about-text p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-img {
    border-radius: 12px;
    overflow: hidden;
}

.about-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

/* ── Footer ── */
footer {
    background: var(--dark-card);
    border-top: 1px solid var(--border);
    padding: 48px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 16px;
}

.footer-logo img {
    height: 40px; width: auto; border-radius: 4px;
}

.footer-logo-name {
    font-family: var(--serif);
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 600;
}

.footer-logo-sub {
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.footer-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer-contact {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.footer-contact a { color: var(--text-muted); }
.footer-contact a:hover { color: var(--gold); }

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}
.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: var(--text-muted);
    transition: all 0.3s ease;
}
.footer-social a:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-2px);
}

.footer-section h4 {
    font-family: var(--serif);
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 16px;
}

.footer-section a {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 4px 0;
}

.footer-section a:hover { color: var(--gold); }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

.footer-partner { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-partner a { color: var(--gold); }

/* ── Form ── */
.form-card {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 36px 32px;
}

.form-card h3 {
    font-family: var(--serif);
    font-size: 1.25rem;
    color: var(--text);
    margin-bottom: 8px;
}

.form-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

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

.form-card input,
.form-card select,
.form-card textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--dark-surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-family: var(--sans);
    font-size: 0.9rem;
    margin-bottom: 16px;
    transition: var(--transition);
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
    border-color: var(--gold);
    outline: none;
}

.form-card input::placeholder,
.form-card textarea::placeholder {
    color: var(--text-muted);
}

.form-card button {
    width: 100%;
    background: var(--gold);
    color: var(--dark);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 14px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--sans);
}

.form-card button:hover { background: var(--gold-light); }

/* Date & Time inputs dark theme fix */
.form-card input[type="date"],
.form-card input[type="time"] {
    color-scheme: dark;
    cursor: pointer;
}

.form-card input[type="date"]::-webkit-calendar-picker-indicator,
.form-card input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(0.7) sepia(1) hue-rotate(0deg) saturate(2);
    cursor: pointer;
}

.form-card select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239a958d' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .hamburger { display: block; }

    nav {
        position: fixed; top: 0; right: -100%; width: 80%; max-width: 320px; height: 100vh;
        background: var(--dark-card); z-index: 1000;
        transition: right 0.3s ease;
        padding: 80px 32px 32px;
        border-left: 1px solid var(--border);
    }

    nav.open { right: 0; }

    nav ul {
        flex-direction: column;
        gap: 4px;
    }

    nav a {
        display: block;
        padding: 12px 16px;
        font-size: 1rem;
    }

    .nav-cta a {
        text-align: center;
        margin-top: 12px;
    }

    .features-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .rooms-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .about-content { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }

    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }

    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .features-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .hero h1 { font-size: 2.4rem; }
}
