/* ── Site shell (header / footer / layout) ── */
/* Scale the whole booking UI up (all rem-based sizing follows this root). */
html {
    font-size: 92%; /* 16px base (browser default) */
}

:root {
    --site-red: #8B1A1A;
    --site-red-dark: #6B1212;
    --site-red-nav: #7A1515;
    --site-gold: #E8A317;
    --site-gold-dark: #C8860A;
    --site-brown: #5C3D2E;
    --site-bg: #F4F4F4;
    --site-text: #241D12;
    --site-text-muted: #4A4234;
    --site-border: #E0D8CE;
    --site-white: #FFFFFF;
    --site-radius: 8px;
    --site-max: 1200px;
}

.booking-body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    background: var(--site-bg);
    color: var(--site-text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-size: 1rem;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Ensure form controls inherit the brand font (browsers default them to system UI) */
.booking-body input,
.booking-body select,
.booking-body textarea,
.booking-body button {
    font-family: inherit;
}

/* Header top bar */
.site-header__top {
    background: var(--site-white);
    border-bottom: 1px solid var(--site-border);
}

.site-header__top-inner {
    max-width: var(--site-max);
    margin: 0 auto;
    padding: 8px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.site-header__brand {
    display: inline-flex;
    align-items: center;
}

.site-header__logo {
    height: 56px;
    width: auto;
}

@media (max-width: 767px) {
    .site-header__logo {
        height: 46px;
    }
}

.site-header__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-left: auto;
    justify-content: flex-end;
}

.site-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 38px;
    padding: 0 16px;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
    transition: filter 0.2s, transform 0.2s, box-shadow 0.2s;
}

.site-btn:hover {
    filter: brightness(0.96);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.site-btn__icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.site-btn--gold {
    background: linear-gradient(180deg, #F6B73C 0%, #ED9F1B 100%);
    color: #3A2600;
}

.site-btn--red {
    background: var(--site-red);
    color: #fff;
}

.site-btn--brown {
    background: linear-gradient(180deg, #6E1414 0%, #511010 100%);
    color: #FCE9C8;
}

/* YouTube Live Aarti — image button */
.site-btn--aarti {
    height: 38px;
    padding: 0;
    border-radius: 6px;
    overflow: hidden;
    background: #000;
}

.site-btn--aarti img {
    display: block;
    height: 38px;
    width: auto;
}

.site-header__phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 1.1875rem;
    font-weight: 700;
    color: var(--site-text);
    text-decoration: none;
    white-space: nowrap;
}

.site-header__phone svg { width: 19px; height: 19px; }

.site-header__phone:hover { color: var(--site-red); }

/* Nav bar */
.site-nav {
    background: linear-gradient(90deg, #6B1212 0%, #8A1818 50%, #A82020 100%);
    position: sticky;
    top: 0;
    z-index: 200;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.site-nav__inner {
    max-width: var(--site-max);
    margin: 0 auto;
    padding: 0 12px;
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.site-nav__inner::-webkit-scrollbar { display: none; }

.site-nav__link {
    color: rgba(255,255,255,0.92);
    text-decoration: none;
    font-size: 1.0625rem;
    font-weight: 600;
    padding: 13px 22px;
    white-space: nowrap;
    transition: color 0.2s, background-color 0.2s;
}

.site-nav__link:hover,
.site-nav__link:focus {
    color: #fff;
    background: rgba(255,255,255,0.08);
}

.site-nav__link--active {
    color: #fff;
    background: rgba(255,255,255,0.15);
    font-weight: 700;
    box-shadow: inset 0 -3px 0 #fff;
}

/* Main content area */
.booking-main {
    flex: 1;
    padding: 0 20px 40px;
}

.booking-main__grid {
    max-width: var(--site-max);
    margin: 0 auto;
    display: grid;
    gap: 24px;
    padding-top: 28px;
}

@media (min-width: 992px) {
    .booking-main__grid {
        grid-template-columns: 1fr 320px;
        align-items: start;
    }
}

.booking-main__aside {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Footer */
.site-footer {
    background: var(--site-red-nav);
    color: rgba(255,255,255,0.85);
    margin-top: auto;
}

.site-footer__grid {
    max-width: var(--site-max);
    margin: 0 auto;
    padding: 40px 20px 32px;
    display: grid;
    gap: 32px;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .site-footer__grid {
        grid-template-columns: 1.7fr 1fr 1fr 1.1fr 1.3fr;
    }
}

@media (min-width: 600px) and (max-width: 991px) {
    .site-footer__grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .site-footer__brand { grid-column: 1 / -1; }
}

.site-footer__logo {
    height: 64px;
    width: auto;
    display: block;
    margin-bottom: 16px;
}

.site-footer__tagline {
    font-size: 0.9375rem;
    line-height: 1.6;
    opacity: 0.8;
    margin: 0 0 16px;
}

.site-footer__social {
    display: flex;
    gap: 10px;
}

.site-footer__social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.site-footer__social a svg {
    width: 18px;
    height: 18px;
}

.site-footer__social a:hover {
    background: var(--site-gold, #C9922A);
    transform: translateY(-2px);
}

.site-footer__heading {
    font-size: 0.9375rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fff;
    margin: 0 0 14px;
}

.site-footer__links,
.site-footer__contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer__links li,
.site-footer__contact li {
    margin-bottom: 8px;
}

.site-footer__links a {
    color: rgba(255,255,255,0.78);
    text-decoration: none;
    font-size: 0.9375rem;
}

.site-footer__links a:hover { color: #fff; }

.site-footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.9375rem;
    line-height: 1.55;
    opacity: 0.85;
}

.site-footer__contact svg { flex-shrink: 0; margin-top: 3px; opacity: 0.7; }

.site-footer__contact a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.site-footer__contact a:hover { color: #fff; }

.site-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    max-width: var(--site-max);
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
    font-size: 0.75rem;
    opacity: 0.65;
}

.site-footer__bottom p { margin: 0; }

@media (max-width: 767px) {
    .site-header__actions { display: none; }
    .site-header__phone { margin-left: auto; }
}
