/* Sabor da Bandula — identidade visual */
:root {
  --brand-red: #c41e1e;
  --brand-red-dark: #8b1414;
  --brand-orange: #e6392a;
  --brand-cream: #f7efe4;
  --brand-gold: #f5b800;
  --brand-charcoal: #1a1a1a;
  --brand-white: #ffffff;
  --shadow-soft: 0 12px 40px rgba(139, 20, 20, 0.12);
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 5.5rem;
}

body {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  color: #2d2d2d;
  background-color: var(--brand-white);
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand span {
  font-family: "Nunito", "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
}

.text-brand-red {
  color: var(--brand-red) !important;
}

.bg-brand-red {
  background-color: var(--brand-red) !important;
}

.bg-brand-cream {
  background-color: var(--brand-cream) !important;
}

.btn-brand {
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-red));
  border: none;
  color: var(--brand-white);
  font-weight: 700;
  padding: 0.65rem 1.5rem;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-brand:hover {
  color: var(--brand-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 30, 30, 0.35);
}

.btn-outline-brand {
  border: 2px solid var(--brand-red);
  color: var(--brand-red);
  font-weight: 700;
  border-radius: 999px;
  padding: 0.55rem 1.35rem;
}

.btn-outline-brand:hover {
  background-color: var(--brand-red);
  border-color: var(--brand-red);
  color: var(--brand-white);
}

.btn-gold {
  background-color: var(--brand-gold);
  color: var(--brand-red-dark);
  font-weight: 800;
  border: none;
  border-radius: 999px;
  padding: 0.65rem 1.5rem;
}

.btn-gold:hover {
  background-color: #ffd54a;
  color: var(--brand-red-dark);
}

/* Navbar */
.navbar {
  backdrop-filter: blur(10px);
  transition: box-shadow 0.25s ease;
}

.navbar.scrolled {
  box-shadow: var(--shadow-soft);
}

.logo-nav {
  height: 52px;
  width: auto;
  border-radius: 50%;
  object-fit: cover;
}

/* Hero carousel */
.hero-carousel .carousel-item {
  min-height: min(85vh, 720px);
}

.hero-carousel .carousel-item img {
  object-fit: cover;
  height: min(85vh, 720px);
  width: 100%;
  filter: brightness(0.88);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(26, 26, 26, 0.75) 0%,
    rgba(139, 20, 20, 0.45) 45%,
    rgba(26, 26, 26, 0.35) 100%
  );
  z-index: 1;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(245, 184, 0, 0.95);
  color: var(--brand-red-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.15;
  color: var(--brand-white);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.hero-lead {
  font-size: 1.1rem;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.92);
}

.carousel-control-prev,
.carousel-control-next {
  width: 8%;
  z-index: 3;
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 6px;
}

/* Section titles */
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--brand-red-dark);
}

.section-sub {
  color: #666;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* Cards */
.card-dish {
  border: none;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease;
}

.card-dish:hover {
  transform: translateY(-6px);
}

.card-dish .card-img-top {
  height: 200px;
  object-fit: cover;
}

.price-tag {
  font-weight: 800;
  color: var(--brand-red);
  font-size: 1.15rem;
}

/* Menu list */
.menu-category {
  border-left: 4px solid var(--brand-gold);
  padding-left: 1rem;
  margin-bottom: 1.5rem;
}

.menu-item {
  border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
  padding: 0.85rem 0;
}

.menu-item:last-child {
  border-bottom: none;
}

/* Gallery mini carousel */
.gallery-thumb {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.gallery-thumb img {
  height: 280px;
  object-fit: cover;
  width: 100%;
}

/* Contact strip */
.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(245, 184, 0, 0.2);
  color: var(--brand-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

/* Footer */
footer {
  background: linear-gradient(180deg, var(--brand-charcoal) 0%, #0d0d0d 100%);
}

footer a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

footer a:hover {
  color: var(--brand-gold);
}

/* Reservation modal */
.modal-header {
  border-bottom-color: rgba(196, 30, 30, 0.15);
}

.modal-content {
  border: none;
  border-radius: 1rem;
}

/* Utilities */
.min-vh-50 {
  min-height: 50vh;
}
