/* ===============================
   CONTAINER & LAYOUT
================================= */

.location-card-container {
    background-color: #FDF6F0;
    max-width: 1100px;
    margin: 40px auto;
    border-radius: 15px;
    overflow: hidden;
}

.location-card-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    min-height: 500px;
}


/* ===============================
   TEXT CONTENT
================================= */

.location-text-content {
    flex: 0 0 45%;
    min-width: 300px;
    padding: 50px;
    color: #1A2B3C;
    box-sizing: border-box;
}

.location-accents {
    color: #D4B08C;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.location-main-title {
    font-size: 3rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 25px;
}

.location-street-address {
    font-style: normal;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.location-link-bold {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}


/* ===============================
   HOURS GRID
================================= */

.location-hours-grid {
    display: flex;
    gap: 30px;
    margin: 25px 0;
}

.location-hours-column p {
    margin-bottom: 8px;
    font-size: 0.95rem;
}


/* ===============================
   MAP / IMAGE SECTION
================================= */

.location-image-wrapper {
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: stretch;
    background-color: #fff;
    overflow: hidden;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    margin: 0;
}

.location-image-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: none;
    display: block;
}

/* Tablet: slight radius, small margin */
@media (max-width: 1024px) and (min-width: 769px) {
    .location-text-content {
        flex: 0 0 48%;
        padding: 36px 30px;
    }
    .location-image-wrapper {
        flex: 1;
        min-height: 420px;
    }
}


/* ===============================
   VISIT SECTION
================================= */

.visit-section { 
    background-color: #CEB181; 
    padding: 80px 20px; 
    text-align: center; 
    font-family: 'Georgia', serif; 
} 

.visit-title { 
    color: #fff; 
    font-size: 4rem; 
    font-weight: normal; 
    font-style: italic; 
    letter-spacing: 2px; 
    text-transform: uppercase; 
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2); 
} 

.visit-subtitle { 
    color: #fff; 
    font-size: 1.3rem; 
    letter-spacing: 1.5px; 
    margin: 5px 0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.15);
}


/* ===============================
   RESPONSIVE
================================= */

@media (max-width: 768px) {
    .location-image-wrapper {
        border-top-left-radius: 120px;
        min-height: 300px;
        margin: 20px;
    }
}

@media (max-width: 600px) {
    .visit-title {
        font-size: 2.2rem;
    }
}

/* =============================================
   LOCATION PAGE — Mobile Fixes
   ============================================= */

@media (max-width: 768px) {
  .location-card-container {
    margin: 20px 10px;
    border-radius: 10px;
  }
  .location-card-flex {
    flex-direction: column;
  }
  .location-text-content {
    padding: 30px 20px;
    min-width: unset;
  }
  .location-main-title {
    font-size: 2rem;
  }
  .location-hours-grid {
    gap: 15px;
  }
  .location-action-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .care-btn {
    text-align: center;
    padding: 12px 20px !important;
    font-size: 1rem !important;
  }
  .location-image-wrapper {
    min-width: unset;
    border-top-left-radius: 80px;
    min-height: 280px;
    margin: 0 10px 10px;
  }
  .visit-title {
    font-size: 2.2rem;
  }
  .visit-subtitle {
    font-size: 1rem;
  }
}
