﻿@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Jost:wght@300;400;500;600&display=swap');

:root {
    --bg: #FAF8F4;
    --surface: #FFFFFF;
    --surface2: #F5F1EB;
    --border: #DDD6C8;
    --border-light: #EDE8DF;
    --gold: #B8943F;
    --gold-light: #F5EDD8;
    --gold-dark: #8A6E2A;
    --text: #1A1612;
    --text2: #3D3428;
    --muted: #8C7E6A;
    --input-bg: #FDFCFA;
    --error: #C0392B;
    --error-light: #FDF0EE;
    --success: #2C6E49;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--bg);
    font-family: 'Jost', sans-serif;
    color: var(--text);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

/* ══════════════════════════════════════
   HERO BANNER
══════════════════════════════════════ */
.hero-banner {
    background: linear-gradient(135deg, #1A1612 0%, #2C2419 50%, #1A1612 100%);
    padding: 48px 40px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

   .hero-banner::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(184,148,63,0.12) 0%, transparent 70%);
        pointer-events: none;
    }

.hero-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.ornament-line {
    height: 1px;
    width: 60px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

 .ornament-line.right {
        background: linear-gradient(90deg, var(--gold), transparent);
    }

.ornament-diamond {
    width: 6px;
    height: 6px;
    background: var(--gold);
    transform: rotate(45deg);
    flex-shrink: 0;
}

.hero-eyebrow {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
    position: relative;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 1px;
    line-height: 1.15;
    margin-bottom: 8px;
    position: relative;
}

.hero-title em {
        font-style: italic;
        color: var(--gold);
    }

.hero-sub {
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.5);
    position: relative;
}

/* ══════════════════════════════════════
   PROGRESS STEPS
══════════════════════════════════════ */
.steps-bar {
    background: var(--surface);
    border-bottom: 1px solid var(--border-light);
    padding: 0 40px;
    display: flex;
    align-items: stretch;
    gap: 0;
}

.step {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 24px 16px 0;
    flex: 1;
    position: relative;
    cursor: default;
}

  .step:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 16px;
        height: 1px;
        background: var(--border);
    }

.step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    color: var(--muted);
    flex-shrink: 0;
    transition: all 0.2s;
}

.step.active .step-num {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.step.done .step-num {
    background: var(--success);
    border-color: var(--success);
    color: var(--white);
}

.step-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
}

.step.active .step-label {
    color: var(--text);
}

.step.done .step-label {
    color: var(--success);
}

/* ══════════════════════════════════════
   PAGE LAYOUT
══════════════════════════════════════ */
.page-wrap {
    max-width: 760px;
    margin: 0 auto;
    padding: 40px 20px 80px;
}

/* ══════════════════════════════════════
   CARD
══════════════════════════════════════ */
.booking-card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: 2px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 1px 12px rgba(26,22,18,0.06);
}

.card-header {
    padding: 20px 28px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--surface2);
}

.card-step-badge {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.5px;
}

.card-subtitle {
    font-size: 12px;
    color: var(--muted);
    margin-left: auto;
    letter-spacing: 0.3px;
}

.card-body {
    padding: 28px;
}

/* ══════════════════════════════════════
   FORM GRID
══════════════════════════════════════ */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

    .form-group.full {
        grid-column: 1 / -1;
    }

    .form-group.third {
        grid-column: span 1;
    }

    .form-group label {
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--muted);
    }

   .form-group label .req {
            color: var(--gold);
            margin-left: 3px;
   }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 16px;
        border: 1px solid var(--border);
        border-radius: 2px;
        background: var(--input-bg);
        font-family: 'Jost', sans-serif;
        font-size: 15px;
        font-weight: 400;
        color: var(--text);
        transition: border-color 0.18s, box-shadow 0.18s;
        width: 100%;
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(184,148,63,0.1);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: #C8BFB0;
            font-weight: 300;
        }

    .form-group textarea {
        resize: vertical;
        min-height: 90px;
        line-height: 1.6;
    }

    .form-group select {
        appearance: none;
        -webkit-appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%238C7E6A' d='M5 6L0 0h10z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 14px center;
        padding-right: 36px;
        cursor: pointer;
    }

