/* =========================
   BASE / RESET
========================= */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f7f7f7;
  color: #222;
}

a {
  color: inherit;
}

/* =========================
   HEADER + SLIDER
========================= */
.site-header {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: #222;
  z-index: 10;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}



.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.header-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.55)
  );
}

.header-content {
  
  padding-left: 1.5rem;
  color: #fff;
}

.header-content h1 {
  font-style: italic;
  margin: 0 0 0.5rem 0;
  transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
  color: #d65143; /* ngjyra fillestare */
}

.header-content h1:hover {
  transform: scale(1.1);         /* rritet 10% */
  color: #ef3723;                 /* ngjyra pak më e ndezur */
  text-shadow: 2px 2px 6px rgba(0,0,0,0.2); /* shadow i butë */
}



/* =====================
   Responsive: Mobile
===================== */
@media (max-width: 600px) {
  .header-content h1:hover {
    transform: scale(1.05); /* rritje më e lehtë në ekran të vogël */
    text-shadow: 1px 1px 3px rgba(0,0,0,0.15); /* shadow më i butë */
  }
}

/* =========================
   HEADER DEVIDER ITALIAN
========================= */

.header-divider-italian {
  height: 12px;
  width: 100%;
  display: flex;
  overflow: hidden;
  border-radius: 6px 6px 0 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.header-divider-italian div {
  flex: 1;
  height: 100%;
}

/* Ngjyrat e flamurit italian */
.header-divider-italian .green { background: #008C45; }
.header-divider-italian .white { background: #FFFFFF; }
.header-divider-italian .red   { background: #CD212A; }

/* Për mobile, mund të zvogëlojmë lartësinë */
@media (max-width: 768px) {
  .header-divider-italian {
    height: 8px;
  }
}

/* =========================
   HEADER NAVIGATION
========================= */
.site-header nav {
  margin-top: 0.5rem;
}

.site-header nav a {
  display: inline-block;
  padding: 0.45rem 1rem;
  margin-right: 0.6rem;

  color: rgb(214, 238, 150);
  text-decoration: none;
  font-weight: 500;

  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);

  transition:
    background 0.25s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.site-header nav a:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.site-header nav a:active {
  transform: translateY(0);
}

/* =========================
   HERO / PAGE CONTENT
========================= */
.hero {
  padding: 2rem;
  text-align: center;
}

.hero.hero-bg {
  position: relative;
  overflow: hidden;
  height: 500px; /* ose sipas nevojës */
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;

}
/* Mobile responsive */
@media (max-width: 768px) {
  .hero.hero-bg {
    height: 400px;
    clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
  }
}

.slideshow-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slideshow-background.show {
  opacity: 1;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 2rem;
}
.hero-overlay h2 {
  font-style: italic;
  position: relative;
  z-index: 2;
  text-align: center;
  color: #d65143;
  padding: 2rem;
  transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}

.hero-overlay h2:hover {
  transform: scale(1.1);         /* rritet 10% */
  color: #ef3723;                 /* ngjyra pak më e ndezur */
  text-shadow: 2px 2px 6px rgba(0,0,0,0.2); /* shadow i butë */
}

.hero-overlay p {
  font-style: italic;
  position: relative;
  z-index: 2;
  text-align: center;
  color: #27e93a;
  padding: 2rem;
  transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}

.hero-overlay p:hover {
  transform: scale(1.1);         /* rritet 10% */
  color: #07901e;                 /* ngjyra pak më e ndezur */
  text-shadow: 2px 2px 6px rgba(0,0,0,0.2); /* shadow i butë */
}

.open-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  background: rgba(0,0,0,0.6);
  padding: 0.5rem 1rem;
  border-radius: 5px;
}


.page {
  max-width: 700px;
  margin: 40px auto;
  padding: 0 20px;
  line-height: 1.6;
}

.open-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: bold;
  margin-bottom: 12px;
}

.open-badge.open {
  background: #2e7d32;
  color: #fff;
}

.open-badge.closed {
  background: #9e9e9e;
  color: #fff;
}

.open-badge small {
  display: block;
  margin-top: 4px;
  font-size: 0.75rem;
  font-weight: normal;
  opacity: 0.9;
}

.btn {
  display: inline-block;
  margin: 0.5rem;
  padding: 0.8rem 1.2rem;
  background: #03831a;
  color: white;
  text-decoration: none;
  border-radius: 999px;
}

.btn.secondary {
  background: rgb(238, 52, 52);
}
/* =========================
   OPENING HOURS
========================= */

.opening-hours {
  padding: 4rem 2rem;
  background: #f8f8f8;
  text-align: center;
}

.opening-hours h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #222;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  justify-items: center;
}

.day-card {
  background: #fff;
  padding: 1.5rem 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  width: 100%;
  max-width: 220px;
  text-align: center;
}

.day-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: #333;
}

