:root {
  --brand-bg: #f5f7fb;
  --brand-primary: #0b5ed7;
  --brand-accent: #198754;
  --text-main: #1f2937;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(180deg, #f8fafc 0%, var(--brand-bg) 100%);
  color: var(--text-main);
  min-height: 100vh;
}

.page-shell {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.hero-box {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.client-card {
  border: 1px solid #e5e7eb;
  border-radius: 0.9rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.client-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(2, 6, 23, 0.1);
}

.label-chip {
  display: inline-block;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: #e9f2ff;
  color: #0a58ca;
  font-size: 0.8rem;
  font-weight: 600;
}

.detail-item {
  margin-bottom: 0.6rem;
}

.detail-item strong {
  min-width: 110px;
  display: inline-block;
}

.back-link {
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: 0.5rem;
  top: 0.5rem;
  z-index: 1050;
  background: #ffffff;
  color: #111827;
  border: 1px solid #d1d5db;
  border-radius: 0.4rem;
  padding: 0.4rem 0.7rem;
}

.cantine-page {
  background: #fff9f1;
  color: #2b2a28;
}

.cantine-nav {
  background: rgba(35, 24, 18, 0.95);
  backdrop-filter: blur(8px);
}

.cantine-hero {
  min-height: 90vh;
  padding-top: 6rem;
  color: #fff8ee;
  background:
    linear-gradient(120deg, rgba(31, 20, 16, 0.9), rgba(66, 40, 24, 0.86)),
    radial-gradient(circle at 20% 15%, rgba(255, 182, 109, 0.3), transparent 40%),
    radial-gradient(circle at 85% 85%, rgba(255, 228, 190, 0.22), transparent 45%),
    #2f1f16;
}

.hero-kicker {
  letter-spacing: 0.1rem;
  color: #f6d1a7;
  font-weight: 600;
}

.cantine-hero-card {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 0.9rem;
  padding: 1.3rem;
}

.cantine-soft-bg {
  background: linear-gradient(180deg, #fff9f1 0%, #f6ece2 100%);
}

.feature-panel {
  background: #ffffff;
  border: 1px solid #ece2d8;
  border-radius: 0.8rem;
  padding: 1rem;
  box-shadow: 0 6px 14px rgba(72, 46, 31, 0.07);
}

.service-card {
  border: 1px solid #e5d8ca;
  border-radius: 0.85rem;
  padding: 1.2rem;
  background: #fffefc;
  box-shadow: 0 8px 18px rgba(53, 36, 24, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(53, 36, 24, 0.14);
}

.service-card i {
  font-size: 1.6rem;
  color: #8c4f1f;
}

.testimonial-card {
  margin: 0;
  background: #ffffff;
  border: 1px solid #eadccf;
  border-radius: 0.85rem;
  padding: 1.25rem;
  box-shadow: 0 8px 20px rgba(69, 46, 34, 0.08);
}

.contact-panel {
  background: #fffdf9;
  border: 1px solid #e6d8c9;
  border-radius: 0.85rem;
  padding: 1.3rem;
}

.cantine-footer {
  background: #2a1c15;
  color: #f3e8d9;
}

.cantine-page section {
  animation: fadeUp 0.6s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991.98px) {
  .cantine-hero {
    min-height: auto;
    padding-top: 6.5rem;
    padding-bottom: 3rem;
  }
}
