@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400;1,500&family=Lato:wght@300;400;700&display=swap');

/* ─── COLOR TOKENS ─── */
:root {
  --gold:       #C8773A;
  --gold-dark:  #A85E28;
  --dark:       #1E120A;
  --cream:      #FBF7F2;
  --gray-light: #EDE6DA;
  --gray-med:   #9A8878;
  --white:      #FFFFFF;
  --shadow:     0 10px 40px rgba(30,18,10,0.13);
  --shadow-lg:  0 20px 60px rgba(30,18,10,0.18);
}

/* ─── RESET ─── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 400; }
.overline {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

/* ════════════════════════════════════════
   NAVBAR
════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 40px;
  transition: all 0.4s ease;
  background: transparent;
}
/* Faqet me hero: bëhet e errët me scroll */
#navbar.nav-blur {
  background: rgba(30, 18, 10, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
  padding: 12px 40px;
}
/* Faqet PA hero: gjithmonë e errët */
#navbar.nav-solid {
  background: rgba(30, 18, 10, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.18);
  padding: 12px 40px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  gap: 16px;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.12em;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-logo a { color: inherit; text-decoration: none; }
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  color: rgba(255,255,255,0.75);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
  white-space: nowrap;
  padding: 4px 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

/* Lang & Mobile */
.lang-switcher {
  display: flex;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 3px;
  overflow: hidden;
  flex-shrink: 0;
}
.lang-btn {
  padding: 6px 11px;
  background: transparent;
  color: rgba(255,255,255,0.5);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.3s;
  border-right: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  border-top: none;
  border-bottom: none;
  border-left: none;
  line-height: 1;
}
.lang-btn:last-child { border-right: none; }
.lang-btn.active { background: var(--gold); color: #fff; }
.lang-btn:hover:not(.active) { color: #fff; background: rgba(255,255,255,0.08); }

#mobileMenuBtn {
  display: none;
  color: #fff;
  flex-shrink: 0;
  padding: 4px;
  border-radius: 4px;
  transition: background 0.2s;
}
#mobileMenuBtn:hover { background: rgba(255,255,255,0.1); }

/* Mobile drawer — full width slide-down */
#mobileDropdown {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(22, 12, 5, 0.99);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 80px 28px 32px;
  z-index: 998;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  border-bottom: 1px solid rgba(212,175,55,0.2);
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
#mobileDropdown.open {
  display: block;
  transform: translateY(0);
  animation: slideDownNav 0.35s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes slideDownNav {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}
#mobileDropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.25s, padding-left 0.25s;
}
#mobileDropdown a:last-child { border-bottom: none; }
#mobileDropdown a:hover, #mobileDropdown a.active {
  color: var(--gold);
  padding-left: 6px;
}

/* Mobile close backdrop */
#mobileBackdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 997;
  background: rgba(0,0,0,0.4);
}
#mobileBackdrop.open { display: block; }
/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(30,18,10,0.7) 100%);
}
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #fff;
  max-width: 800px;
}
.hero-content h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 400;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.hero-content h2 {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--gold);
  color: #fff;
  padding: 14px 40px;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.3s;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover {
  background: #FFC857;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,175,55,0.4);
}
.btn-outline {
  border: 1.5px solid #fff;
  color: #fff;
  padding: 14px 40px;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.3s;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}

.hero-controls {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.hero-dot.active {
  width: 28px;
  border-radius: 4px;
  background: var(--gold);
}

/* ════════════════════════════════════════
   ABOUT STRIP
════════════════════════════════════════ */
.about-strip {
  background: var(--dark);
  color: #fff;
  padding: 80px 40px;
  text-align: center;
}
.about-strip p {
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(255,255,255,0.8);
  max-width: 760px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.stats-container {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.stat {
  text-align: center;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 400;
}
.stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 8px;
}

/* ════════════════════════════════════════
   SECTION HEADERS
════════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}
.gold-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 12px auto 0;
}

//* ════════════════════════════════════════
   MENU SECTION (INDEX)
════════════════════════════════════════ */
.menu-section { padding: 100px 40px; background: var(--cream); }
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.menu-tab {
  padding: 10px 24px;
  background: transparent;
  color: var(--gray-med);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
  cursor: pointer;
  border: none;
}
.menu-tab::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--gold);
  transition: left 0.3s, right 0.3s;
}
.menu-tab:hover { color: var(--dark); }
.menu-tab.active { color: var(--dark); }
.menu-tab.active::after { left: 0; right: 0; }

