/* ============================================
   RESERVATIONS PAGE - MODERN ELEGANT STYLING
   Booking System with Time Slots & Amenities
   ============================================ */

@import url('base.css');

:root {
    --primary-gold: #c9a86d;
    --gold-dark: #8b7355;
    --gold-light: #e6c89f;
    --dark: #0f0f0f;
    --dark-secondary: #1a1a1a;
    --cream: #f5f3f0;
    --text-primary: #2a2a2a;
    --text-light: #555555;
}

/* ===== RESERVATIONS HEADER ===== */
.reservations-header {
    min-height: 45vh;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-secondary) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 100px 20px;
    overflow: hidden;
}

.reservations-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(201, 168, 109, 0.08) 10px,
        rgba(201, 168, 109, 0.08) 20px
    );
    pointer-events: none;
}

.reservations-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeInUp 0.8s ease;
}

.reservations-header .ornament {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.reservations-header h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 20px 0;
    color: var(--primary-gold);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.reservations-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 1px;
    font-weight: 300;
}

/* ===== BOOKING SECTION ===== */
.booking-section {
    background: white;
    padding: 100px 20px;
    max-width: 100%;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.booking-form-wrapper {
    background: rgba(245, 243, 240, 0.8);
    border: 1px solid #e8e6e2;
    border-radius: 16px;
    padding: 40px;
}

.form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 0.5px;
}

.form-title i {
    color: var(--primary-gold);
}

/* Form Groups */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.form-group label i {
    color: var(--primary-gold);
    margin-right: 6px;
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e8e6e2;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 109, 0.1);
    background: white;
}

.form-input::placeholder {
    color: var(--text-light);
}

.form-help {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 5px;
    font-weight: 300;
}

/* Guest Selector */
.guest-selector {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.guest-btn {
    width: 44px;
    height: 44px;
    border: 2px solid var(--primary-gold);
    background: transparent;
    color: var(--primary-gold);
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guest-btn:hover {
    background: var(--primary-gold);
    color: var(--dark);
}

.guest-input {
    width: 60px;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-gold);
    border: 2px solid #e8e6e2;
    background: white;
    cursor: default;
}

.guest-display {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 5px;
    font-weight: 300;
}

/* Time Slots */
.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 10px;
}

.time-slot {
    position: relative;
}

.time-slot input[type="radio"] {
    display: none;
}

.time-slot span {
    display: block;
    padding: 10px 8px;
    text-align: center;
    border: 2px solid #e8e6e2;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.time-slot input[type="radio"]:checked + span {
    background: var(--primary-gold);
    color: white;
    border-color: var(--primary-gold);
}

.time-slot span:hover {
    border-color: var(--primary-gold);
    background: rgba(201, 168, 109, 0.1);
}

/* Submit Button */
.submit-btn {
    width: 100%;
    margin-top: 30px;
    padding: 15px 20px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-note {
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 15px;
    font-weight: 300;
}

.form-note i {
    color: var(--primary-gold);
}

/* ===== BOOKING INFO ===== */
.booking-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Info Cards */
.info-card {
    background: white;
    border: 2px solid #e8e6e2;
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 8px 25px rgba(201, 168, 109, 0.1);
}

.info-icon {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 12px;
}

.info-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.info-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 300;
}

.info-card a {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: var(--gold-dark);
}

/* Hours Card */
.hours-card {
    background: linear-gradient(135deg, rgba(201, 168, 109, 0.08) 0%, rgba(201, 168, 109, 0.04) 100%);
    border: 2px solid rgba(201, 168, 109, 0.2);
    border-radius: 12px;
    padding: 25px;
}

.hours-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hours-card h3 i {
    color: var(--primary-gold);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(201, 168, 109, 0.1);
}

.hour-item:last-child {
    border-bottom: none;
}

.hour-item .day {
    font-weight: 600;
    color: var(--text-primary);
}

.hour-item .time {
    color: var(--primary-gold);
    font-weight: 500;
}

/* Amenities */
.amenities-section {
    background: linear-gradient(135deg, rgba(201, 168, 109, 0.08) 0%, rgba(201, 168, 109, 0.04) 100%);
    border: 2px solid rgba(201, 168, 109, 0.2);
    border-radius: 12px;
    padding: 25px;
}

.amenities-section h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.amenities-section h3 i {
    color: var(--primary-gold);
}

.amenities-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.amenity-item:hover {
    background: rgba(201, 168, 109, 0.1);
}

.amenity-item i {
    font-size: 1.4rem;
    color: var(--primary-gold);
    min-width: 24px;
}

.amenity-item div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.amenity-item strong {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 600;
}

.amenity-item small {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 300;
}

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .ornament {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    letter-spacing: 0.5px;
    font-weight: 300;
}

/* ===== WHY CHOOSE SECTION ===== */
.why-choose-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-secondary) 100%);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.why-choose-section .container-xl {
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(201, 168, 109, 0.05) 10px,
        rgba(201, 168, 109, 0.05) 20px
    );
    pointer-events: none;
}

.why-choose-section .section-header {
    position: relative;
    z-index: 2;
}

.why-choose-section .section-header h2,
.why-choose-section .section-header p {
    color: white;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.reason-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 168, 109, 0.2);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
}

.reason-card:hover {
    background: rgba(201, 168, 109, 0.1);
    border-color: var(--primary-gold);
    transform: translateY(-10px);
}

.reason-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 15px;
    opacity: 0.8;
}

.reason-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.reason-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-weight: 300;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .reservations-header {
        min-height: 35vh;
        padding: 60px 20px;
    }

    .reservations-header h1 {
        font-size: 2.5rem;
    }

    .booking-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .booking-section {
        padding: 60px 20px;
    }

    .time-slots {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .reservations-header {
        min-height: 30vh;
        padding: 40px 20px;
    }

    .reservations-header h1 {
        font-size: 2rem;
    }

    .reservations-header p {
        font-size: 0.95rem;
    }

    .booking-form-wrapper {
        padding: 25px;
    }

    .form-title {
        font-size: 1.6rem;
    }

    .time-slots {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .time-slot span {
        padding: 8px 6px;
        font-size: 0.8rem;
    }

    .booking-section {
        padding: 50px 20px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-choose-section {
        padding: 60px 20px;
    }
}

@media (max-width: 480px) {
    .reservations-header h1 {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .reservations-header p {
        font-size: 0.85rem;
    }

    .booking-form-wrapper {
        padding: 20px;
    }

    .form-title {
        font-size: 1.3rem;
    }

    .time-slots {
        grid-template-columns: repeat(2, 1fr);
    }

    .guest-selector {
        margin-bottom: 12px;
    }

    .guest-btn {
        width: 40px;
        height: 40px;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .reason-number {
        font-size: 2.5rem;
    }

    .reason-card h3 {
        font-size: 1.2rem;
    }

    .reason-card p {
        font-size: 0.9rem;
    }

    .submit-btn {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
