/* ==========================================================================
   STYLE.CSS - XIMA STO KIMA (PREMIUM DARK LUXURY RESTAURANT STYLE)
   ========================================================================== */

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Montserrat', sans-serif;
  
  --bg-main: #0b0b0b;
  --bg-card: #151515;
  --bg-card-hover: #1e1e1e;
  --bg-nav: rgba(11, 11, 11, 0.85);
  
  --color-text-white: #ffffff;
  --color-text-gray: #b3b3b3;
  --color-text-dark: #111111;
  
  --color-gold: #d4af37;
  --color-gold-hover: #f3e5ab;
  --color-orange: #ff8c00;
  --color-orange-rgb: 255, 140, 0;
  --color-red: #e25822; /* Ember Red */
  --color-red-rgb: 226, 88, 34;
  
  --glass-bg: rgba(21, 21, 21, 0.7);
  --glass-border: rgba(212, 175, 55, 0.2);
  --glass-border-hover: rgba(212, 175, 55, 0.5);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  
  --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  --border-radius: 16px;
}

/* Reset Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-main);
  color: var(--color-text-white);
  overflow-x: clip;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: clip;
  background-color: var(--bg-main);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

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

ul {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  color: inherit;
  outline: none;
}

/* Scrollbar Style */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-main);
}

::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-orange);
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Base Headings & Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* --- Navigation Header --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
}

header.sticky {
  background: var(--bg-nav);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  padding: 10px 0;
}

header:not(.sticky) {
  padding: 20px 0;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container a {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-text-white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
}

.logo-title span {
  color: var(--color-gold);
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-tagline {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--color-text-gray);
  letter-spacing: 2px;
  text-transform: uppercase;
}

nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
}

nav ul li a {
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 5px 0;
  color: var(--color-text-white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-orange));
  transition: var(--transition-smooth);
}

nav ul li a:hover, nav ul li.active a {
  color: var(--color-gold);
}

nav ul li a:hover::after, nav ul li.active a::after {
  width: 100%;
}

/* Language Switcher */
.lang-selector-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  padding: 8px 14px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  transition: var(--transition-smooth);
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-gold);
}

.lang-btn::after {
  content: '▼';
  font-size: 0.6rem;
  color: var(--color-gold);
  margin-left: 2px;
  transition: var(--transition-smooth);
}

.lang-selector-wrapper.active .lang-btn::after {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  width: 160px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-smooth);
  z-index: 1001;
  max-height: 280px;
  overflow-y: auto;
}

.lang-selector-wrapper.active .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 8px 16px;
  text-align: left;
  cursor: pointer;
  font-size: 0.85rem;
  transition: var(--transition-smooth);
  color: var(--color-text-gray);
}

.lang-dropdown button:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-gold);
}

.lang-dropdown button.active {
  color: var(--color-gold);
  font-weight: 600;
  background: rgba(212, 175, 55, 0.05);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  cursor: pointer;
  z-index: 1002;
}

.mobile-nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--color-text-white);
  transition: var(--transition-smooth);
}

.mobile-nav-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dark-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(11, 11, 11, 0.6) 0%,
    rgba(11, 11, 11, 0.8) 60%,
    var(--bg-main) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 0 20px;
  margin-top: 60px;
}

.hero-content h1 {
  font-size: 4.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  line-height: 1.1;
  background: linear-gradient(to right, #ffffff, #e0e0e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-text {
  font-size: 1.15rem;
  color: var(--color-text-gray);
  margin-bottom: 40px;
  line-height: 1.7;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Premium Buttons */
.btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-red) 100%);
  color: var(--color-text-white);
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 140, 0, 0.5);
}

.btn-secondary {
  border: 1px solid var(--color-gold);
  color: var(--color-text-white);
  background: rgba(212, 175, 55, 0.05);
}

.btn-secondary:hover {
  background: var(--color-gold);
  color: var(--color-text-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

/* --- Section Layout --- */
.section {
  padding: 100px 0;
  position: relative;
}

.section-dark {
  background-color: var(--bg-main);
}

.section-alt {
  background-color: #111111;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px auto;
}

.section-title {
  font-size: 2.5rem;
  text-transform: uppercase;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-orange));
  margin: 10px auto 0 auto;
  border-radius: 2px;
}

