:root {
  --primaryLight: #ffba43;
  --secondary: #ffba43;
  --secondaryLight: #ffba43;
  --headerColor: #1a1a1a;
  --bodyTextColor: #4e4b66;
  --bodyTextColorWhite: #fafbfc;
  --topperFontSize: clamp(0.8125rem, 1.6vw, 1rem);
  --headerFontSize: clamp(1.9375rem, 3.9vw, 3.0625rem);
  --bodyFontSize: 1rem;
  --sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
}

body {
  margin: 0;
  padding: 0;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}
.cs-topper {
  font-size: var(--topperFontSize);
  line-height: 1.2em;
  text-transform: uppercase;
  text-align: inherit;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
  display: block;
}

.cs-title {
  font-size: var(--headerFontSize);
  font-weight: 900;
  line-height: 1.2em;
  text-align: inherit;
  max-width: 43.75rem;
  margin: 0 0 1rem 0;
  color: var(--headerColor);
  position: relative;
}

.cs-text {
  font-size: var(--bodyFontSize);
  line-height: 1.5em;
  text-align: inherit;
  width: 100%;
  max-width: 40.625rem;
  margin: 0;
  color: var(--bodyTextColor);
}

/* Location CTA Box Styles - for dish pages */
.location-cta-container {
  background-color: #f9f9f9;
  padding: 3rem 1rem;
}

.location-cta-container .section__header {
  text-align: center;
  margin-bottom: 2rem;
}

.location-cta-box {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.location-map-side {
  flex: 1;
  min-width: 300px;
}

.location-map-side iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  display: block;
}

.location-contact-side {
  flex: 1;
  min-width: 300px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-contact-side h3 {
  font-size: 1.5rem;
  color: var(--headerColor);
  margin: 0 0 1rem 0;
}

.location-contact-side h4 {
  font-size: 1.1rem;
  color: var(--headerColor);
  margin: 1.5rem 0 0.5rem 0;
}

.location-contact-side p {
  color: var(--bodyTextColor);
  margin: 0.5rem 0;
  line-height: 1.6;
}

.location-contact-side p i {
  color: #ca0000;
  margin-right: 0.5rem;
  width: 20px;
}

.location-contact-side a {
  color: var(--headerColor);
  text-decoration: none;
  transition: color 0.3s ease;
}

.location-contact-side a:hover {
  color: #ca0000;
}

.get-directions-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  background-color: #ca0000;
  color: #fff !important;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
  width: fit-content;
}

.get-directions-btn:hover {
  background-color: #a00000;
  color: #fff !important;
  transform: translateY(-2px);
}

.get-directions-btn i {
  color: #fff !important;
  margin-right: 0;
}

/* Mobile responsive for location box */
@media (max-width: 768px) {
  .location-cta-box {
    flex-direction: column;
  }

  .location-map-side {
    min-width: 100%;
  }

  .location-map-side iframe {
    min-height: 250px;
  }

  .location-contact-side {
    min-width: 100%;
    padding: 1.5rem;
    text-align: center;
  }

  .get-directions-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Location Section Styles */
.location__container {
  padding: 4rem 1rem;
}

.location__wrapper {
  display: flex;
  gap: 2rem;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-top: 2rem;
}

.location__map {
  flex: 1;
  min-width: 50%;
}

.location__map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.location__info {
  flex: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location__info h3 {
  font-size: 1.75rem;
  color: var(--headerColor);
  margin: 0 0 1.5rem 0;
  font-weight: 700;
}

.location__details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.location__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.location__item i {
  font-size: 1.5rem;
  color: #ca0000;
  margin-top: 0.25rem;
}

.location__item strong {
  display: block;
  font-size: 0.9rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.location__item p {
  margin: 0;
  color: var(--headerColor);
  font-size: 1rem;
  line-height: 1.5;
}

.location__item a {
  color: var(--headerColor);
  text-decoration: none;
  transition: color 0.3s ease;
}

.location__item a:hover {
  color: #ca0000;
}

.location__buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.location__buttons .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-weight: 600;
}

.location__buttons .btn-primary {
  background-color: #ca0000;
  color: #fff;
}

.location__buttons .btn-primary:hover {
  background-color: #a00000;
}

/* Mobile responsive for location section */
@media (max-width: 900px) {
  .location__wrapper {
    flex-direction: column;
  }

  .location__map {
    min-width: 100%;
  }

  .location__map iframe {
    min-height: 300px;
  }

  .location__info {
    padding: 1.5rem;
  }

  .location__buttons {
    flex-direction: column;
  }

  .location__buttons .btn {
    width: 100%;
    justify-content: center;
  }
}
