﻿/* ---- Page layout & theme (dark + gold accents) ---- */
:root {
    --bg: #0f0f0f;
    --card: #141414;
    --muted: #c9c1ae;
    --gold: #d4a947;
}
/* Style for the H1 container */
.logo-header {
    /* Optional: Remove default H1 margin if you want the logo tightly positioned */
    margin-top: 20px;
    margin-bottom: 20px;
    /* Ensure the H1 is centered if you want the logo in the middle */
    text-align: center;
}

/* Style for the image itself */
.logo-image {
    /* Set a maximum width so it looks good on large screens */
    max-width: 300px;
    /* Ensure the height scales proportionally */
    height: auto;
    /* Optional: If the original image has a background (like grey), 
       you might need to adjust or ensure it's a transparent PNG. */
}
.booking-hero {
    background: url('/images/hero-bar.jpg') center/cover no-repeat;
 /*   padding: 80px 0;*/
    text-align: center;
    color: #fff;
    margin-top: 140px;
}

.hero-title {
    font-size: 44px;
    margin: 0 0 8px;
    letter-spacing: 2px;
    color: var(--gold);
}

.hero-sub {
    margin: 0;
    color: rgba(255,255,255,0.85);
}

.booking-content {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
    color: var(--muted);
}

/* tabs */
.booking-tabs {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 30px;
}

    .booking-tabs .tab {
        background: transparent;
        border: 1px solid rgba(212,169,71,0.25);
        color: var(--muted);
        padding: 10px 22px;
        border-radius: 30px;
        cursor: pointer;
    }

        .booking-tabs .tab.active {
            background: var(--gold);
            color: #111;
            font-weight: 600;
        }

/* booking box */
.booking-box {
    background: var(--card);
    padding: 26px;
    border-radius: 10px;
    margin-bottom: 30px;
    border: 1px solid #222;
}

    .booking-box h2 {
        color: var(--gold);
        margin-top: 0;
    }

.muted {
    color: #bdb0a0;
    margin-top: 5px;
}

/* forms */
.form-row {
    margin-bottom: 14px;
    display: flex;
    flex-direction: column;
}

    .form-row label {
        font-size: 14px;
        color: #bfb2a0;
        margin-bottom: 6px;
    }

.form-control {
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid #2a2a2a;
    background: #0c0c0c;
    color: var(--muted);
}

.btn {
    padding: 10px 18px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gold);
    color: #111;
    font-weight: 600;
}

/* timeslots */
.time-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.time-btn {
    border: 1px solid #2b2b2b;
    background: #0c0c0c;
    color: var(--muted);
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
}

    .time-btn.active {
        background: var(--gold);
        color: #111;
        font-weight: 700;
    }

/* groups info */
.groups-info {
    margin-top: 30px;
    text-align: center;
    color: #d6c7ad;
}

.image-row {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin: 18px 0 10px;
}

    .image-row img {
        width: 32%;
        border-radius: 6px;
        object-fit: cover;
        height: 160px;
        border: 1px solid #2b2b2b;
    }

/* package box */
.package-box {
    background: #131313;
    padding: 16px;
    margin: 0 auto;
    max-width: 760px;
    border-radius: 8px;
    text-align: left;
    border: 1px solid #222;
}

/* contacts */
.contacts {
    display: flex;
    gap: 18px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.contact-card {
    background: #111;
    padding: 18px;
    border-radius: 8px;
    width: 240px;
    border: 1px solid #221;
    text-align: center;
}

    .contact-card h4 {
        color: var(--gold);
        margin-bottom: 8px;
    }

/* modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
}

.modal-box {
    background: #0c0c0c;
    padding: 20px;
    border-radius: 10px;
    width: 420px;
    color: var(--muted);
    position: relative;
    border: 1px solid #222;
}

.modal-close {
    position: absolute;
    right: 8px;
    top: 6px;
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

/* small screens */
@media (max-width:900px) {
    .image-row img {
        width: 48%;
        height: 120px;
    }

    .contacts {
        flex-direction: column;
        align-items: center;
    }
}

label {
    margin-left: 20px;
}

#datepicker {
    width: 180px;
    margin: 0 20px 20px 20px;
}

    #datepicker > span:hover {
        cursor: pointer;
    }