.section-desc {
  color: var(--color-text-gray);
  font-size: 1.05rem;
  font-weight: 300;
}

/* --- Why Choose Us Section --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.why-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--glass-shadow);
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.why-card:hover {
  transform: translateY(-10px);
  border-color: var(--color-gold);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(212, 175, 55, 0.1);
  background: var(--bg-card-hover);
}

.why-icon {
  font-size: 2.8rem;
  margin-bottom: 24px;
  display: inline-block;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 5px rgba(212,175,55,0.3));
}

.why-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--color-text-white);
}

.why-card p {
  color: var(--color-text-gray);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* --- Gallery Grid (Masonry Concept) --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 20px;
}

/* Masonry items configuration */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255,255,255,0.05);
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item img, .gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 11, 11, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-overlay-icon {
  width: 50px;
  height: 50px;
  background: var(--color-gold);
  color: var(--color-text-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.gallery-item:hover img, .gallery-item:hover video {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay-icon {
  transform: translateY(0);
}

.gallery-item video::-webkit-media-controls {
  display: none !important;
}

/* --- Custom Lightbox --- */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img, .lightbox-content video {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 8px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 10px 40px rgba(0,0,0,0.8);
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  font-size: 2rem;
  color: var(--color-text-white);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.lightbox-close:hover {
  color: var(--color-orange);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition-smooth);
  user-select: none;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-nav:hover {
  color: var(--color-gold);
}

.lightbox-nav.prev {
  left: -70px;
}

.lightbox-nav.next {
  right: -70px;
}

/* --- Menu Preview --- */
.menu-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.preview-card {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 380px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.05);
}

.preview-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.preview-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(11, 11, 11, 0.95) 10%, rgba(11, 11, 11, 0.4) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  transition: var(--transition-smooth);
}

.preview-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.preview-card-desc {
  font-size: 0.85rem;
  color: var(--color-text-gray);
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-smooth);
}

.preview-card:hover .preview-card-img {
  transform: scale(1.06);
}

.preview-card:hover .preview-card-desc {
  opacity: 1;
  transform: translateY(0);
}

.menu-preview-action {
  text-align: center;
}

/* --- Reviews Section --- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.03);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  transition: var(--transition-smooth);
}

.review-card::before {
  content: '“';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 6rem;
  font-family: serif;
  color: rgba(212, 175, 55, 0.08);
  line-height: 1;
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.15);
}

.stars {
  color: var(--color-gold);
  font-size: 1.15rem;
  margin-bottom: 18px;
  letter-spacing: 2px;
}

.review-text {
  color: var(--color-text-white);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 24px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-gold);
}

.author-info h4 {
  font-size: 0.9rem;
  font-weight: 600;
}

.author-info p {
  font-size: 0.75rem;
  color: var(--color-text-gray);
}

/* --- CTA Section --- */
.cta-section {
  position: relative;
  background: linear-gradient(rgba(11, 11, 11, 0.8), rgba(11, 11, 11, 0.8)), url('image and video/470137784_17927831477992402_3864358343606724379_n.jpg') no-repeat center center/cover;
  padding: 120px 0;
  text-align: center;
  background-attachment: fixed;
}

.cta-content h2 {
  font-size: 4rem;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 2px;
  background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: pulse-fire 2s infinite alternate;
}

.cta-content p {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-text-white);
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@keyframes pulse-fire {
  0% {
    filter: drop-shadow(0 0 5px rgba(255, 140, 0, 0.3));
  }
  100% {
    filter: drop-shadow(0 0 20px rgba(226, 88, 34, 0.7));
  }
}

/* --- Footer --- */
footer {
  background-color: #080808;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding: 80px 0 30px 0;
  font-size: 0.9rem;
  color: var(--color-text-gray);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-col h3 {
  color: var(--color-text-white);
  font-size: 1.15rem;
  text-transform: uppercase;
  margin-bottom: 24px;
  position: relative;
}

.footer-col h3::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--color-gold);
  margin-top: 8px;
}

