/* ========================================================================== 
   White Rock Bistro - Contact Stylesheet (contact.css)
   ========================================================================== */

/* Load the same fonts used by the Home and Drinks page styles. */
/* @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap'); */

/* --------------------------------------------------------------------------
   1. Contact Hero Banner
   -------------------------------------------------------------------------- */
.contact-hero-section {
    position: relative;
    width: 100%;
    min-height: 380px;
    display: flex;
    align-items: flex-end;
    padding: 80px 24px 60px;
    overflow: hidden;
}

/* HTML Hero Image Styling */
.contact-hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    z-index: 0;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(18, 36, 27, 0.45) 0%,
        rgba(15, 28, 22, 0.65) 60%,
        rgba(10, 20, 15, 0.88) 100%
    );
    z-index: 1;
}

.contact-hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    text-align: left;
}

.contact-hero-eyebrow {
    display: block;
    font-family: var(--font-body, 'Karla', sans-serif);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-gold, #BFA069);
    margin-bottom: 14px;
    opacity: 0.95;
}

.contact-hero-title {
    font-family: var(--font-heading, 'Fraunces', serif);
    font-size: 52px;
    font-weight: 600;
    line-height: 1.1;
    color: var(--text-main, #FFFFFF);
    margin-bottom: 18px;
    letter-spacing: 6px;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.contact-hero-lead {
    font-family: var(--font-body, 'Karla', sans-serif);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: #DDE5E0;
    max-width: 620px;
    margin: 0;
}

/* --------------------------------------------------------------------------
   2. Dark Reservation Section
   -------------------------------------------------------------------------- */
.contact-booking-section {
    width: 100%;
    background-color: var( --dark-pill-hover);
    padding: 100px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-booking-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 72px;
    align-items: center;
}

.booking-info-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.booking-eyebrow {
    font-family: var(--font-body, 'Karla', sans-serif);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--accent-gold, #BFA069);
    margin-bottom: 18px;
}

.booking-title {
    font-family: var(--font-heading, 'Fraunces', serif);
    font-size: 42px;
    font-weight: 400;
    line-height: 1.18;
    color: #FFFFFF;
    margin-bottom: 24px;
}

.booking-desc {
    font-family: var(--font-body, 'Karla', sans-serif);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.75;
    color: #A9B7B0;
    margin-bottom: 36px;
    max-width: 480px;
}

.booking-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.booking-benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body, 'Karla', sans-serif);
    font-size: 14px;
    font-weight: 400;
    color: #E2EAE5;
}

