/* =============================================
   Bluti Bros — bookings.css
   Companion stylesheet for bookings.html.
   Must load AFTER styles.css (Bootstrap base).
   ============================================= */

/* ── DESIGN TOKENS ── */
:root {
    --bb-blue:       #415f97;
    --bb-pink:       #8c4e74;
    --bb-bg:         #0a0a0a;
    --bb-surface:    rgba(255,255,255,0.03);
    --bb-border:     rgba(255,255,255,0.08);
    --bb-text-muted: rgba(255,255,255,0.45);
    --bb-text-body:  rgba(255,255,255,0.75);
    --bb-text-dim:   rgba(255,255,255,0.25);
    --bb-radius:     14px;
    --bb-font-display: 'Bebas Neue', sans-serif;
    --bb-font-body:    'Nunito', sans-serif;
}

/* ── BASE ── */
body {
    background: var(--bb-bg);
    color: #fff;
    font-family: var(--bb-font-body);
}

/* ── NAVBAR
   Mirrors exactly how scripts.js handles the Grayscale #mainNav,
   but adapted for a dark page instead of a light one.
   scripts.js toggles .navbar-shrink on scroll — we style both states.
── */

/* Default state (top of page, desktop) — semi-transparent dark */
#mainNav {
    transition: background-color 0.3s ease-in-out;
    background-color: rgba(10,10,10,0.6);
    backdrop-filter: blur(8px);
}

/* Nav links & brand at top of page */
#mainNav .navbar-brand,
#mainNav .nav-link {
    color: rgba(255,255,255,0.6) !important;
}
#mainNav .nav-link:hover  { color: rgba(255,255,255,0.9) !important; }
#mainNav .nav-link:active { color: #fff !important; }

/* Shrunk state (after scrolling) — opaque dark, matches index dark aesthetic */
#mainNav.navbar-shrink {
    background-color: rgba(10,10,10,0.97) !important;
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 24px rgba(0,0,0,0.7);
}
#mainNav.navbar-shrink .navbar-brand { color: rgba(255,255,255,0.9) !important; }
#mainNav.navbar-shrink .nav-link     { color: rgba(255,255,255,0.6) !important; padding: 1.5rem 1.5rem 1.25rem; border-bottom: 0.25rem solid transparent; }
#mainNav.navbar-shrink .nav-link:hover  { color: #fff !important; }
#mainNav.navbar-shrink .nav-link:active { color: #fff !important; }
#mainNav.navbar-shrink .nav-link.active {
    color: var(--bb-blue) !important;
    border-bottom: 0.25rem solid var(--bb-blue) !important;
}

/* Mobile: always dark (toggler visible, no transparent phase) */
@media (max-width: 991.98px) {
    #mainNav { background-color: rgba(10,10,10,0.97) !important; }
    #mainNav .navbar-toggler {
        color: rgba(255,255,255,0.6);
        border-color: rgba(255,255,255,0.2);
    }
}

/* ── HERO BANNER ── */
.bookings-hero {
    position: relative;
    min-height: 42vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #0d0d1a 0%, #1a0a24 40%, #0a0d1a 100%);
    overflow: hidden;
    padding-top: 80px; /* clear fixed navbar */
}

.bookings-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 20% 50%, rgba(65,95,151,0.18) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at 80% 40%, rgba(140,78,116,0.18) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.bookings-hero h1 {
    font-family: var(--bb-font-display);
    font-size: clamp(3rem, 10vw, 6rem);
    letter-spacing: 0.1em;
    margin: 0;
    line-height: 1;
    background: linear-gradient(135deg, #fff 30%, #a0b4d6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bookings-hero p {
    color: rgba(255,255,255,0.5);
    font-size: 1.05rem;
    margin-top: 1rem;
    letter-spacing: 0.04em;
}

.hero-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--bb-blue), var(--bb-pink));
    margin: 1.2rem auto 0;
    border-radius: 2px;
}