.footer-about p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-text-white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.footer-logo span {
  color: var(--color-gold);
}

.footer-socials {
  display: flex;
  gap: 15px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-gray);
  transition: var(--transition-smooth);
}

.footer-socials a:hover {
  background: var(--color-gold);
  color: var(--color-text-dark);
  transform: translateY(-3px);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a:hover {
  color: var(--color-gold);
  padding-left: 5px;
}

.footer-info p {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-info p strong {
  color: var(--color-text-white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.8rem;
}

/* --- ABOUT PAGE SPECIFICS --- */
.about-hero {
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: linear-gradient(rgba(11,11,11,0.7), rgba(11,11,11,0.9)), url('image and video/625152091_18111151429637612_8089439580473590065_n.jpg') no-repeat center center/cover;
}

.about-hero h1 {
  font-size: 3.5rem;
  text-transform: uppercase;
}

.about-story-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}

.about-story-col {
  flex: 1;
}

.about-story-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text-gray);
  font-weight: 300;
}

.about-story-img {
  border-radius: var(--border-radius);
  border: 1px solid var(--glass-border);
  box-shadow: 0 15px 30px rgba(0,0,0,0.5);
  overflow: hidden;
  height: 400px;
}

.about-story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.about-feature-box {
  background: var(--bg-card);
  border-radius: var(--border-radius);
  padding: 40px;
  border-left: 4px solid var(--color-gold);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.about-feature-box h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--color-gold);
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-feature-box p {
  color: var(--color-text-gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- MENU PAGE SPECIFICS --- */
.menu-hero {
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: linear-gradient(rgba(11,11,11,0.7), rgba(11,11,11,0.9)), url('image and video/358088358_17855491112992402_7503290666685886695_n.jpg') no-repeat center center/cover;
}

.menu-hero h1 {
  font-size: 3.5rem;
  text-transform: uppercase;
}

/* Category Slider Tabs */
.menu-categories-wrapper {
  background: #111111;
  padding: 20px 0;
  position: -webkit-sticky;
  position: sticky;
  top: 75px;
  z-index: 900;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.menu-categories {
  display: flex;
  justify-content: center;
  gap: 15px;
  overflow-x: auto;
  padding-bottom: 5px;
}

.menu-categories::-webkit-scrollbar {
  height: 3px;
}

.category-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 12px 24px;
  border-radius: 30px;
  cursor: pointer;
  white-space: nowrap;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
  color: var(--color-text-gray);
}

.category-tab:hover {
  border-color: var(--color-gold);
  color: var(--color-text-white);
  background: rgba(255, 255, 255, 0.03);
}

.category-tab.active {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-orange) 100%);
  color: var(--color-text-dark);
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.category-tab-icon {
  font-size: 1.1rem;
}

/* Menu Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.menu-item-card {
  background: var(--bg-card);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.02);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.menu-item-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.15);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.menu-item-img-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.menu-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.menu-item-card:hover .menu-item-img {
  transform: scale(1.05);
}

.menu-item-price {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-orange) 100%);
  color: var(--color-text-dark);
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.95rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.menu-item-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.menu-item-title-wrapper {
  margin-bottom: 12px;
}

.menu-item-title-primary {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-white);
  line-height: 1.3;
}

.menu-item-title-greek {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-gold);
  margin-top: 4px;
  opacity: 0.85;
}

.menu-item-desc-primary {
  font-size: 0.88rem;
  color: var(--color-text-gray);
  line-height: 1.6;
  margin-bottom: 8px;
  flex-grow: 1;
}

.menu-item-desc-greek {
  font-size: 0.8rem;
  color: rgba(179, 179, 179, 0.6);
  line-height: 1.5;
  margin-bottom: 20px;
  font-style: italic;
}

.menu-item-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
}

/* Waiter Notepad Add Button */
.btn-add-notepad {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-red) 100%);
  color: var(--color-text-white);
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(255, 140, 0, 0.2);
  transition: var(--transition-smooth);
}