.booking-benefits-list li i {
    color: var(--accent-gold, #BFA069);
    font-size: 16px;
}

/* Dark Card & Inputs */
.booking-form-card {
    background-color: #13241F;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 44px 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-body, 'Karla', sans-serif);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8C9C94;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 13px 16px;
    background-color: #0B1713;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-family: var(--font-body, 'Karla', sans-serif);
    font-size: 14px;
    color: #FFFFFF;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input::placeholder {
    color: #4A5B53;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--accent-gold, #BFA069);
    box-shadow: 0 0 0 3px rgba(191, 160, 105, 0.15);
}

/* Time Input & AM/PM Controls */
.time-input-group {
    display: flex;
    align-items: center;
    background-color: #0B1713;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: hidden;
}

.time-input-group input {
    border: none;
    background: transparent;
    padding: 13px 14px;
}

.ampm-toggle {
    display: flex;
    padding-right: 6px;
    gap: 4px;
}

.ampm-btn {
    background: transparent;
    border: none;
    color: #8C9C94;
    font-family: var(--font-body, 'Karla', sans-serif);
    font-size: 10.5px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ampm-btn.active {
    background-color: var(--accent-gold, #BFA069);
    color: #0B1713;
}

/* Submit Action Button */
.booking-submit-btn {
    width: 100%;
    background-color: var(--accent-gold, #BFA069);
    color: #0B1713;
    padding: 16px 30px;
    border-radius: 6px;
    font-family: var(--font-body, 'Karla', sans-serif);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border: 1px solid var(--accent-gold, #BFA069);
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.booking-submit-btn:hover {
    background-color: var(--accent-gold-hover, #AA8B54);
    border-color: var(--accent-gold-hover, #AA8B54);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(191, 160, 105, 0.3);
}



/* Add textarea styles if not already present in contact.css */
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    background-color: #0B1713;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-family: var(--font-body, 'Karla', sans-serif);
    font-size: 14px;
    color: #FFFFFF;
    outline: none;
    resize: vertical;
    transition: all 0.3s ease;
}

.form-group textarea::placeholder {
    color: #4A5B53;
}

.form-group textarea:focus {
    border-color: var(--accent-gold, #BFA069);
    box-shadow: 0 0 0 3px rgba(191, 160, 105, 0.15);
}

/* --------------------------------------------------------------------------
   3. Location & Hours Section (Cream Canvas)
   -------------------------------------------------------------------------- */
.contact-details-section {
    width: 100%;
    background-color: var(--bg-color, #F8F5EE);
    padding: 100px 24px;
    display: flex;
    justify-content: center;
}

.contact-details-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.contact-section-header {
    text-align: center;
    margin-bottom: 56px;
}

.location-eyebrow {
    font-family: var(--font-body, 'Karla', sans-serif);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--accent-gold, #BFA069);
    margin-bottom: 12px;
    display: block;
}

.location-title {
    font-family: var(--font-heading, 'Fraunces', serif);
    font-size: 42px;
    font-weight: 400;
    line-height: 1.18;
    color: var(--text-dark, #242B27);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 36px;
    align-items: stretch;
}

.location-info-card {
    background-color: #FFFFFF;
    border: 1px solid var(--border-color, #E2DBD0);
    border-radius: 12px;
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    box-shadow: 0 10px 30px rgba(36, 43, 39, 0.04);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-icon-badge {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background-color: rgba(191, 160, 105, 0.12);
    color: var(--accent-gold, #BFA069);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
}

.info-heading {
    font-family: var(--font-heading, 'Fraunces', serif);
    font-size: 21px;
    font-weight: 400;
    color: var(--text-dark, #242B27);
}

.info-text {
    font-family: var(--font-body, 'Karla', sans-serif);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--text-muted, #677069);
}

.info-phone-link {
    font-family: var(--font-body, 'Karla', sans-serif);
    font-size: 14.5px;
    color: var(--text-dark, #242B27);
    font-weight: 400;
    text-decoration: none;
    transition: color 0.2s ease;
}

.info-phone-link:hover {
    color: var(--accent-gold, #BFA069);
}

.hours-schedule {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 4px;
    width: 100%;
}

.hours-schedule li {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-body, 'Karla', sans-serif);
    font-size: 13.5px;
    color: var(--text-muted, #677069);
}

.hours-schedule li strong {
    color: var(--text-dark, #242B27);
    font-weight: 400;
}

.hours-schedule li .closed-tag {
    color: #B26A5A;
    font-weight: 600;
}

.location-map-card {
    background-color: #FFFFFF;
    border: 1px solid var(--border-color, #E2DBD0);
    border-radius: 12px;
    overflow: hidden;
    min-height: 520px;
    box-shadow: 0 10px 30px rgba(36, 43, 39, 0.04);
}

.location-map-card iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* --------------------------------------------------------------------------
   4. Responsive Breakpoints
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
    .contact-hero-title {
        font-size: 52px;
    }

    .contact-booking-section,
    .contact-details-section {
        padding: 70px 20px;
    }

    .contact-booking-container,
    .location-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .booking-title,
    .location-title {
        font-size: 34px;
    }

    .location-map-card {
        min-height: 400px;
    }
}

@media (max-width: 600px) {
    .contact-hero-title {
        font-size: 34px;
    }

    .booking-title,
    .location-title {
        font-size: 28px;
    }

    .form-row-2col {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .booking-form-card,
    .location-info-card {
        padding: 30px 20px;
    }

    .location-map-card {
        min-height: 320px;
    }
}