/* ── MENU LAYOUT HORIZONTAL (FOTO MAJTAS, INFO DJATHTAS) ── */
.menu-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Rreshti kryesor për produktet me foto */
.menu-photo-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.menu-photo-row {
  display: flex;
  align-items: center;
  gap: 24px;
  background: #fff;
  border: 1px solid rgba(212,175,55,0.18);
  border-radius: 8px;
  padding: 12px 20px 12px 12px;
  transition: all 0.3s ease;
}

.menu-photo-row:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateX(4px);
}

.menu-photo-img {
  width: 100px;
  height: 100px;
  min-width: 100px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
}

.menu-photo-info {
  flex: 1;
  min-width: 0;
}

.menu-photo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 6px;
}

.menu-photo-desc {
  font-size: 0.8rem;
  color: var(--gray-med);
  line-height: 1.5;
}

.menu-photo-price {
  background: var(--gold);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Rreshtat për produktet pa foto */
.menu-list-nophoto {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.menu-list-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #fff;
  border: 1px solid rgba(212,175,55,0.12);
  border-radius: 6px;
  padding: 14px 20px;
  transition: all 0.3s ease;
}

.menu-list-row:hover {
  background: rgba(212,175,55,0.04);
  transform: translateX(3px);
}

.menu-list-info {
  flex: 1;
  min-width: 0;
}

.menu-list-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.menu-list-desc {
  font-size: 0.78rem;
  color: var(--gray-med);
  line-height: 1.5;
}

.menu-list-price {
  background: var(--gold);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Mobile */
@media (max-width: 640px) {
  .menu-photo-row {
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px;
  }
  
  .menu-photo-img {
    width: 80px;
    height: 80px;
    min-width: 80px;
  }
  
  .menu-photo-price {
    margin-left: auto;
  }
  
  .menu-list-row {
    flex-wrap: wrap;
    gap: 12px;
  }
  
  .menu-list-price {
    margin-left: auto;
  }
}

/* ════════════════════════════════════════
   GALLERY
════════════════════════════════════════ */
.gallery-section { padding: 100px 40px; background: var(--dark); }
.gallery-section h2 { color: #fff; }
.gallery-section .overline { color: #FFD700; }
.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.filter-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 20px;
  cursor: pointer;
  transition: all 0.3s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 6px;
}
.gallery-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.gallery-item:hover img { transform: scale(1.1); filter: brightness(0.8); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-overlay { background: rgba(0,0,0,0.3); }
.gallery-zoom {
  color: #fff;
  font-size: 1.5rem;
  opacity: 0;
  transform: scale(0.7);
  transition: all 0.3s;
}
.gallery-item:hover .gallery-zoom { opacity: 1; transform: scale(1); }

/* ════════════════════════════════════════
   HOTEL ROOMS
════════════════════════════════════════ */
.hotel-section { padding: 100px 40px; background: var(--dark); }
.hotel-section h2 { color: #fff; }
.hotel-section .overline { color: #FFD700; }
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-bottom: 56px;
}
.room-card {
  position: relative;
  overflow: hidden;
  height: 400px;
  cursor: pointer;
}
.room-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.room-card:hover img { transform: scale(1.05); }
.room-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 60%);
  transition: background 0.35s;
}
.room-card:hover .room-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.1) 60%);
}
.room-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 28px;
  color: #fff;
}
.room-tag {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.room-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.room-features {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.booking-cta {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 4px;
  padding: 48px 40px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.booking-cta h3 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 12px;
}
.booking-cta p {
  color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.booking-btns {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-booking {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #003580;
  color: #fff;
  padding: 14px 32px;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s;
}
.btn-booking:hover {
  background: #002560;
  transform: translateY(-2px);
}

/* ════════════════════════════════════════
   RESERVATION FORM
════════════════════════════════════════ */
.reservation-section { padding: 100px 40px; background: var(--cream); }
.reservation-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  max-width: 1200px;
  margin: 0 auto;
}
.res-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 16px;
}
.res-info p { font-size: 0.9rem; color: var(--gray-med); line-height: 1.7; margin-bottom: 32px; }
.res-contact-list { display: flex; flex-direction: column; gap: 20px; }
.res-contact-item { display: flex; align-items: center; gap: 16px; }
.res-icon { width: 48px; height: 48px; border: 1px solid rgba(212,175,55,0.3); display: flex; align-items: center; justify-content: center; color: var(--gold); }
.res-text strong { display: block; font-size: 0.9rem; margin-bottom: 2px; }
.res-text small { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-med); }

.res-form {
  background: #fff;
  padding: 48px;
  border: 1px solid rgba(212,175,55,0.15);
  box-shadow: var(--shadow);
}
.res-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-med);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--cream);
  border: 1px solid rgba(212,175,55,0.2);
  padding: 12px 16px;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  color: var(--dark);
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: inset 0 0 0 2px rgba(212,175,55,0.1);
}
.form-group textarea { height: 100px; resize: vertical; }
.btn-submit {
  width: 100%;
  background: var(--dark);
  color: #fff;
  padding: 15px;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}
