@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600&family=Inter:wght@300;400;500&display=swap');

/* ========================================= */
/* VARIABILE TEMA                            */
/* ========================================= */

:root {
  --bg: #f5efe6;
  --text: #111111;
  --accent: #0F3A37;      /* verde logo */
  --accent-soft: #C5A471; /* auriu logo */
  --card-bg: #ffffff;
  --border-subtle: rgba(0,0,0,0.08);
}

body.dark {
  --bg: #050809;
  --text: #f5efe6;
  --card-bg: #111417;
  --border-subtle: rgba(255,255,255,0.15);

  /* accente mai luxoase în dark */
  --accent: #0A1F1D;
  --accent-soft: #d4b176;
}

/* ========================================= */
/* RESET & GENERIC                           */
/* ========================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

main {
  padding-bottom: 4rem;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  margin: 0 0 0.6rem;
  word-wrap: break-word;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Scroll smooth */
html {
  scroll-behavior: smooth;
}

/* Respectă preferința reduce motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ========================================= */
/* LAYOUT GENERIC & GRID                     */
/* ========================================= */

.section {
  padding: 4rem 3rem;
}

.section-narrow {
  max-width: 1100px;
  margin: 0 auto;
}

/* Grid universal folosit la carduri / meniuri */
.menu-grid-premium,
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}

/* Grid 3 col (galerie, reviews etc) */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

/* ========================================= */
/* HEADER KAIF                               */
/* ========================================= */

.kaif-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.1rem 3rem;
  background: var(--accent);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  position: sticky;
  top: 0;
  z-index: 999;
}

.logo-light {
  display: block;
}

.logo-dark {
  display: none;
}

.logo img {
  height: 80px;
}

.logo-light,
.logo-dark {
  height: 82px;
  width: auto;
  object-fit: contain;
}

body.dark .logo-light {
  display: none;
}

body.dark .logo-dark {
  display: block;
}

/* MENIU CENTRAT + underline animat */

.center-menu {
  display: flex;
  gap: 2.4rem;
}

.center-menu a {
  position: relative;
  font-size: 1.5rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.3px;
  transition: 0.2s ease;
  font-family: 'Playfair Display', serif;
}

.center-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 0;
  height: 2px;
  background: var(--accent-soft);
  transition: width 0.25s ease;
}

.center-menu a:hover {
  color: var(--accent-soft);
  transform: translateY(-2px);
}

.center-menu a:hover::after {
  width: 100%;
}

/* BUTOANE DREAPTA */

.right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.order-btn {
  padding: 0.6rem 1.4rem;
  background: var(--accent-soft);
  color: #0F3A37;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.98rem;
  transition: 0.25s ease;
  border: 1px solid transparent;
}

.order-btn:hover {
  background: #ffffff;
  color: #0F3A37;
  transform: translateY(-1px);
}

/* DARK MODE TOGGLE */

.theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.4);
  background: transparent;
  cursor: pointer;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: 0.2s ease;
}

.theme-toggle:hover {
  background: rgba(255,255,255,0.16);
}

/* HEADER SHRINK LA SCROLL */

.kaif-header.shrink {
  height: 58px;
  padding: 0.3rem 2rem;
  transition: 0.25s ease;
}

.kaif-header.shrink .logo img {
  height: 32px;
  transition: 0.25s ease;
}

/* ========================================= */
/* HERO SLIDER                               */
/* ========================================= */

.hero-slider {
  width: 100%;
  height: 90vh;
  position: relative;
  overflow: hidden;
}

.hero-slider .slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slider .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slider .slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8);
  transform: scale(1.03);
}

.hero-slider .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 6vw;
  color: #ffffff;
  max-width: 520px;
  transform: translateY(0);
  transition: transform 0.5s ease;
}

.hero-slider .overlay h1 {
  font-size: 3rem;
  margin-bottom: 0.6rem;
}

.hero-slider .overlay p {
  font-size: 1rem;
  margin-bottom: 1.4rem;
}

.menu-tag {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.8;
  margin-bottom: 0.4rem;
}