.btn-add-notepad:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 140, 0, 0.4);
}

.btn-add-notepad.added {
  background: var(--color-gold);
  color: var(--color-text-dark);
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.2);
}

/* --- Floating Waiter Notepad Indicator --- */
.floating-notepad-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-orange) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
  transition: var(--transition-smooth);
  animation: pulse-gold 2s infinite;
}

.floating-notepad-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(255, 140, 0, 0.6);
}

.floating-notepad-btn svg {
  width: 28px;
  height: 28px;
  fill: var(--color-text-dark);
}

.notepad-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--color-red);
  color: var(--color-text-white);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  border: 2px solid var(--bg-main);
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

@keyframes pulse-gold {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  }
}

/* --- Waiter Notepad Drawer Panel --- */
.notepad-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 420px;
  height: 100%;
  background: var(--bg-card);
  border-left: 1px solid var(--glass-border);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.7);
  z-index: 1050;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.notepad-drawer.open {
  right: 0;
}

.notepad-header {
  padding: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.notepad-header h3 {
  font-size: 1.3rem;
  color: var(--color-text-white);
  display: flex;
  align-items: center;
  gap: 10px;
}

.notepad-header h3 span {
  color: var(--color-gold);
}

.btn-close-notepad {
  font-size: 1.6rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-close-notepad:hover {
  color: var(--color-orange);
}

.notepad-body {
  padding: 24px;
  flex-grow: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.notepad-instructions {
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 24px;
}

.notepad-instructions p {
  font-size: 0.8rem;
  color: var(--color-gold);
  line-height: 1.4;
}

.waiter-banner-title {
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 4px;
  color: var(--color-orange);
  font-size: 0.85rem;
}

.notepad-empty-msg {
  text-align: center;
  color: var(--color-text-gray);
  margin-top: 50px;
  font-size: 0.95rem;
}

.notepad-items-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.notepad-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255,255,255,0.03);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.notepad-item-info {
  flex-grow: 1;
  padding-right: 15px;
}

.notepad-item-name-primary {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-white);
}

.notepad-item-name-greek {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-gold);
  margin-top: 2px;
}

.notepad-item-price {
  font-size: 0.85rem;
  color: var(--color-text-gray);
  margin-top: 4px;
}

.notepad-item-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.notepad-qty-btn {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.notepad-qty-btn:hover {
  background: var(--color-gold);
  color: var(--color-text-dark);
}

.notepad-item-qty {
  font-weight: 700;
  font-size: 0.95rem;
  width: 20px;
  text-align: center;
}

.notepad-footer {
  padding: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
  background: #111111;
}

.notepad-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 1.15rem;
  font-weight: 700;
}

.notepad-total-price {
  color: var(--color-gold);
  font-size: 1.3rem;
}

.btn-show-waiter {
  width: 100%;
  text-align: center;
  padding: 14px;
  border-radius: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-orange) 100%);
  color: var(--color-text-dark);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  transition: var(--transition-smooth);
}

.btn-show-waiter:hover {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-orange) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

/* Waiter View Overlay Modal */
.waiter-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  padding: 20px;
}

.waiter-modal.open {
  opacity: 1;
  visibility: visible;
}

.waiter-modal-content {
  background: var(--bg-card);
  border: 1px solid var(--color-gold);
  border-radius: var(--border-radius);
  max-width: 500px;
  width: 100%;
  padding: 35px;
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
  position: relative;
  text-align: center;
}

.waiter-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-text-gray);
  transition: var(--transition-smooth);
}

.waiter-modal-close:hover {
  color: var(--color-orange);
}

.waiter-modal-title {
  font-size: 1.5rem;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 5px;
}