.btn-submit:hover { background: var(--gold); color: #fff; }
.form-success { display: none; text-align: center; padding: 16px; color: var(--gold); margin-top: 16px; }

/* ════════════════════════════════════════
   REVIEWS
════════════════════════════════════════ */
.reviews-section { padding: 100px 40px; background: var(--gray-light); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}
.review-card {
  background: #fff;
  padding: 32px;
  border-left: 3px solid var(--gold);
  transition: all 0.3s;
}
.review-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.review-stars { color: var(--gold); margin-bottom: 16px; }
.review-text {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(11,29,46,0.75);
  line-height: 1.7;
  margin-bottom: 20px;
}
.review-author {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.review-role { font-size: 0.65rem; color: var(--gray-med); margin-top: 3px; }

/* ════════════════════════════════════════
   CONTACT & MAP
════════════════════════════════════════ */
.contact-section { padding: 100px 40px; background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.contact-info > p { font-size: 0.9rem; color: var(--gray-med); margin-bottom: 36px; }
.contact-items { display: flex; flex-direction: column; gap: 18px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid rgba(212,175,55,0.2);
  transition: all 0.3s;
  text-decoration: none;
}
.contact-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}
.contact-item-icon {
  width: 44px;
  height: 44px;
  background: var(--dark);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.contact-item-icon.wa { background: #25D366; color: #fff; }
.contact-item-icon.book { background: #003580; color: #fff; }
.contact-item-text small {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-med);
  margin-bottom: 3px;
}
.contact-item-text strong { font-size: 0.9rem; color: var(--dark); font-weight: 400; }
.contact-map {
  height: 500px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.2);
}
.contact-map iframe { width: 100%; height: 100%; border: none; }

/* ════════════════════════════════════════
   FLOATING BUTTONS
════════════════════════════════════════ */
/* ════════════════════════════════════════
   FLOATING BUTTONS
════════════════════════════════════════ */
.floating-btns {
  position: fixed;
  bottom: 30px;
  right: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 900;
}

.float-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  color: #fff;
  animation: floatIn 0.5s ease backwards;
}

.float-btn:nth-child(1) { animation-delay: 0.1s; }
.float-btn:nth-child(2) { animation-delay: 0.2s; }
.float-btn:nth-child(3) { animation-delay: 0.3s; }

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.float-btn:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 12px 28px rgba(0,0,0,0.35);
}

.float-btn:active {
  transform: scale(0.95);
}

/* Ngjyrat */
.float-wa { 
  background: #25D366; 
}
.float-wa:hover {
  background: #1ebe57;
}

.float-call { 
  background: #0B1D2E; 
  border: 2.5px solid #D4AF37; 
  color: #D4AF37; 
}
.float-call:hover {
  background: #D4AF37;
  color: #0B1D2E;
}

.float-book { 
  background: #003580; 
}
.float-book:hover {
  background: #002a66;
}

/* Tooltip */
.float-tooltip {
  position: absolute;
  right: 70px;
  background: rgba(11,29,46,0.95);
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.float-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 6px solid rgba(11,29,46,0.95);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.float-btn:hover .float-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Mobile */
@media (max-width: 768px) {
  .floating-btns {
    bottom: 22px;
    right: 18px;
    gap: 12px;
  }

  .float-btn {
    width: 52px;
    height: 52px;
  }

  .float-btn svg {
    width: 23px;
    height: 23px;
  }

  .float-tooltip {
    display: none;
  }
}
/* ════════════════════════════════════════
   LIGHTBOX
════════════════════════════════════════ */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
#lightbox.visible { display: flex; }
#lightboxImg {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 2px;
}
.close-lightbox {
  position: absolute;
  top: 24px;
  right: 32px;
  color: rgba(255,255,255,0.6);
  font-size: 2.5rem;
  cursor: pointer;
  transition: color 0.3s;
}
.close-lightbox:hover { color: var(--gold); }

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
footer {
  background: #091520;
  color: #fff;
  padding: 80px 40px 0;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 60px;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

/* Brand */
.footer-brand h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.footer-brand h3 span { color: var(--gold); }

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 400px;
}

/* Social Icons */
.footer-social { 
  display: flex; 
  gap: 12px; 
}

.social-link {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.3s ease;
}

.social-link:hover {
  color: #fff;
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212,175,55,0.2);
}