.hero-slider .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-primary-btn,
.hero-secondary-btn {
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.hero-primary-btn {
  background: #ffffff;
  color: #111111;
}

.hero-secondary-btn {
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.hero-secondary-btn:hover {
  background: rgba(255,255,255,0.1);
}

/* Buton Google Maps din secțiunea About */

.about-cta-buttons .hero-secondary-btn {
  background: var(--accent-soft) !important;
  border: 2px solid #ffffff !important;
  color: #0F3A37 !important;
  font-weight: 700;
  backdrop-filter: blur(4px);
  text-shadow: none;
  margin-top: 1.2rem;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  transition: 0.25s ease;
}

.about-cta-buttons .hero-secondary-btn:hover {
  background: #ffffff !important;
  color: #0F3A37 !important;
  border-color: #ffffff !important;
}

/* DOTS SLIDER */

.slider-dots {
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
}

.slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid #ffffff;
  background: transparent;
  cursor: pointer;
  transition: 0.2s ease;
}

.slider-dots .dot.active {
  background: #ffffff;
  width: 18px;
}

/* ========================================= */
/* SECTIONS – HOME / MENIU / ABOUT           */
/* ========================================= */

.home-menu {
  text-align: center;
}

.home-menu p {
  max-width: 520px;
  margin: 0.5rem auto 0;
}

/* Carduri meniu */

.menu-grid .item {
  padding: 1.5rem 1.2rem;
  border-radius: 14px;
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  text-align: left;
  box-shadow: 0 10px 26px rgba(0,0,0,0.04);
}

.menu-grid .item h3 {
  margin-bottom: 0.25rem;
}

.menu-grid .item p {
  margin: 0.1rem 0;
}

/* Imagini best sellers */

.home-menu-image {
  width: 100%;
  height: 160px;
  overflow: hidden;
  border-radius: 14px;
}

.home-menu-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.btn-menu {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.8rem 1.9rem;
  background: var(--accent);
  color: #ffffff;
  text-decoration: none;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
}

.home-about {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 2.5rem;
  align-items: center;
}

.home-about-image {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.home-about-image img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* ========================================= */
/* RECENZII                                 */
/* ========================================= */

.reviews {
  text-align: center;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.review {
  background: var(--card-bg);
  padding: 1.8rem 1.5rem;
  border-radius: 14px;
  border: 1px solid var(--border-subtle);
  font-size: 0.95rem;
  box-shadow: 0 10px 24px rgba(0,0,0,0.02);
}

.review span {
  display: block;
  margin-top: 0.8rem;
  font-weight: 500;
  opacity: 0.9;
}

/* Reviews block pe pagina Contact */

.reviews-block h2 {
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.review .author {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Carousel */

.reviews-carousel {
  width: 100%;
  max-width: 720px;
  margin: 3rem auto;
  text-align: center;
}

.carousel-track {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.review-card {
  background: var(--card-bg);
  padding: 1.4rem;
  border-radius: 16px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.12);
  animation: fadeSlide 0.8s ease;
}

@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ========================================= */
/* MENIU COMPLET                             */
/* ========================================= */

.menu-section {
  margin-top: 2.5rem;
}

.menu-section h2 {
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 0.3rem;
  margin-bottom: 1rem;
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 0.9rem 2.5rem;
}

.menu-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.menu-row span.price {
  font-weight: 600;
}

/* ========================================= */
/* DESPRE                                    */
/* ========================================= */

.about-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 2.5rem;
  align-items: center;
}

.about-image {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.about-image img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* ========================================= */
/* CONTACT                                   */
/* ========================================= */

.contact-hero {
  text-align: center;
  padding: 2rem 1rem;
}

.contact-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  color: var(--accent);
  margin-bottom: 0.3rem;
}

.contact-hero p {
  font-size: 1.2rem;
  opacity: 0.8;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
  padding: 2rem 3rem;
  align-items: flex-start;
}

.contact-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1.8fr;
  gap: 2.5rem;
}

.contact-card {
  background: var(--card-bg);
  padding: 1.8rem;
  border-radius: 18px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.12);
  border: 1px solid var(--border-subtle);
  margin-bottom: 1.2rem;
}

.contact-card h2 {
  margin-bottom: 1.2rem;
  font-family: 'Playfair Display', serif;
}

.c-row {
  margin-bottom: 0.8rem;
}

.c-row strong {
  color: var(--accent);
}

.glovo-link {
  color: var(--accent-soft);
  text-decoration: underline;
  font-weight: 600;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.7rem 0.9rem;
  border-radius: 8px;
  border: 1px solid var(--border-subtle);
  background: transparent;
  color: var(--text);
  font-family: inherit;
}

.contact-form button {
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

/* Formular premium contact */

.contact-form-premium {
  background: #0F3A37;
  padding: 2rem;
  border-radius: 18px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  color: white;
}

.contact-form-premium h2 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
  color: #C5A471;
}

.contact-form-premium input,
.contact-form-premium textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  margin-bottom: 1rem;
  color: white;
}

.contact-form-premium input::placeholder,
.contact-form-premium textarea::placeholder {
  color: rgba(255,255,255,0.6);
}

.contact-form-premium button {
  width: 100%;
  padding: 1rem;
  border-radius: 10px;
  background: #C5A471;
  border: none;
  color: #0F3A37;
  font-weight: 700;
  font-size: 1rem;
  transition: 0.2s ease;
}

.contact-form-premium button:hover {
  background: white;
}

.contact-form-wrapper .contact-form-premium {
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
}

/* Butoane mici în cardul de contact */

.contact-small-btn {
  display: inline-block;
  margin-top: 0.3rem;
  padding: 0.35rem 0.9rem;
  background: var(--accent-soft);
  color: #0F3A37;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  transition: 0.25s;
}

.contact-small-btn:hover {
  background: white;
  transform: translateY(-2px);
}

/* Hărți */

.map-wrapper {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  min-height: 320px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-premium {
  width: 100%;
  height: 420px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(20px);
  animation: mapFadeIn 0.9s ease-out forwards;
  margin-top: 2rem;
}

@keyframes mapFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.map-premium iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-map-large {
  width: 100%;
  height: 600px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
  animation: fadeUp 1s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

.contact-map-large iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================= */
/* GALERIE FOTO                              */
/* ========================================= */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1.2rem;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transform: translateY(0);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.18);
}

/* ========================================= */
/* FOLLOW US                                 */
/* ========================================= */

.follow-us {
  width: 100%;
  max-width: 720px;
  margin: 3rem auto;
  text-align: center;
}

.social-buttons {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 1.4rem;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.4rem;
  border-radius: 12px;
  font-weight: 600;
  transition: 0.25s;
  text-decoration: none;
  color: white;
}

.social-btn:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

.instagram { background: #C13584; }
.tiktok { background: black; color: white; }
.social-btn i { width: 20px; height: 20px; }

/* ========================================= */
/* FOOTER PREMIUM KAIF                       */
/* ========================================= */

.kaif-footer {
  background: var(--accent);
  color: white;
  padding: 3rem 2rem 2rem;
  margin-top: 4rem;
  border-top: 2px solid var(--accent-soft);
}

.footer-logo {
  text-align: center;
  margin-bottom: 2rem;
}

.footer-logo img {
  height: 70px;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.3));
}