/* ── BOOKINGS SECTION ── */
.bookings-section {
    padding: 80px 0 100px;
    background: var(--bb-bg);
}

/* ── FORM CARD ── */
.form-card {
    background: var(--bb-surface);
    border: 1px solid var(--bb-border);
    border-radius: 16px;
    padding: 56px 48px;
    backdrop-filter: blur(8px);
}

@media (max-width: 576px) {
    .form-card { padding: 32px 20px; }
}

/* ── FORM SECTION LABELS ── */
.form-section-label {
    font-family: var(--bb-font-display);
    font-size: 1.3rem;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    margin: 0 0 1.4rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.form-section-label.mt-section { margin-top: 2.4rem; }

/* ── FIELD SPACING ── */
.field-row { margin-bottom: 1.4rem; }

/* ── LABELS ── */
.form-label {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 6px;
}

.req { color: var(--bb-pink); margin-left: 2px; }

/* ── INPUTS / SELECTS / TEXTAREA ── */
.form-control,
.form-select {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    border-radius: 8px;
    padding: 12px 16px;
    font-family: var(--bb-font-body);
    font-size: 0.95rem;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.form-control::placeholder { color: rgba(255,255,255,0.22); }

.form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba(255,255,255,0.4)' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 14px 10px;
}

.form-select option { background: #1a1a2e; color: #fff; }

.form-control:focus,
.form-select:focus {
    background: rgba(255,255,255,0.08);
    border-color: var(--bb-blue);
    box-shadow: 0 0 0 3px rgba(65,95,151,0.18);
    color: #fff;
    outline: none;
}

textarea.form-control {
    min-height: 130px;
    resize: vertical;
}

/* Fix browser autofill dark text */
.form-control:-webkit-autofill,
.form-select:-webkit-autofill {
    -webkit-text-fill-color: #fff;
    -webkit-box-shadow: 0 0 0 1000px rgba(255,255,255,0.06) inset;
}

/* ── EVENT TYPE TILES ── */
.event-type-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.event-type-option input[type="radio"] { display: none; }

.event-type-option label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 18px 12px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--bb-text-muted);
    cursor: pointer;
    transition: all 0.18s;
    background: rgba(255,255,255,0.03);
    text-align: center;
    user-select: none;
}

.event-type-option label i { font-size: 1.4rem; }

.event-type-option input:checked + label {
    border-color: var(--bb-pink);
    background: rgba(140,78,116,0.18);
    color: #fff;
    box-shadow: 0 0 0 2px rgba(140,78,116,0.3);
}

.event-type-option label:hover {
    border-color: rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.8);
}

/* ── BUDGET TILES ── */
.budget-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

@media (max-width: 576px) {
    .budget-grid { grid-template-columns: repeat(2, 1fr); }
}

.budget-option input[type="radio"] { display: none; }

.budget-option label {
    display: block;
    text-align: center;
    padding: 12px 8px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--bb-text-muted);
    cursor: pointer;
    transition: all 0.18s;
    background: rgba(255,255,255,0.03);
    user-select: none;
}

.budget-option input:checked + label {
    border-color: var(--bb-blue);
    background: rgba(65,95,151,0.2);
    color: #fff;
    box-shadow: 0 0 0 2px rgba(65,95,151,0.3);
}

.budget-option label:hover {
    border-color: rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.8);
}

/* ── CHECKBOXES ── */
.form-check-input {
    background-color: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    width: 18px;
    height: 18px;
    border-radius: 4px;
}

.form-check-input:checked {
    background-color: var(--bb-blue);
    border-color: var(--bb-blue);
}

.form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(65,95,151,0.25);
    border-color: var(--bb-blue);
}

.form-check-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.02em;
}