.social-link:hover::before {
  transform: scale(1);
}

.social-link svg {
  position: relative;
  z-index: 1;
}

/* Footer Columns */
.footer-col h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold);
}

/* Footer Links */
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer-col ul li a::before {
  content: '›';
  position: absolute;
  left: -16px;
  opacity: 0;
  transition: all 0.3s ease;
  color: var(--gold);
  font-size: 1.2rem;
}

.footer-col ul li a:hover {
  color: var(--gold);
  transform: translateX(10px);
}

.footer-col ul li a:hover::before {
  opacity: 1;
}

.footer-col p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 10px;
}

/* Orari */
.footer-hours-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
  margin-bottom: 8px;
}

.footer-hours-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

.footer-hours-time {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  display: block;
}

.footer-hours-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  font-style: italic;
}

/* Contact Links */
.footer-col a.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
  margin-bottom: 14px;
  transition: all 0.3s ease;
}

.footer-col a.footer-contact-link svg {
  flex-shrink: 0;
  color: var(--gold);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.footer-col a.footer-contact-link:hover {
  color: var(--gold);
  transform: translateX(6px);
}

.footer-col a.footer-contact-link:hover svg {
  opacity: 1;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.footer-bottom p { 
  font-size: 0.78rem; 
  color: rgba(255,255,255,0.25); 
}

.footer-bottom p:last-child {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ════════════════════════════════════════
   FOOTER RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  footer {
    padding: 56px 24px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 40px;
  }

  .footer-brand h3 {
    font-size: 1.6rem;
  }

  .footer-brand p {
    font-size: 0.82rem;
  }

  .footer-col h4::after {
    width: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 20px 0;
  }

  .footer-bottom p {
    font-size: 0.72rem;
  }

  .footer-bottom p:last-child {
    font-size: 0.65rem;
  }
}

@media (max-width: 480px) {
  .footer-brand h3 {
    font-size: 1.4rem;
  }
  
  .social-link {
    width: 40px;
    height: 40px;
  }
}
/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item.wide { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .reservation-wrap { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  /* Menu grid tighter on tablets */
  .menu-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; }
  .menu-grid-photo { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; }
}
@media (max-width: 900px) {
  .nav-links { gap: 18px; }
  .nav-link { font-size: 0.62rem; letter-spacing: 0.15em; }
}
@media (max-width: 768px) {
  #navbar { padding: 14px 20px; }
  #navbar.nav-blur { padding: 10px 20px; }
  #navbar.nav-solid { padding: 10px 20px; }
  .nav-links { display: none; }
  #mobileMenuBtn { display: flex; }
  .lang-switcher { margin-left: auto; }

  .hero-content h1 { font-size: clamp(2rem, 10vw, 3.5rem); }
  .hero-content h2 { font-size: clamp(0.9rem, 2vw, 1.1rem); }
  .hero-btns { flex-direction: column; gap: 8px; }
  .btn-primary, .btn-outline { width: 100%; max-width: 280px; justify-content: center; }

  .menu-section, .gallery-section, .hotel-section, .reservation-section,
  .reviews-section, .contact-section { padding: 72px 20px; }

  /* ── MENU MOBILE: horizontal card layout ── */
  .menu-grid,
  .menu-grid-photo {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .menu-grid-photo { margin-bottom: 32px; }
  /* No-photo list mobile */
  .menu-list-row { padding: 14px 16px; gap: 16px; }
  .menu-list-name { font-size: 0.9rem; }
  .menu-list-desc { font-size: 0.78rem; }
  /* Photo rows mobile */
  .menu-photo-img { width: 110px; min-width: 110px; height: 90px; }
  .menu-photo-info { padding: 12px 16px; }
  .menu-photo-name { font-size: 0.9rem; }
  .menu-photo-desc { font-size: 0.78rem; }
  .menu-photo-price { margin-right: 16px; font-size: 0.65rem; padding: 3px 10px; }
  .menu-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    border-radius: 6px;
    max-height: none;
    min-height: 100px;
  }
  .menu-card:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  }
  .menu-card-img {
    width: 110px;
    min-width: 110px;
    height: auto;
    min-height: 100px;
    border-radius: 6px 0 0 6px;
    object-fit: cover;
    flex-shrink: 0;
    align-self: stretch;
  }
  .menu-card:hover .menu-card-img { transform: scale(1.04); }
  .menu-card-body {
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    min-width: 0;
    overflow: visible;
  }
  .menu-card-head {
    flex-wrap: wrap;
    margin-bottom: 4px;
    gap: 6px;
    align-items: flex-start;
  }
  .menu-card-name {
    font-size: 0.88rem;
    line-height: 1.3;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    word-break: break-word;
  }
  .menu-card-price {
    font-size: 0.65rem;
    padding: 2px 8px;
    flex-shrink: 0;
  }
  .menu-card-desc {
    font-size: 0.75rem;
    line-height: 1.45;
    color: var(--gray-med);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
  }
  .menu-card-badge { display: none; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item.tall { grid-row: span 1; }

  .rooms-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .res-form { padding: 32px 20px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  footer { padding: 56px 20px 24px; }

  .booking-btns { flex-direction: column; align-items: center; }
  .btn-booking { width: 100%; max-width: 280px; justify-content: center; }

  /* About page on mobile */
  .about-strip { padding: 56px 20px; }
  .about-strip p { font-size: 0.95rem; }

  /* Section header on mobile */
  .section-header { margin-bottom: 36px; }
  .section-header h2 { font-size: clamp(1.6rem, 6vw, 2.4rem); }

  /* Floating buttons spacing */
  .floating-btns { bottom: 20px; right: 16px; gap: 10px; }
  .float-btn { width: 48px; height: 48px; }
}

@media (max-width: 480px) {
  /* Even smaller phones */
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 130px; gap: 4px; }
  .stats-container { gap: 24px; flex-direction: column; }
  .reservation-wrap { gap: 24px; }
  .form-row { gap: 8px; }

  /* Menu cards on very small screens */
  .menu-card { max-height: none; min-height: 90px; }
  .menu-card-img { width: 90px; min-width: 90px; height: auto; min-height: 90px; }
  .menu-card-body { padding: 10px 12px; }
  .menu-card-name { font-size: 0.85rem; white-space: normal; overflow: visible; text-overflow: unset; }
  .menu-card-desc { font-size: 0.72rem; -webkit-line-clamp: 3; }

  /* Hero adjustments */
  .hero-content { padding: 0 16px; }

  /* Menu tabs scrollable on very small screens */
  .menu-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .menu-tabs::-webkit-scrollbar { display: none; }
  .menu-tab { white-space: nowrap; flex-shrink: 0; padding: 8px 16px; font-size: 0.6rem; }

  /* Contact & reservation forms */
  .res-form { padding: 24px 14px !important; }
  .contact-map { height: 260px !important; }

  /* Room card height */
  .room-card { height: 300px !important; }

  /* Footer bottom stacked */
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ════════════════════════════════════════
   ABOUT PAGE – padding korrekt me navbar solid
════════════════════════════════════════ */
body.page-no-hero section:first-of-type {
  padding-top: 100px !important;
}

/* ════════════════════════════════════════
   ABOUT / GRID BREAKPOINTS
════════════════════════════════════════ */
@media (max-width: 900px) {
  .about-2col {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }
  .about-3col {
    grid-template-columns: 1fr 1fr !important;
  }
}
@media (max-width: 600px) {
  .about-3col {
    grid-template-columns: 1fr !important;
  }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline {
    width: 100%;
    max-width: 260px;
    justify-content: center;
    padding: 13px 24px;
  }
  section { padding-left: 20px !important; padding-right: 20px !important; }
  .contact-map { height: 280px !important; }
  .gallery-grid { grid-auto-rows: 120px !important; gap: 4px !important; }
  .room-card { height: 300px !important; }
  /* Menu section padding */
  .menu-section { padding: 72px 16px !important; }
}

/* ════════════════════════════════════════
   TOUCH DEVICE – disable problematic hovers
════════════════════════════════════════ */
@media (hover: none) {
  .menu-card:hover { transform: none; box-shadow: none; }
  .menu-card:hover .menu-card-img { transform: none; }
  .room-card:hover img { transform: none; }
  .float-btn:hover { transform: none; }
}
/* Titujt e kategorive në menu */
.menu-section-title {
  margin: 40px 0 20px 0;
  position: relative;
  text-align: center;
}

.menu-section-title span {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--cream);
  padding: 0 20px;
  position: relative;
  z-index: 1;
  font-weight: 600;
}

.menu-section-title::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), var(--gold), transparent);
  transform: translateY(-50%);
}

.menu-section-title:first-of-type {
  margin-top: 0;
}