.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.footer-col h3 {
  font-family: 'Playfair Display', serif;
  color: var(--accent-soft);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.footer-col p,
.footer-col a {
  color: white;
  opacity: 0.85;
  font-size: 0.95rem;
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-col a:hover {
  opacity: 1;
}

/* SOCIAL ICONS */

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 0.8rem;
}

.footer-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease;
}

.footer-icon:hover {
  background: var(--accent-soft);
  transform: translateY(-4px);
}

.footer-icon svg {
  width: 24px;
  height: 24px;
}

.footer-order {
  background: var(--accent-soft);
  padding: 0.7rem 1.2rem;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #0F3A37;
  font-weight: 700;
  transition: 0.25s ease;
  margin-top: 1rem;
}

.footer-order:hover {
  background: white;
}

.footer-bottom {
  text-align: center;
  margin-top: 2.5rem;
  opacity: 0.8;
}

.footer-mini {
  font-size: 0.78rem;
  margin-top: 0.3rem;
  opacity: 0.6;
}

/* ========================================= */
/* COOKIE BANNER                             */
/* ========================================= */

.cookie-banner-premium {
  position: fixed;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 520px;
  background: #0f0f0fdd;
  backdrop-filter: blur(6px);
  border-radius: 18px;
  padding: 1.6rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  border: 1px solid rgba(255, 215, 0, 0.25);
  box-shadow: 0 14px 40px rgba(0,0,0,0.4);
  color: white;
  z-index: 999999;
  animation: slideUp 0.7s ease forwards;
}

