/* ============================================================
   CONTACT PAGE
   ============================================================ */

/* Override the base p size from index/styles.css on this page */
p {
    font-size: 1rem;
}

.contact-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1.5rem 3rem;
    text-align: left;
}

.contact-page h1 {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
}

.contact-page h2 {
    text-align: left;
    font-size: 1.2rem;
    margin: 0 0 1rem;
    color: white;
}

/* ---- TOP GRID: info left, form right ---- */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

/* ---- OPENING HOURS CARD ---- */

.hours-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    color: white;
}

.hours-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hours-row .day {
    color: rgba(255, 255, 255, 0.75);
}

.hours-row .time {
    font-weight: 600;
    color: white;
}

.hours-row .closed {
    color: rgba(255, 255, 255, 0.45);
}

/* ---- CONTACT METHOD CARDS ---- */

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 0.9rem 1.1rem;
    text-decoration: none;
    color: white;
    transition: background-color 0.18s, transform 0.15s;
}

.contact-method:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.contact-method img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    flex-shrink: 0;
}

.contact-method-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.contact-method-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: rgba(255, 255, 255, 0.6);
}

.contact-method-value {
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

/* ---- CONTACT FORM ---- */

.contact-form-wrap {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.75rem;
}

.contact-form-wrap label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin-bottom: 0.35rem;
    margin-top: 1.1rem;
}

.contact-form-wrap label:first-of-type {
    margin-top: 0;
}

.contact-form-wrap input,
.contact-form-wrap textarea,
.contact-form-wrap select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: "Roboto Slab", serif;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s, background-color 0.2s;
    box-sizing: border-box;
    -webkit-appearance: none;
}

.contact-form-wrap input::placeholder,
.contact-form-wrap textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.contact-form-wrap input:focus,
.contact-form-wrap textarea:focus,
.contact-form-wrap select:focus {
    border-color: rgba(255, 255, 255, 0.55);
    background-color: rgba(255, 255, 255, 0.16);
}

.contact-form-wrap textarea {
    resize: vertical;
    min-height: 130px;
    line-height: 1.6;
}

.form-submit-btn {
    margin-top: 1.25rem;
    width: 100%;
    background-color: #e30613;
    color: white;
    border: none;
    padding: 0.95rem;
    border-radius: 6px;
    font-size: 1.05rem;
    font-family: "Roboto Slab", serif;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s;
    letter-spacing: 0.02em;
}

.form-submit-btn:hover {
    background-color: #b0040f;
}

.form-success {
    background-color: rgba(46, 204, 113, 0.15);
    border: 1px solid rgba(46, 204, 113, 0.45);
    color: white;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.25rem;
    font-size: 1rem;
    line-height: 1.5;
}

.form-error {
    background-color: rgba(231, 76, 60, 0.15);
    border: 1px solid rgba(231, 76, 60, 0.45);
    color: white;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

/* ---- MAP + ADDRESS ---- */

.map-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .map-section {
        grid-template-columns: 3fr 2fr;
        align-items: start;
    }
}

.map-wrap iframe {
    width: 100%;
    height: 380px;
    border: 0;
    border-radius: 10px;
    display: block;
}

.address-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
}

.address-card address {
    font-style: normal;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.95;
    font-size: 1rem;
    text-align: left;
    margin: 0 0 1.25rem;
}

.directions-btn {
    display: inline-block;
    background-color: #e30613;
    color: white;
    padding: 0.7rem 1.3rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: bold;
    transition: background-color 0.2s;
}

.directions-btn:hover {
    background-color: #b0040f;
    color: white;
}
