/* Booking Page Specific Styles (booking.css) */

.booking-section {
    background-color: var(--color-secondary);
}

.booking-info h2 {
    color: var(--color-primary-dark);
}

.booking-info .menu-notice {
    background-color: white;
    padding: 2.5rem;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(59,66,49,0.05);
    border-left: 4px solid var(--color-accent);
}

.booking-info .menu-notice h4 {
    color: var(--color-primary);
}

.booking-info .menu-notice p {
    color: rgba(59,66,49,0.8);
    font-size: 1rem;
}

/* Premium Form Styling */
.custom-form {
    background: white;
    padding: 4rem 3rem;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(59,66,49,0.08);
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 2rem;
    width: 100%;
}

.form-group.half {
    width: 50%;
}

.form-group label {
    display: block;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.field-hint {
    display: block;
    font-size: 0.85rem;
    color: rgba(59,66,49,0.6);
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(59,66,49,0.2);
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-primary);
    background-color: transparent;
    transition: all 0.3s ease;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233B4231' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(207, 168, 104, 0.1);
}

/* Custom placeholder styling for elegance */
::placeholder {
    color: rgba(59,66,49,0.3);
    font-weight: 300;
}

.border-top {
    border-top: 1px dashed rgba(59,66,49,0.2);
    padding-top: 2rem;
    margin-top: 1rem;
}

/* Enhancing input autofill styles */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px white inset !important;
    -webkit-text-fill-color: var(--color-primary) !important;
}

@media (max-width: 768px) {
    .custom-form { padding: 2.5rem 1.5rem; }
    .form-row { flex-direction: column; gap: 0; }
    .form-group.half { width: 100%; }
    .booking-info .menu-notice { padding: 2rem 1.5rem; margin-bottom: 2rem; }
}