.cookie-icon {
  font-size: 2rem;
}

.cookie-text h4 {
  margin: 0 0 0.2rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: #f4e5b0;
}

.cookie-text p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.4;
}

.cookie-btn {
  margin-left: auto;
  padding: 0.6rem 1.3rem;
  background: linear-gradient(135deg, #d4a043, #f6d788);
  color: black;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.25s;
}

.cookie-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.35);
}

.cookie-banner-premium.hidden {
  display: none;
}

@keyframes slideUp {
  from { bottom: -200px; opacity: 0; }
  to   { bottom: 20px; opacity: 1; }
}

body.dark .cookie-banner-premium {
  background: #181818dd;
  border-color: rgba(255, 215, 0, 0.35);
}

/* ========================================= */
/* ANIMAȚII GENERALE                         */
/* ========================================= */

.fade-in-up {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeInUp 0.8s ease forwards;
}

.fade-delay-1 { animation-delay: 0.15s; }
.fade-delay-2 { animation-delay: 0.3s; }
.fade-delay-3 { animation-delay: 0.45s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================= */
/* NAVBAR MOBILE                             */
/* ========================================= */

.mobile-menu-btn {
  display: none;
  font-size: 1.9rem;
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  background: var(--accent);
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 1rem 0;
  gap: 1rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.mobile-menu a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  text-align: center;
  padding: 0.6rem 0;
}

/* ascuns implicit */
.mobile-menu.hidden {
  display: none;
}

/* ========================================= */
/* RESPONSIVE                                */
/* ========================================= */

/* Tablet, small desktop */
@media (max-width: 900px) {
  .kaif-header {
    padding: 0.9rem 1.2rem;
    flex-wrap: wrap;
    gap: 0.8rem;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-slider {
    height: 70vh;
  }

  .hero-slider .overlay {
    max-width: 100%;
    align-items: center;
    text-align: center;
  }

  .hero-slider .overlay .cta-row {
    justify-content: center;
  }

  .section {
    padding: 3rem 1.6rem;
  }

  .home-about {
    grid-template-columns: 1fr;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .menu-list {
    grid-template-columns: 1fr;
  }

  .about-layout,
  .contact-grid,
  .contact-wrapper,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col p,
  .footer-col a {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }
}

/* Mobile */
@media (max-width: 650px) {
  .section {
    padding: 2.5rem 1rem;
  }

  .section-narrow {
    padding: 0 0.4rem;
  }

  .kaif-header {
    padding: 0.4rem 1rem;
    height: 58px;
    gap: 0.4rem;
  }

  .kaif-header.shrink {
    height: 48px !important;
    padding: 0.25rem 0.8rem !important;
  }

  .kaif-header.shrink .logo img {
    height: 32px !important;
  }

  .logo img {
    height: 42px !important;
  }

  .right .order-btn {
    padding: 0.35rem 0.9rem;
    font-size: 0.75rem;
  }

  .theme-toggle {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }

  /* pe mobil folosim doar mobile-menu */
  .center-menu {
    display: none !important;
  }

  .menu-image-wrapper {
    height: 150px;
  }
}

/* Grid responsiv pentru carduri generice */
@media (max-width: 1100px) {
  .menu-grid-premium,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .menu-grid-premium,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* Galeria foto */
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