.day-card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

.day-card.closed {
  background: #ffe6e6;
  color: #c00;
}

.day-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Ikona e ores */
.day-card i.fa-clock {
  color: #ff6600; /* mund të ndryshohet sipas dizajnit */
  margin-right: 0.5rem;
}

/* =========================
   MENU
========================= */
.menu-section {
  display: none;
  padding: 1.5rem;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.menu-section.active {
  display: block;
}

.menu-item {
  background: rgb(197, 237, 170);
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.06);
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.menu-title {
  font-style: italic;
  font-size: 1.05rem;
}

.menu-price {
  font-size: 1rem;
}

.menu-ingredients {
  margin-top: 0.4rem;
  color: #555;
}

.menu-small {
  margin-top: 0.3rem;
  font-size: 0.9rem;
  color: #333;
}

.menu-allergens {
  margin-top: 0.3rem;
  font-size: 0.75rem;
  color: #888;
}

.menu-tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 15px;
  margin-bottom: 20px;
}

.tab-btn {
  border: none;
  padding: 10px 18px;
  border-radius: 999px;
  background: #eee;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.tab-btn:hover {
  background: #ddd;
}

.tab-btn.active {
  background: #c0392b;
  color: #fff;
}



/* =========================
   ALLERGENS SECTION – MODERN
========================= */
.allergens {
  margin-top: 60px;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f3fbf6, #fff5f5);
  border-radius: 16px;
  font-size: 0.9rem;
  color: #2f3e34;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.allergens h3 {
  margin-bottom: 1rem;
  font-weight: 700;
  color: #2e7d32; /* jeshile e errët */
}

.allergens ul {
  columns: 2;
  list-style: none;
  padding: 0;
  margin: 0;
}

.allergens li {
  margin-bottom: 0.6rem;
  padding: 0.4rem 0.6rem;
  border-radius: 8px;
  background: rgba(46, 125, 50, 0.08); /* jeshile shumë e lehtë */
  color: #2f3e34;
  transition: background 0.25s ease, transform 0.25s ease;
}

.allergens li:nth-child(even) {
  background: rgba(198, 40, 40, 0.06); /* e kuqe shumë e lehtë */
}

.allergens li:hover {
  background: rgba(46, 125, 50, 0.15);
  transform: translateX(4px);
}

.allergen-hint {
  margin-top: 1rem;
  padding-left: 0.75rem;
  border-left: 4px solid #c62828; /* e kuqe e butë */
  font-size: 0.8rem;
  color: #555;
}

/* =========================
   FOOTER
========================= */
.site-footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  opacity: 0.85;
}

.site-footer nav a {
  text-decoration: none;
  margin: 0 6px;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-logo {
  height: 38px;
  width: auto;
  border-radius: 10px;
  padding: 4px;
  background-color: #fff;
  transition: transform 0.2s ease-in;
  cursor: pointer;
}

.footer-logo:hover {
  transform: scale(1.05);
}

/* =========================
   CALL BUTTON (MOBILE)
========================= */
.call-button {
  display: none;
}

@media (max-width: 768px) {
  .call-button {
    display: flex;
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: #c62828;
    color: #fff;
    padding: 14px 28px;
    border-radius: 40px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
    z-index: 999;
    align-items: center;
    gap: 8px;
  }
}

/* =========================
   COOKIE NOTICE
========================= */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #222;
  color: #fff;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  z-index: 1000;
}

.cookie-notice a {
  color: #fff;
  text-decoration: underline;
}

.cookie-notice button {
  background: #c62828;
  color: #fff;
  border: none;
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .site-header, .hero.hero-bg {
    border-radius: 12px;
    height: 200px;
  }

  .site-footer {
    padding-bottom: 80px;
  }
}