html {
  scroll-behavior: smooth;
}

body {
  font-size: 1.25rem; /* Збільшено розмір всього тексту */
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  color: #3e2c1c;
  background-color: #f5efe6;
}

/* NAVBAR */
.navbar {
  background-color: rgba(75, 46, 30, 0.95) !important;
}

.nav-link {
  font-size: 1.4rem !important; /* Збільшено розмір кнопок на панелі */
  padding: 10px 20px !important;
  color: #e6d6c3 !important;
  transition: all 0.3s ease;
}

/* ACTIVE NAV LINK */
.nav-link.active {
  color: #ffffff !important;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.7);
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 80px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;

  /* 🔁 ТУТ МІНЯЄШ ФОТО */
  background-image: url("img1.jpg");
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(60, 40, 25, 0.6);
  backdrop-filter: blur(6px);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-content h1 {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 20px;
  line-height: 1.6;
}

/* SECTIONS */
.section {
  padding: 60px 20px;
}

.section-dark {
  background-color: #f1e4d1;
}

/* MENU */
.menu-category h3 {
  border-bottom: 2px solid #6f4e37;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.menu-item {
  margin-bottom: 20px;
}

.menu-item-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  font-weight: 600;
}

.menu-price {
  text-align: right;
  white-space: nowrap;
}

.menu-grams {
  font-size: 13px;
  color: #6b4b35;
}

.menu-item-desc {
  font-size: 14px;
  color: #5a3e2b;
}
/* КНОПКА ПОВЕРНЕННЯ ВГОРУ */
#btn-back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: none;
  z-index: 1000;
  background-color: #4b2e1e;
  color: #e6d6c3;
  border: 2px solid #e6d6c3;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 30px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
  transition: all 0.3s ease;
}

#btn-back-to-top:hover {
  background-color: #e6d6c3;
  color: #4b2e1e;
  transform: scale(1.1);
}


/* Контейнер для центрування */
.menu-hero-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Стиль фото: розтягнуте по ширині з квадратними пропорціями */
.menu-diagonal-photo {
    width: 100%;
    max-width: 1200px; /* Обмежуємо на дуже великих екранах для якості */
    height: 500px; /* Висота банера */
    object-fit: cover; /* Фото заповнює простір, не деформуючись */
    /* Тінь для ефекту об'єму */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Адаптація для телефонів */
@media (max-width: 768px) {
    .menu-diagonal-photo {
        height: 300px;
        border-radius: 20px;
        border-width: 3px;
    }
}

.menu-diagonal-photo {
    width: 100%;
    max-width: 1200px;
    height: 500px;
    object-fit: cover;
    
    /* Видалено або змінено на none */
    border: none; 
    
    border-radius: 40px; /* Заокруглення можна залишити, якщо воно вам подобається */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); /* Тінь також можна залишити для об'єму */
}
