@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

body {
    background-color: #f4f7f5; /* Light green tint */
}

/* ══════════════════════════════════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════════════════════════════════ */
.reservation-hero {
    position: relative;
    height: 40vh;
    min-height: 300px;
    background: #0c2c17; 
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.reservation-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(12, 44, 23, 0.8) 0%, rgba(12, 44, 23, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #f5f0e8;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}

/* ══════════════════════════════════════════════════════════════════════════
   RESERVATION LAYOUT
══════════════════════════════════════════════════════════════════════════ */
.reservation-wrapper {
    max-width: 1200px;
    margin: -50px auto 100px;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.reservation-container {
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(12, 44, 23, 0.08);
    display: flex;
    overflow: hidden;
}

/* Left Side: Info */
.reservation-info {
    flex: 1;
    background: #0c2c17;
    color: #ffffff;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.info-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #d39f3c; /* Gold */
    margin-bottom: 20px;
}

.info-desc {
    font-family: 'Jost', sans-serif;
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
    color: #b4c5b9;
    margin-bottom: 40px;
}

.contact-block {
    margin-bottom: 30px;
}

.contact-label {
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: #d39f3c;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.contact-text {
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: #ffffff;
}

/* Right Side: Form */
.reservation-form-wrapper {
    flex: 1.5;
    padding: 60px 50px;
    background: #ffffff;
}

.form-row {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-label {
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #0c2c17;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 15px 0;
    border: none;
    border-bottom: 1px solid rgba(12, 44, 23, 0.2);
    background: transparent;
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    color: #3b4e41;
    transition: border-color 0.3s ease;
    border-radius: 0;
}

.form-control:focus {
    outline: none;
    border-bottom-color: #d39f3c;
}

/* Custom styling for select dropdowns */
select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%230c2c17%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 10px top 50%;
    background-size: 12px auto;
    padding-right: 30px;
}

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

.availability-status {
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    color: #6c7a70;
    margin-top: 8px;
}

.slot-meta {
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    color: #3b4e41;
    margin-top: 8px;
    display: none;
}

.date-picker-shell {
    border: 1px solid rgba(12, 44, 23, 0.16);
    border-radius: 4px;
    padding: 14px;
}

.date-picker-title {
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #0c2c17;
    margin-bottom: 12px;
}

.date-picker-weekdays,
.date-picker-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 6px;
}

.date-picker-weekdays span {
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    color: #7a887e;
    text-align: center;
    text-transform: uppercase;
}

.date-picker-day {
    min-height: 42px;
    border: 1px solid rgba(12, 44, 23, 0.12);
    background: #fff;
    color: #0c2c17;
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.date-picker-day:hover:not(:disabled) {
    border-color: #d39f3c;
}

.date-picker-day.is-selected {
    background: #d39f3c;
    border-color: #d39f3c;
    color: #fff;
}

.date-picker-day:disabled {
    background: #f3f5f3;
    color: #a6b0aa;
    cursor: not-allowed;
}

.date-picker-blank {
    min-height: 42px;
}

/* Agreement Policy CSS */
.res-terms-wrapper {
    margin-top: 24px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.res-checkbox {
    margin-top: 3px;
    accent-color: #d39f3c;
    cursor: pointer;
}

.res-terms-label {
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    color: #3b4e41;
    line-height: 1.5;
    cursor: pointer;
    user-select: none;
}

.res-terms-label a {
    color: #d39f3c;
    text-decoration: underline;
    font-weight: 500;
}

.btn-submit {
    display: inline-block;
    width: 100%;
    background: #d39f3c;
    color: #ffffff;
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    padding: 20px;
    margin-top: 20px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #9b7826;
}

.res-feedback {
    display: none;
    margin-top: 20px;
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    padding: 12px;
    border-radius: 4px;
    text-align: center;
}
.res-feedback.success {
    color: #2e6930;
    background: rgba(46, 105, 48, 0.08);
    border: 1px solid rgba(46, 105, 48, 0.2);
}
.res-feedback.error {
    color: #a63b24;
    background: rgba(166, 59, 36, 0.08);
    border: 1px solid rgba(166, 59, 36, 0.2);
}

/* ══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 991px) {
    .reservation-container {
        flex-direction: column;
    }
    .reservation-wrapper {
        margin-top: 40px;
    }
    .reservation-form-wrapper {
        padding: 50px 30px;
    }
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    .form-group {
        margin-bottom: 25px;
    }
}
