: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 Box Styles for Dish Pages */
.location-box {
  background: #f8f9fa;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin: 2rem 0;
}

.location-box h2 {
  text-align: center;
  padding: 1.5rem;
  margin: 0;
  background: #1a1a1a;
  color: #fff;
  font-size: 1.5rem;
}

.location-box-content {
  display: flex;
  flex-wrap: wrap;
}

.location-box-map {
  flex: 1 1 60%;
  min-width: 300px;
}

.location-box-map iframe {
  width: 100%;
  height: 350px;
  border: 0;
  display: block;
}

.location-box-info {
  flex: 1 1 40%;
  min-width: 280px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}

.location-box-info h3 {
  margin: 0 0 1rem 0;
  font-size: 1.4rem;
  color: #1a1a1a;
}

.location-box-info p {
  margin: 0.5rem 0;
  color: #4e4b66;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.location-box-info p i {
  color: #ca0000;
  width: 20px;
}

.location-box-info a {
  color: #4e4b66;
  text-decoration: none;
  transition: color 0.3s ease;
}

.location-box-info a:hover {
  color: #ca0000;
}

.location-box-info .btn-directions {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background: #ca0000;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  transition: background 0.3s ease, transform 0.2s ease;
}

.location-box-info .btn-directions:hover {
  background: #a50000;
  transform: translateY(-2px);
}

.location-box-info .btn-directions i {
  color: #fff;
  margin-right: 0.5rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .location-box-content {
    flex-direction: column;
  }

  .location-box-map,
  .location-box-info {
    flex: 1 1 100%;
  }

  .location-box-map iframe {
    height: 280px;
  }

  .location-box-info {
    padding: 1.5rem;
  }

  .location-box h2 {
    font-size: 1.25rem;
    padding: 1rem;
  }
}
