/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: 0.2s ease;
  font-weight: 600;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-secondary {
  background: transparent;
  border-color: var(--border);
}

.btn-secondary:hover {
  background: var(--surface);
}

.btn-white {
  background: #fff;
  color: var(--accent);
  border-color: #fff;
}

.btn-white:hover {
  background: var(--bg);
}

/* ========== CARDS ========== */
.card-grid {
  display: grid;
  gap: var(--space-4);
}

.two-col {
  grid-template-columns: repeat(2, 1fr);
}

.three-col {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-height: 220px;
  padding: var(--space-5);
  box-shadow: var(--shadow);
}

.card h3 {
  margin-bottom: 0.3rem;
}

.card-subtitle {
  color: var(--muted);
  font-size: 0.875rem;
  margin-bottom: var(--space-2);
}

.card .image-placeholder {
  margin-top: auto;
}

.card .image-placeholder.large {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.card .image-placeholder.large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========== IMAGE PLACEHOLDER ========== */
.image-placeholder {
  display: grid;
  place-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--muted);
  box-shadow: var(--shadow);
}

.image-placeholder.medium {
  min-height: 220px;
  max-height: 320px;
}

/* ========== MAP ========== */
.map {
  min-height: clamp(400px, 55vh, 650px);
}

.map-button {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

/* ========== HERO ========== */
.hero {
  height: clamp(400px, 60vh, 700px);
  padding: clamp(5rem, 10vw, 8rem) 0;
  display: flex;
  align-items: center;

  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)),
    url("../images/tuana_grill_Hero.jpg") center/cover no-repeat;
  color: #fff;
}

.hero .hero-text {
  color: rgba(255, 255, 255, 0.9);
}

.hero .eyebrow {
  color: #f1c40f;
}

.hero-content {
  max-width: 760px;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 1.05;
  margin-bottom: var(--space-4);
}

.hero-text {
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: var(--space-5);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

/* ========== FEATURE LIST ========== */
.feature-list {
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-4);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-list li > span {
  font-size: 1.75rem;
  flex-shrink: 0;
  line-height: 1;
}

.feature-list li strong {
  display: block;
  margin-bottom: var(--space-1);
}

/* ========== TESTIMONIALS ========== */
.testimonial {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.testimonial blockquote {
  font-style: italic;
  flex: 1;
}

.testimonial cite {
  font-style: normal;
  font-weight: 700;
  font-size: 0.9rem;
}

.stars {
  color: #f1c40f;
  letter-spacing: 0.1em;
  font-size: 1.1rem;
}

.section-title-center {
  text-align: center;
  margin-bottom: var(--space-6);
}

/* ========== CTA BANNER ========== */
.cta-banner {
  background: var(--accent);
  color: #fff;
  text-align: center;
  padding: var(--space-8) 0;
}

.cta-banner h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: #fff;
  margin-bottom: var(--space-3);
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  margin-bottom: var(--space-5);
}

/* ========== ORDER BAR ========== */
.order-bar {
  background: linear-gradient(270deg, #e8420d, #ff8c00, #06c167, #1677ff, #e8420d);
  background-size: 400% 100%;
  animation: order-bar-flow 7s ease infinite;
  padding: 0.85rem 0;
  position: sticky;
  top: 0;
  z-index: 1001;
}

@keyframes order-bar-flow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.order-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem 1rem;
  flex-wrap: wrap;
}

.order-bar-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
  margin-right: 0.5rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.order-bar-dot {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  flex-shrink: 0;
  animation: order-pulse 1.6s ease-in-out infinite;
}

@keyframes order-pulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(255,255,255,0.6); }
  50%       { opacity: 0.7; transform: scale(1.2); box-shadow: 0 0 0 6px rgba(255,255,255,0); }
}

.order-btn {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  padding: 0.45rem 1.3rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  border: none;
  transition: transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}

.order-btn:hover {
  transform: translateY(-2px);
  color: #fff;
}

.order-btn.thuisbezorgd {
  background: #e8420d;
  box-shadow: 0 3px 12px rgba(232, 66, 13, 0.5);
}
.order-btn.thuisbezorgd:hover {
  box-shadow: 0 6px 20px rgba(232, 66, 13, 0.7);
}

.order-btn.uber {
  background: #06c167;
  box-shadow: 0 3px 12px rgba(6, 193, 103, 0.5);
}
.order-btn.uber:hover {
  box-shadow: 0 6px 20px rgba(6, 193, 103, 0.7);
}

.order-btn.foodticket {
  background: #1677ff;
  box-shadow: 0 3px 12px rgba(22, 119, 255, 0.5);
}
.order-btn.foodticket:hover {
  box-shadow: 0 6px 20px rgba(22, 119, 255, 0.7);
}

@media (max-width: 640px) {
  .order-bar-label {
    width: 100%;
    justify-content: center;
    margin-right: 0;
    margin-bottom: 0.1rem;
  }
  .order-btn {
    font-size: 0.78rem;
    padding: 0.35rem 0.85rem;
  }
}

@media (max-width: 380px) {
  .order-btn {
    font-size: 0.74rem;
    padding: 0.3rem 0.65rem;
  }
}

/* ========== RESPONSIVE GRIDS & COMPONENTS ========== */
@media (max-width: 960px) {
  .three-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero {
    height: auto;
    min-height: 0;
    padding: 5.5rem 0 3.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .three-col {
    grid-template-columns: 1fr;
  }

  .image-placeholder.large {
    min-height: 220px;
  }

  .card {
    min-height: 0;
  }
}
