/* ============================================
   Two-Location Section - Vamped Aesthetics
   File: css/homepage-additions.css
   ============================================ */

.va-locations-section {
  padding: 70px 0;
  background-color: #f2f1ef;
}

.va-locations-heading {
  text-align: center;
  margin-bottom: 10px;
  font-family: "Mango", serif;
  font-weight: normal;
  color: #000;
}

.va-locations-subheading {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1rem;
  opacity: 0.75;
}

.va-locations-row {
  /* spacing handled by Bootstrap gutters */
}

.va-location-card {
  margin-bottom: 24px;
}

.va-location-inner {
  border: 1px solid #e0e0e0;
  border-radius: 0;
  padding: 36px 32px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s ease;
}

.va-location-inner:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.va-location-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 0;
  margin-bottom: 14px;
  background: #b18473;
  color: #ffffff;
}

.va-location-name {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.va-location-address {
  font-style: normal;
  line-height: 1.6;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.va-location-note {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 24px;
  line-height: 1.5;
}

.va-location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.va-btn-primary {
  background-color: #b18473;
  color: #fff;
  border: 1px solid #b18473;
  border-radius: 0;
  padding: 10px 22px;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
}

.va-btn-primary:hover,
.va-btn-primary:active {
  background-color: #a4705c;
  border-color: #a4705c;
  color: #fff;
}

.va-btn-secondary {
  background: transparent;
  color: #000;
  border: 1px solid #c69c6d;
  border-radius: 0;
  padding: 10px 22px;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
}

.va-btn-secondary:hover,
.va-btn-secondary:active {
  background-color: #c69c6d;
  color: #fff;
}

.va-location-learn-more {
  font-size: 0.85rem;
  text-decoration: none;
  margin-top: auto;
  color: #8c6239;
}

.va-location-learn-more:hover {
  text-decoration: underline;
  color: #8c6239;
}

.va-location-map {
  margin-top: 16px;
}

/* ============================================
   Closing CTA Strip
   ============================================ */

.va-cta-strip {
  padding: 60px 0;
  background-color: #262626;
  color: #ffffff;
}

.va-cta-strip-headline {
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffffff;
}

.va-cta-strip-sub {
  font-size: 1rem;
  opacity: 0.8;
  margin-bottom: 28px;
}

.va-cta-strip-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.va-btn-lg {
  padding: 13px 30px;
  font-size: 0.95rem;
}

.va-cta-strip .va-btn-secondary {
  color: #ffffff;
  border-color: #c69c6d;
}

.va-cta-strip .va-btn-secondary:hover,
.va-cta-strip .va-btn-secondary:active {
  background-color: #c69c6d;
  color: #fff;
}

/* ============================================
   Mobile Responsive
   ============================================ */

@media (max-width: 767px) {
  .va-locations-section {
    padding: 48px 0;
  }

  .va-location-inner {
    padding: 28px 24px;
  }

  .va-location-actions {
    flex-direction: column;
    width: 100%;
  }

  .va-location-actions .btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .va-cta-strip-actions {
    flex-direction: column;
    align-items: center;
  }

  .va-cta-strip-actions .btn {
    width: 100%;
    max-width: 280px;
  }
}