.field-error {
    font-size: 12px;
    color: var(--error);
    font-weight: 500;
    display: block;
    margin-top: 4px;
    min-height: 0;
}

    .field-error:not(:empty)::before {
        content: '! ';
        font-weight: 700;
    }

input.input-error,
select.input-error {
    border-color: var(--error) !important;
}

/* ══════════════════════════════════════
   RESERVATION SELECTORS
══════════════════════════════════════ */
.selector-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 16px;
    margin-bottom: 28px;
}

.selector-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.selector-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
}

.selector-select {
    padding: 12px 36px 12px 14px;
    border: 1px solid var(--border);
    border-radius: 2px;
    background: var(--input-bg);
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%238C7E6A' d='M5 6L0 0h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    cursor: pointer;
    transition: border-color 0.18s;
    width: 100%;
}

    .selector-select:focus {
        outline: none;
        border-color: var(--gold);
        box-shadow: 0 0 0 3px rgba(184,148,63,0.1);
    }

/* ══════════════════════════════════════
   TIME SLOT SECTION
══════════════════════════════════════ */
.slot-section-title {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-light);
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 6px;
}

.slot-btn {
    padding: 12px 8px;
    border: 1px solid var(--border);
    border-radius: 2px;
    background: var(--surface);
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--text2);
    cursor: pointer;
    text-align: center;
    transition: all 0.15s;
    user-select: none;
    letter-spacing: 0.3px;
}

    .slot-btn:hover {
        border-color: var(--gold);
        background: var(--gold-light);
        color: var(--gold-dark);
    }

    .slot-btn.selected {
        background: var(--gold);
        border-color: var(--gold);
        color: var(--white);
        font-weight: 600;
    }

    .slot-btn.unavailable {
        color: var(--border);
        background: var(--bg);
        cursor: not-allowed;
        opacity: 0.5;
        text-decoration: line-through;
    }

.slot-note {
    font-size: 11px;
    color: var(--muted);
    font-style: italic;
    margin-top: 8px;
}

/* ══════════════════════════════════════
   SUMMARY BAR
══════════════════════════════════════ */
.summary-bar {
    background: var(--surface2);
    border: 1px solid var(--border-light);
    border-radius: 2px;
    padding: 16px 24px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}

.summary-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 100px;
    padding: 0 20px;
    border-right: 1px solid var(--border-light);
}

    .summary-item:first-child {
        padding-left: 0;
    }

    .summary-item:last-child {
        border-right: none;
    }

.summary-key {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
}

.summary-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
}

/* ══════════════════════════════════════
   SUBMIT
══════════════════════════════════════ */
.submit-section {
    margin-top: 8px;
}

