/* Global styles */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: #fff5e9;
  color: #3a2a1a;
}

/* Layout helpers */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem 2.5rem;
}

/* Header & Nav */
.site-header {
  background: linear-gradient(120deg, #ffb347, #ff9aa2);
  padding: 1rem 0 0.4rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  margin-bottom: 2rem;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem 0.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  justify-content: space-between;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo {
  height: 60px;
  width: auto;
  border-radius: 999px;
  background: #fff;
  padding: 6px 8px;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}

.brand-tagline {
  font-size: 0.9rem;
  opacity: 0.85;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.main-nav a {
  text-decoration: none;
  color: #3a2a1a;
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(4px);
  transition: background 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
  font-size: 0.9rem;
}

.main-nav a:hover {
  background: #fff;
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}

.main-nav a.active {
  background: #3a2a1a;
  color: #ffe9d6;
}

/* Hero (Home) */
.hero {
  background: #fff;
  border-radius: 18px;
  padding: 2.5rem 2rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 2.25rem;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 1.75rem;
  align-items: center;
}

.hero-main {
  text-align: left;
}

.hero h1 {
  margin-top: 0;
  font-size: 2.25rem;
}

.hero p.lead {
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0.75rem 0 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: #c0392b;
  background: #ffe4dc;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Buttons */
.btn {
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: transform 0.1s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: #3a2a1a;
  color: #ffe9d6;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

.btn-primary:hover {
  background: #251910;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
}

.btn-ghost {
  background: transparent;
  color: #3a2a1a;
  border: 1px solid rgba(58, 42, 26, 0.3);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.7);
}

/* Sections & cards */
.section {
  margin-top: 2.25rem;
}

.section h2 {
  margin-bottom: 0.75rem;
}

.card-grid {
  display: grid;
  gap: 1.25rem;
}

.card {
  background: #fff;
  border-radius: 14px;
  padding: 1.25rem 1.4rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

/* Carousel */
.hero-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
  background: #000;
  min-height: 220px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
}

.carousel-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(3px);
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.6);
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

.carousel-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.carousel-dot.active {
  background: #fff;
}

/* Locations */
.location-name {
  font-weight: 700;
  font-size: 1.05rem;
}

.location-tag {
  display: inline-block;
  margin-left: 0.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  background: #ffe4dc;
  color: #c0392b;
}

/* Menu items */
.menu-section h2 {
  border-bottom: 2px solid #ffb347;
  padding-bottom: 0.35rem;
}

.menu-intro {
  margin-top: 0.4rem;
  font-size: 0.95rem;
  opacity: 0.9;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 0.5rem 0;
  font-size: 0.98rem;
}

.menu-item-main {
  display: flex;
  flex-direction: column;
}

.menu-item-name {
  font-weight: 600;
}

.menu-item-desc {
  font-size: 0.85rem;
  opacity: 0.9;
}

.menu-item span.price {
  font-weight: 700;
  white-space: nowrap;
}

/* Highlighted / special sections */
.section-highlight {
  background: #fff;
  border-radius: 18px;
  padding: 2rem 1.75rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  margin-top: 2.5rem;
}

.section-highlight h2 {
  margin-top: 0;
}

/* Giveaway form */
.giveaway-intro {
  font-size: 0.97rem;
  max-width: 650px;
  margin-bottom: 1.4rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.25rem;
  margin-bottom: 1.25rem;
}

.form-grid .full-width {
  grid-column: 1 / -1;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.9rem;
}

.form-field label {
  font-weight: 600;
}

.form-field input,
.form-field select,
.form-field textarea {
  border-radius: 999px;
  border: 1px solid rgba(58, 42, 26, 0.25);
  padding: 0.55rem 0.9rem;
  font: inherit;
  background: #fffdf9;
}

.form-field textarea {
  border-radius: 12px;
  min-height: 70px;
  resize: vertical;
}

.form-note {
  font-size: 0.8rem;
  opacity: 0.8;
}

/* Fuel your team layout */
.fuel-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 1.75rem;
  align-items: start;
}

.fuel-highlight {
  background: #fffaf3;
  border-radius: 16px;
  padding: 1.4rem 1.5rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.fuel-highlight h3 {
  margin-top: 0;
}

.fuel-list {
  list-style: none;
  padding-left: 0;
  margin: 0.4rem 0 0;
}

.fuel-list li {
  margin: 0.3rem 0;
}

.fuel-list li::before {
  content: "• ";
}

/* Reviews */
.reviews-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.review-card {
  background: #fff;
  border-radius: 14px;
  padding: 1.25rem 1.4rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.star-rating {
  color: #f2a51a;
  font-size: 1rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
}

.review-author {
  font-weight: 600;
  margin-top: 0.35rem;
}

.review-meta {
  font-size: 0.8rem;
  opacity: 0.8;
}

/* Footer */
footer {
  text-align: center;
  padding: 1.25rem 0 2rem;
  font-size: 0.85rem;
  color: #806a55;
}

/* Medium screens */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .fuel-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Small screens */
@media (max-width: 700px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding: 1.75rem 1.4rem;
  }

  .hero p.lead {
    margin-right: 0;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .menu-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .carousel-btn {
    width: 30px;
    height: 30px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}