/* ── SUBMIT BUTTON ── */
.btn-book {
    background: linear-gradient(135deg, var(--bb-blue) 0%, var(--bb-pink) 100%);
    border: none;
    color: #fff;
    font-family: var(--bb-font-display);
    font-size: 1.4rem;
    letter-spacing: 0.18em;
    padding: 16px 48px;
    border-radius: 50px;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 24px rgba(65,95,151,0.3);
    display: inline-block;
    text-transform: uppercase;
}

.btn-book:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(140,78,116,0.4);
}

.btn-book:active { transform: translateY(0); }

/* ── SUCCESS BANNER ── */
#successBanner {
    display: none;
    background: rgba(65,151,95,0.15);
    border: 1px solid rgba(65,151,95,0.4);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    color: #a8ffc8;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-top: 24px;
}

/* ── SIDEBAR INFO CARD ── */
.info-card {
    background: var(--bb-surface);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--bb-radius);
    padding: 36px 28px;
    position: sticky;
    top: 100px;
}

.info-card h3 {
    font-family: var(--bb-font-display);
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.3rem;
    background: linear-gradient(135deg, #fff 30%, #a0b4d6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-card .tagline {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.8rem;
}

.info-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 1.4rem;
}

.info-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(65,95,151,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
    color: #7a9fd4;
}

.info-text strong {
    display: block;
    font-size: 0.82rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 2px;
}

.info-text span {
    font-size: 0.92rem;
    color: var(--bb-text-body);
}

.info-text a {
    color: var(--bb-text-body);
    text-decoration: none;
}

.info-text a:hover { color: #fff; }

.info-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.07);
    margin: 1.6rem 0;
}

.info-social-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.social-links a {
    color: rgba(255,255,255,0.4);
    font-size: 1.2rem;
    margin-right: 14px;
    text-decoration: none;
    transition: color 0.18s;
}

.social-links a:hover { color: #fff; }

.info-testimonial {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.7;
    font-style: italic;
    margin: 0 0 0.4rem;
}

.info-testimonial-attr {
    font-size: 0.78rem;
    color: var(--bb-text-dim);
    letter-spacing: 0.07em;
    text-transform: uppercase;
    margin: 0;
}

/* ── TESTIMONIAL MARQUEE (index.html) ── */
.testimonials-banner {
    background: #0a0a0a;
    border-top: 1px solid rgba(255,255,255,0.07);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 48px 0;
    overflow: hidden;
    position: relative;
}

/* Fade edges */
.testimonials-banner::before,
.testimonials-banner::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}
.testimonials-banner::before {
    left: 0;
    background: linear-gradient(to right, #0a0a0a, transparent);
}
.testimonials-banner::after {
    right: 0;
    background: linear-gradient(to left, #0a0a0a, transparent);
}

.testimonials-label {
    text-align: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.25em;
    color: rgba(255,255,255,0.25);
    text-transform: uppercase;
    margin-bottom: 28px;
}
.testimonials-label span {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.testimonials-label span::before,
.testimonials-label span::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, #415f97, #8c4e74);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 40s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }

@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.testimonial-card {
    flex-shrink: 0;
    width: 340px;
    margin: 0 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 28px 28px 22px;
    position: relative;
    transition: border-color 0.25s, transform 0.25s;
}
.testimonial-card:hover {
    border-color: rgba(140,78,116,0.45);
    transform: translateY(-3px);
}
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: Georgia, serif;
    font-size: 5rem;
    line-height: 1;
    color: rgba(140,78,116,0.18);
    pointer-events: none;
}

.testimonial-quote {
    font-family: 'Nunito', sans-serif;
    font-size: 0.88rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.6);
    margin: 0 0 18px;
    padding-top: 20px;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #415f97, #8c4e74);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.9);
    flex-shrink: 0;
    letter-spacing: 0.05em;
}

.testimonial-name {
    font-family: 'Nunito', sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}

.testimonial-event {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.25);
    letter-spacing: 0.05em;
    margin-top: 1px;
}

.testimonial-stars {
    margin-left: auto;
    color: #8c4e74;
    font-size: 0.7rem;
    letter-spacing: 2px;
}