.submit-btn {
    width: 100%;
    padding: 17px 24px;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 2px;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

    .submit-btn:hover {
        background: var(--gold-dark);
    }

    .submit-btn:active {
        transform: scale(0.99);
    }

    .submit-btn svg {
        width: 16px;
        height: 16px;
        fill: none;
        stroke: currentColor;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.submit-disclaimer {
    text-align: center;
    font-size: 11px;
    color: var(--muted);
    margin-top: 12px;
    line-height: 1.6;
}

/* ══════════════════════════════════════
   ALERT — Error Message
══════════════════════════════════════ */
.alert {
    padding: 16px 20px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-radius: 3px;
}

.alert-error {
    background: #FDF3F2;
    border: 1px solid #F0C4BE;
    border-left: 4px solid var(--error);
    color: var(--error);
}

/* ══════════════════════════════════════
   SUCCESS MESSAGE
══════════════════════════════════════ */
.booking-success {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    margin-bottom: 24px;
    background: var(--surface2); 
    border: 1px solid var(--border); /* #E8DCCC */
    border-left: 4px solid var(--saffron); /* #D4722A */
    border-radius: 3px; /* matches cards */
    box-shadow: 0 2px 12px rgba(26,18,8,0.06);
    animation: fadeSuccess 0.35s ease;
}

@keyframes fadeSuccess {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.booking-success-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--saffron); /* #D4722A */
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.booking-success-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.booking-success-title {
    font-family: 'Playfair Display', serif; /* matches card-title */
    font-size: 17px;
    font-weight: 600;
    color: var(--text); /* #1A1208 */
}

.booking-success-text {
    font-size: 13px;
    font-weight: 400;
    color: var(--muted); /* #8A7460 */
    line-height: 1.6;
}


/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.site-footer {
    background: var(--text);
    padding: 56px 40px 32px;
   
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 32px;
}

.footer-brand .logo-name {
    font-size: 22px;
    margin-bottom: 4px;
}

.footer-brand .logo-tagline {
    margin-bottom: 16px;
    display: block;
}

.footer-brand-desc {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    max-width: 220px;
}

.footer-col-title {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.footer-col p,
.footer-col a {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.55);
    line-height: 1.9;
    text-decoration: none;
    display: block;
    transition: color 0.15s;
}

    .footer-col a:hover {
        color: var(--gold);
    }

.footer-col .highlight {
    color: rgba(255,255,255,0.85);
    font-weight: 400;
}

.footer-col .sub-note {
    font-size: 11px;
    color: rgba(255,255,255,0.3);
    font-style: italic;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    font-size: 11px;
    color: rgba(255,255,255,0.25);
    letter-spacing: 0.5px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

    .footer-bottom-links a {
        font-size: 11px;
        color: rgba(255,255,255,0.3);
        text-decoration: none;
        letter-spacing: 0.5px;
        transition: color 0.15s;
    }

        .footer-bottom-links a:hover {
            color: var(--gold);
        }

.social-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.brand-logo {
    height: 100px;
}

/*.alert-success {
    background: #16351f;
    color: #7CFC98;
    border: 1px solid #2ecc71;
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-weight: 500;
}*/

/*.alert-error {
    background: #3b1d1d;
    color: #ffb3b3;
    border: 1px solid #ff4d4d;
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-weight: 500;
}*/
/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 768px) {
    .hotel-header {
        padding: 0 20px;
        height: 60px;
    }

    .header-nav {
        display: none;
    }

    .hero-banner {
        padding: 36px 20px 32px;
    }

    .hero-title {
        font-size: 32px;
    }

    .steps-bar {
        padding: 0 20px;
    }

    .step {
        padding: 14px 12px 14px 0;
    }

    .step-label {
        display: none;
    }

    .page-wrap {
        padding: 24px 16px 60px;
    }

    .card-body {
        padding: 20px;
    }

    .card-header {
        padding: 16px 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full {
        grid-column: 1;
    }

    .selector-row {
        grid-template-columns: 1fr 1fr;
    }

    .selector-field:last-child {
        grid-column: 1 / -1;
    }

    .slots-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .summary-bar {
        gap: 12px;
    }

    .summary-item {
        border-right: none;
        border-bottom: 1px solid var(--border-light);
        padding: 8px 0;
    }

        .summary-item:last-child {
            border-bottom: none;
        }
}

.slot-btn.unavailable {
    background: #e5e5e5;
    color: #999;
    border-color: #ddd;
    cursor: not-allowed;
    opacity: 0.7;
    text-decoration: line-through;
}

    .slot-btn.unavailable:hover {
        transform: none;
    }


.holiday-alert {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin: 28px 0 18px;
    padding: 24px;
    border-radius: 20px;
    background: linear-gradient( 135deg, #fff8f2 0%, #fffdf9 100% );
    border: 1px solid #ead9c7;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    animation: fadeIn .35s ease;
}

.holiday-left {
    display: flex;
    align-items: center;
    justify-content: center;
}

.holiday-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: linear-gradient( 135deg, #c9a84c, #e2c675 );
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 600;
    box-shadow: 0 8px 18px rgba(201,168,76,0.25);
}

.holiday-right {
    flex: 1;
}

.holiday-title {
    font-size: 24px;
    font-weight: 600;
    color: #2f2419;
    margin-bottom: 8px;
    font-family: 'Cormorant Garamond', serif;
}

.holiday-message {
    color: #6f5540;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.holiday-subtext {
    color: #9a8268;
    font-size: 14px;
    line-height: 1.6;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 26px;
    }

    .slots-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .slot-btn {
        font-size: 12px;
        padding: 10px 4px;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .site-footer {
        padding: 40px 20px 24px;
    }

    .selector-select:disabled {
        opacity: 0.45;
        cursor: not-allowed;
        background-color: var(--border-light);
    }
}
