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

/* 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;
}

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 Section Styles (Dish Pages)
   ============================================ */
.location-section {
  padding: 3rem 1rem;
  background: #f9f9f9;
}

.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: 2rem auto 0;
}

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

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

.location-info {
  padding: 1.5rem;
}

.location-info h3 {
  font-size: 1.4rem;
  color: #1a1a1a;
  margin: 0 0 1rem 0;
}

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

.location-details p i {
  color: var(--primaryLight);
  font-size: 1.1rem;
}

.location-details a {
  color: #4e4b66;
  text-decoration: none;
}

.location-details a:hover {
  color: var(--primaryLight);
}

.location-details h4 {
  font-size: 1rem;
  color: #1a1a1a;
  margin: 1.25rem 0 0.5rem 0;
}

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

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.35rem 0;
  font-size: 0.9rem;
  color: #4e4b66;
  border-bottom: 1px solid #eee;
}

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

.hours-list li span {
  font-weight: 600;
  color: #1a1a1a;
}

.get-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
}

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

/* Dish Features List */
.dish-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.dish-features li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #4e4b66;
  border-bottom: 1px solid #eee;
}

.dish-features li:before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primaryLight);
}

.dish-features li:last-child {
  border-bottom: none;
}

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

  .location-map {
    width: 50%;
    min-height: 350px;
  }

  .location-map iframe {
    height: 100%;
    min-height: 350px;
  }

  .location-info {
    width: 50%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
  }

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

  .get-directions-btn {
    margin-top: auto;
    align-self: flex-start;
  }
}

/* ============================================
   Homepage Location & Map Section
   ============================================ */
.location__container {
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  padding: 4rem 1rem;
}

.location__wrapper {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  max-width: 1100px;
  margin: 2rem auto 0;
}

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

.location__map iframe {
  width: 100%;
  height: 280px;
  display: block;
}

.location__info {
  padding: 2rem;
}

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

.location__details p {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0.75rem 0;
  color: #4e4b66;
  font-size: 1rem;
}

.location__details p i {
  color: var(--primaryLight);
  font-size: 1.15rem;
  width: 20px;
  text-align: center;
}

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

.location__details a:hover {
  color: var(--primaryLight);
}

.location__hours {
  margin-top: 1rem;
}

.location__hours ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0 2rem;
}

.location__hours li {
  padding: 0.35rem 0;
  font-size: 0.95rem;
  color: #4e4b66;
}

.location__buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.location__buttons .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-size: 0.95rem;
  text-align: center;
}

.location__buttons .btn i {
  font-size: 1rem;
}

/* Tablet and Desktop Styles for Homepage Location */
@media (min-width: 768px) {
  .location__wrapper {
    flex-direction: row;
  }

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

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

  .location__info {
    width: 45%;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
  }

  .location__info h3 {
    font-size: 1.6rem;
  }

  .location__buttons {
    flex-direction: row;
    margin-top: auto;
    padding-top: 1.5rem;
  }
}
