: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 & Contact Section for Dish Pages */
.location-contact-container {
  padding: 3rem 1rem;
  background-color: #f9f9f9;
}

.location-contact-wrapper {
  display: flex;
  gap: 2rem;
  max-width: 1200px;
  margin: 2rem auto;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.map-column {
  flex: 1;
  min-width: 0;
}

.map-column iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
  border: none;
  display: block;
}

.info-column {
  flex: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.info-column h3 {
  color: var(--headerColor);
  font-size: 1.75rem;
  margin-bottom: 1rem;
  border-bottom: 3px solid #ca0000;
  padding-bottom: 0.5rem;
}

.info-column h4 {
  color: var(--headerColor);
  font-size: 1.25rem;
  margin: 1.5rem 0 0.75rem 0;
}

.location-info {
  margin-bottom: 1.5rem;
}

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

.location-info p strong {
  color: var(--headerColor);
  font-size: 1.1rem;
}

.location-info i {
  margin-right: 0.5rem;
  color: #ca0000;
}

.location-info a {
  color: #ca0000;
  text-decoration: none;
  font-weight: 600;
}

.location-info a:hover {
  text-decoration: underline;
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hours-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #e0e0e0;
  color: var(--bodyTextColor);
  display: flex;
  justify-content: space-between;
}

.hours-list li:last-child {
  border-bottom: none;
}

.hours-list strong {
  color: var(--headerColor);
  min-width: 120px;
}

.directions-btn-wrapper {
  margin-top: 1.5rem;
  text-align: center;
}

.directions-btn-wrapper .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background-color: #ca0000;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.directions-btn-wrapper .btn:hover {
  background-color: #a00000;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .location-contact-wrapper {
    flex-direction: column;
    gap: 0;
  }

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

  .info-column {
    padding: 1.5rem;
  }

  .info-column h3 {
    font-size: 1.5rem;
  }

  .hours-list li {
    flex-direction: column;
    gap: 0.25rem;
  }

  .hours-list strong {
    min-width: auto;
  }
}