.waiter-modal-tagline {
  font-size: 0.8rem;
  color: var(--color-text-gray);
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.waiter-order-items {
  text-align: left;
  margin-bottom: 25px;
  max-height: 250px;
  overflow-y: auto;
  border-top: 1px dashed rgba(255,255,255,0.1);
  border-bottom: 1px dashed rgba(255,255,255,0.1);
  padding: 15px 0;
}

.waiter-order-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.waiter-order-item-qty {
  font-weight: 700;
  color: var(--color-orange);
  margin-right: 10px;
}

.waiter-order-item-name {
  font-weight: 600;
  color: var(--color-text-white);
}

.waiter-order-item-greek {
  font-size: 0.85rem;
  color: var(--color-gold);
  margin-top: 2px;
  padding-left: 28px;
}

.waiter-order-total {
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  color: var(--color-text-white);
  padding: 0 10px;
}

.waiter-order-total span {
  color: var(--color-gold);
}

/* --- CONTACT PAGE SPECIFICS --- */
.contact-hero {
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: linear-gradient(rgba(11,11,11,0.7), rgba(11,11,11,0.9)), url('image and video/622331305_18079078148462188_9218540805682792147_n.jpg') no-repeat center center/cover;
}

.contact-hero h1 {
  font-size: 3.5rem;
  text-transform: uppercase;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.03);
  border-radius: var(--border-radius);
  padding: 30px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.contact-info-icon {
  font-size: 1.8rem;
  color: var(--color-gold);
  background: rgba(212, 175, 55, 0.05);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.contact-info-details h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--color-text-white);
}

.contact-info-details p {
  color: var(--color-text-gray);
  font-size: 0.95rem;
}

.contact-social-buttons {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.contact-form-col {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 1px;
  color: var(--color-gold);
}

.form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--color-text-white);
  transition: var(--transition-smooth);
}

.form-control:focus {
  border-color: var(--color-gold);
  background: rgba(255, 255, 255, 0.06);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  width: 100%;
  text-align: center;
  border: none;
}

.map-container {
  margin-top: 80px;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  height: 450px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* --- Scroll Animations Trigger Elements --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.appear {
  opacity: 1;
  transform: translateY(0);
}

/* Custom Alert Banner (Success/Error Message for Contact Form) */
.alert-banner {
  margin-top: 20px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  display: none;
  font-weight: 500;
}

.alert-success {
  background: rgba(40, 167, 69, 0.15);
  border: 1px solid rgba(40, 167, 69, 0.3);
  color: #28a745;
}

/* Drawer overlay for backdrop */
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1040;
  display: none;
  backdrop-filter: blur(4px);
}

.drawer-overlay.active {
  display: block;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* Tablet & Smaller (1024px) */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
  }
  
  .gallery-item.wide {
    grid-column: span 1;
  }
  
  .menu-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .about-story-row {
    flex-direction: column;
    gap: 40px;
  }
  
  .about-story-col {
    width: 100%;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

/* Mobile & Tablet (768px) */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  
  /* Mobile Menu */
  .mobile-nav-toggle {
    display: flex;
  }
  
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #0f0f0f;
    border-left: 1px solid var(--glass-border);
    padding: 100px 40px 40px 40px;
    z-index: 1001;
    transition: var(--transition-smooth);
    box-shadow: -10px 0 30px rgba(0,0,0,0.8);
  }
  
  nav.open {
    right: 0;
  }
  
  nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  
  nav ul li a {
    font-size: 1.15rem;
  }
  
  /* Hero typography */
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.4rem;
  }
  
  .hero-text {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  /* Sections header */
  .section-title {
    font-size: 2rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-content h2 {
    font-size: 3rem;
  }
  
  .cta-content p {
    font-size: 1.4rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .about-features-grid {
    grid-template-columns: 1fr;
  }
  
  .menu-grid {
    grid-template-columns: 1fr;
  }
  
  .notepad-drawer {
    width: 100%;
    right: -100%;
  }
  
  .floating-notepad-btn {
    bottom: 20px;
    right: 20px;
  }
}

/* Tiny Screens (480px) */
@media (max-width: 480px) {
  .logo-title {
    font-size: 1.3rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
  
  .menu-preview-grid {
    grid-template-columns: 1fr;
  }
  
  .map-container {
    height: 300px;
  }
  
  .lightbox-nav {
    display: none; /* Hide nav arrows on tiny screens, swipe-friendly or lightbox closure is enough */
  }
}
