: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);
}

/* Visually hidden class for accessibility - hides content visually but keeps it accessible to screen readers */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Location Box Styles for Dish Pages */
.location-box-container {
  padding: 2rem 1rem 4rem;
}

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

.location-map {
  width: 100%;
  min-height: 250px;
}

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

.location-details {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.location-details h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

.location-details h4 {
  font-size: 1rem;
  font-weight: 500;
  color: #ffd666;
  margin: 0 0 0.5rem 0;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0.5rem 0 1rem;
}

.location-info p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  font-size: 0.95rem;
  color: #4e4b66;
}

.location-info p i {
  color: #ffd666;
  font-size: 1.1rem;
  min-width: 20px;
}

.location-info a {
  color: #4e4b66;
  text-decoration: none;
  transition: color 0.3s;
}

.location-info a:hover {
  color: #ffd666;
}

.get-directions-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  align-self: flex-start;
  margin-top: auto;
}

.get-directions-btn i {
  font-size: 1.1rem;
}

/* Desktop styles for location box */
@media (min-width: 768px) {
  .location-box {
    flex-direction: row;
  }

  .location-map {
    width: 55%;
    min-height: 300px;
  }

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

  .location-details {
    width: 45%;
    padding: 2rem;
    justify-content: center;
  }

  .location-details h3 {
    font-size: 1.75rem;
  }

  .get-directions-btn {
    margin-top: 1rem;
  }
}
