/* ===== Kebab Shawarma Station — palette & theme =====
   Swap these variables to retune the look; everything below references them. */
:root {
  --ks-beige: #f5efe4;
  --ks-beige-dark: #e8dcc4;
  --ks-white: #ffffff;
  --ks-accent: #b5652d;
  --ks-accent-dark: #954f21;
  --ks-olive: #7d8c5c;
  --ks-text: #3a2e22;
  --ks-text-soft: #5a4a38;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--ks-beige);
  color: var(--ks-text);
  font-family: 'Nunito Sans', Arial, sans-serif;
}

h1, h2, h3, h4, .brand-font {
  font-family: 'Playfair Display', Georgia, serif;
}

section {
  scroll-margin-top: 80px;
}

/* ===== Navbar ===== */
.navbar {
  background-color: rgba(245, 239, 228, 0.95);
  transition: box-shadow 0.2s ease, background-color 0.2s ease;
}

.navbar.scrolled {
  box-shadow: 0 2px 10px rgba(58, 46, 34, 0.12);
  background-color: var(--ks-beige);
}

.navbar-brand {
  font-weight: 700;
  color: var(--ks-text) !important;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-brand img {
  height: 36px;
  width: 36px;
}

.navbar-nav .nav-link {
  color: var(--ks-text-soft);
  font-weight: 600;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--ks-accent);
}

/* ===== Buttons ===== */
.btn-ks-accent {
  background-color: var(--ks-accent);
  border-color: var(--ks-accent);
  color: var(--ks-white);
}

.btn-ks-accent:hover {
  background-color: var(--ks-accent-dark);
  border-color: var(--ks-accent-dark);
  color: var(--ks-white);
}

.btn-ks-outline {
  background-color: transparent;
  border: 2px solid var(--ks-white);
  color: var(--ks-white);
}

.btn-ks-outline:hover {
  background-color: var(--ks-white);
  color: var(--ks-accent);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-image: linear-gradient(rgba(58, 46, 34, 0.45), rgba(58, 46, 34, 0.45)), url('../images/hero.svg');
  color: var(--ks-white);
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
}

.hero p.lead {
  color: #f5efe4;
}

/* ===== About ===== */
.about-img img {
  border-radius: 0.75rem;
  box-shadow: 0 10px 30px rgba(58, 46, 34, 0.15);
}

/* ===== Menu ===== */
.menu-card {
  background-color: var(--ks-white);
  border: 1px solid var(--ks-beige-dark);
  border-radius: 0.75rem;
  height: 100%;
}

.menu-card .price {
  color: var(--ks-accent);
  font-weight: 700;
  white-space: nowrap;
}

.menu-category-title {
  color: var(--ks-accent-dark);
  border-bottom: 2px solid var(--ks-beige-dark);
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}

/* ===== Gallery ===== */
.gallery img {
  border-radius: 0.5rem;
  transition: transform 0.25s ease;
  cursor: pointer;
}

.gallery img:hover {
  transform: scale(1.03);
}

/* ===== Location / Contact ===== */
.contact-section {
  background-color: var(--ks-beige-dark);
}

.contact-info li {
  margin-bottom: 0.75rem;
}

.map-frame {
  border: 0;
  border-radius: 0.75rem;
  width: 100%;
  min-height: 350px;
}

/* ===== Footer ===== */
footer {
  background-color: var(--ks-text);
  color: var(--ks-beige);
}

footer a {
  color: var(--ks-beige);
  text-decoration: none;
}

footer a:hover {
  color: var(--ks-accent);
}

/* ===== Floating WhatsApp button ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  z-index: 1050;
  color: var(--ks-white);
  transition: transform 0.15s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  color: var(--ks-white);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

/* ===== Back to top ===== */
.back-to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: var(--ks-accent);
  color: var(--ks-white);
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 1050;
  border: none;
}

.back-to-top.show {
  display: flex;
}
