/* 1. Μεταβλητές (Variables) */
    :root {
      --bg: #0b0f16;
      --card: #111827;
      --muted: #9ca3af;
      --text: #e5e7eb;
      --brand: #22d3ee; /* Aqua */
      --brand-dark: #00b3cc;
      --ok: #10b981;
      --err: #ef4444;
      --shadow: 0 8px 24px rgba(0,0,0,.35);
      --radius-sm: 8px;
      --radius-xl: 20px;
    }

    /* 2. Βασικά Στυλ & Επαναφορά (Base Styles & Reset) */
    * { box-sizing: border-box; }
    html, body { min-height: 100%; scroll-behavior: smooth; }
    body {
      font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial;
      margin: 0;
      color: var(--text);
      background:
        radial-gradient(ellipse 1200px 600px at 80% 0, rgba(124, 58, 237, 0.25), transparent 60%),
        radial-gradient(ellipse 900px 500px at 0 0, rgba(34, 211, 238, 0.2), transparent 60%),
        var(--bg);
      background-attachment: fixed;
    }

    .container { max-width: 1180px; margin: 0 auto; padding: 24px; }
    a { color: var(--brand); text-decoration: none; }
    h2 { font-size: clamp(28px, 4vw, 36px); color: var(--text); margin-top: 0; }
    .section { padding: 20px 0; }
    
    /* Global Button Styles */
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 8px 16px;
        height: 40px;
        border-radius: var(--radius-sm);
        font-weight: 600;
        cursor: pointer;
        transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
        text-transform: uppercase;
        font-size: 14px;
        white-space: nowrap;
        border: 1px solid transparent;
    }
    .btn, .btn:visited {
        color: var(--bg);
        background-color: var(--brand);
    }
    .btn:hover {
        background-color: var(--brand-dark);
        box-shadow: 0 4px 12px rgba(34, 211, 238, 0.4);
    }
    .btn.secondary {
        background-color: transparent;
        border: 1px solid var(--brand);
        color: var(--brand);
    }
    .btn.secondary:hover {
        background-color: rgba(34, 211, 238, 0.1);
        box-shadow: none;
        color: var(--text);
    }

    /* Header & Navigation Styles */
    header {
      display: flex; align-items: center; justify-content: space-between; gap: 16px; margin: 10px 0 24px;
    }
    .brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
    .header-logo { height: 50px; width: 50px; border-radius: 50%; object-fit: cover; margin-right: 12px; display: block; }
    h1 { font-size: clamp(22px, 3vw, 32px); margin: 0; }
    .sub { color: var(--muted); margin-top: 4px; font-size: 14px; }
    
    header .inline {
        display: flex;
        align-items: center;
        gap: 16px;
    }
    #langSwitcher {
        background: var(--card);
        color: var(--text);
        border: 1px solid rgba(255,255,255,.1);
        padding: 8px 12px;
        border-radius: var(--radius-sm);
    }
    .nav-menu a {
        color: var(--text);
        padding: 8px 12px;
        transition: color 0.2s, background-color 0.2s;
        border-radius: var(--radius-sm);
    }
    .nav-menu a:hover {
        color: var(--brand);
        background-color: var(--card);
    }

    /* Hero Section */
    .hero {
      background: rgba(255,255,255,.05);
      border-radius: var(--radius-xl);
      padding: 40px;
      margin-bottom: 24px;
      text-align: center;
      box-shadow: var(--shadow);
    }
    .hero a.btn { height: 50px; font-size: 16px; }

    /* --- Video/Carousel Styles (ΔΙΟΡΘΩΣΗ: Χρήση Aspect Ratio για πλήρη εμφάνιση σε όλα τα μεγέθη) --- */
.carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  margin-bottom: 24px;
  /* Ορίζουμε Aspect Ratio 16:9 (9 / 16 * 100 = 56.25%) */
  height: 0; /* Μηδενίζουμε το ύψος */
  padding-bottom: 56.25%; /* Αυτό δίνει το ύψος με βάση το πλάτος */
  background-color: var(--card); 
}

/* Video Styles */
.hero-video {
    position: absolute; /* Τοποθετούμε το βίντεο απόλυτα στο container */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Default: Καλύπτει πλήρως το container (για cinematic look σε desktop) */
    display: block;
}
    /* Menu Grid & Card Styles (Clickable) */
    .menu-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
      margin-top: 20px;
    }

    .menu-card {
      padding: 20px;
      border: 1px solid rgba(255,255,255,.08);
      border-radius: var(--radius-xl);
      background: var(--card);
      cursor: pointer;
      transition: transform 0.2s, box-shadow 0.2s;
      min-height: 250px;
      position: relative;
    }

    .menu-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 30px rgba(34, 211, 238, 0.15);
    }

    .menu-card h4 {
      color: var(--brand);
      border-bottom: 1px solid rgba(255,255,255,.1);
      padding-bottom: 8px;
      margin-top: 0;
      font-size: 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    .menu-card h4::after {
        content: '➜';
        font-size: 14px;
        color: var(--text);
        opacity: 0.8;
    }

    .menu-item {
      margin-bottom: 12px;
      padding-top: 4px;
      font-size: 15px;
      border-bottom: 1px dotted rgba(255,255,255,0.05);
    }

    .menu-item strong {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      font-weight: 700;
      margin-bottom: 2px;
      color: var(--text);
    }
    
    .price {
      color: var(--ok);
      font-weight: 700;
      font-size: 16px;
      flex-shrink: 0;
      margin-left: 10px;
    }

    /* Info Grid Styles */
    .info-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 24px;
        margin-top: 24px;
    }
    .info-item {
        padding: 20px;
        border-radius: var(--radius-xl);
        background: var(--card);
        border: 1px solid rgba(255,255,255,.08);
    }
    .info-item h4 {
        color: var(--brand);
        border-bottom: 1px solid rgba(255,255,255,.1);
        padding-bottom: 8px;
        margin-top: 0;
        font-size: 18px;
    }
    .info-item address, .info-item p {
        margin: 8px 0;
        font-style: normal;
        line-height: 1.6;
    }

    /* Modal Styling */
    .modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 1000;
      backdrop-filter: blur(5px);
    }
    .modal-content {
      background: var(--bg);
      padding: 30px;
      border-radius: var(--radius-xl);
      max-width: 600px;
      max-height: 90vh;
      overflow-y: auto;
      box-shadow: var(--shadow);
      position: relative;
      border: 1px solid var(--brand);
    }
    .modal-content h3 {
      color: var(--brand);
      margin-top: 0;
      padding-bottom: 10px;
      border-bottom: 1px solid rgba(255,255,255,.1);
      font-size: 24px;
    }
    .modal-content .close-btn {
      position: absolute;
      top: 15px;
      right: 20px;
      background: none;
      border: none;
      color: var(--muted);
      font-size: 24px;
      cursor: pointer;
      line-height: 1;
      transition: color 0.2s;
    }
    .modal-content .close-btn:hover {
        color: var(--err);
    }

    /* General Styles */
    hr { border: none; border-top: 1px dashed rgba(255,255,255,0.1); margin: 30px 0; }
    footer { margin: 26px 0; text-align: center; color: var(--muted); font-size: 12px; }

  /* 4. Media Queries (Responsive) */
@media (max-width: 768px) {
  /* ΣΕ MOBILE: Κάνουμε το container ελαφρώς ψηλότερο */
  .carousel-container { 
      padding-bottom: 65%; /* Πιο ψηλή αναλογία για καλύτερη θέαση σε κινητά */
  } 
  
  /* ΝΕΑ & ΟΡΙΣΤΙΚΗ ΔΙΟΡΘΩΣΗ: Χρησιμοποιούμε CONTAIN για να εμφανίζεται ΟΛΟΚΛΗΡΟ το βίντεο (χωρίς να κόβεται) */
  .hero-video {
      object-fit: contain;
  }
  
  .modal-content { max-width: 90%; margin: 20px; padding: 20px; }
  header { flex-direction: column; align-items: stretch; gap: 16px; }
  header .inline { flex-direction: column; align-items: stretch; gap: 10px; width: 100%; }
  header .inline > * { width: 100%; justify-content: center; }
  .nav-menu { display: none !important; }
  #mobile-reserve-btn { display: flex !important; }
  #langSwitcher { width: 100%; }
  .hero { padding: 30px 20px; }
}

/* Review Section Styles - ΝΕΑ ΔΟΜΗ ΓΙΑ ΚΑΡΟΥΖΕΛ (Διορθωμένο) */
.reviews-section {
  padding: 40px 0;
  text-align: center;
}
.carousel-wrapper {
  max-width: 1100px; /* Αυξάνω το max-width για καλύτερη εμφάνιση σε desktop */
  margin: 0 auto;
  overflow: hidden; 
  position: relative;
}
.reviews-carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 24px; /* Χρησιμοποιούμε gap για τα κενά */
}
.review-card {
  padding: 20px;
  border-radius: var(--radius-xl);
  background: var(--card);
  border: 1px solid rgba(255,255,255,.08);
  text-align: left;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
  
  /* Υπολογισμός πλάτους για 3 κάρτες (100% - 2 κενά) / 3 */
  flex: 0 0 calc((100% - 48px) / 3); 
  box-sizing: border-box;
}

/* Στυλ για τα κουμπιά πλοήγησης */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  transition: opacity 0.3s;
}
.carousel-btn:hover {
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.9);
}
.carousel-btn.prev {
  left: 10px;
}
.carousel-btn.next {
  right: 10px;
}

/* Στυλ για avatar και header */
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background-color: var(--muted);
  border: 2px solid var(--brand);
  flex-shrink: 0;
}
.review-card .rating {
  color: var(--ok);
  font-size: 1.2em;
  margin-top: 4px; 
}
.review-card .author {
  display: block;
  font-weight: 700;
  margin: 0;
  color: var(--text); 
}
.review-card .date {
  font-size: 12px;
  color: var(--muted);
}
.review-card .text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
  margin-top: 0;
}

/* MEDIA QUERY: Για Κινητά (Διορθωμένο) */
@media (max-width: 900px) {
  .reviews-carousel {
     gap: 0; /* Μηδενίζουμε το κενό */
  }
  .review-card {
    flex: 0 0 100%; /* 1 κάρτα ανά γραμμή */
    padding: 18px; 
  }
}




/* Το Λογότυπο στο Splash Screen */
#splash-screen {
    display: none; /* Ξεκινάει κρυμμένο */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg);
    z-index: 9999;
    /* Αυτές οι γραμμές κεντράρουν το περιεχόμενο σωστά */
    display: none; 
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s;
}

.splash-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('garden-bg.jpg') no-repeat center center;
    background-size: cover;
    animation: kenBurns 6s ease-out forwards;
    z-index: -1;
}

@keyframes kenBurns {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

/* Το λογότυπο που θα κινηθεί */
#moving-logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 2px solid var(--brand);
    z-index: 10001;
    transition: all 1.8s cubic-bezier(0.4, 0, 0.2, 1); /* Αυξημένος χρόνος για ομαλότητα */
}

.splash-content {
    text-align: center;
    transition: opacity 0.8s ease;
}

.fade-out {
    opacity: 0;
    pointer-events: none;
}

.splash-hidden {
    opacity: 0;
    visibility: hidden;
    transition: all 1s ease-in-out;
}
#splash-screen h1 {
  color: #fff;
  font-size: clamp(24px, 5vw, 42px);
  margin: 20px 0 5px;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

#splash-screen p {
  color: var(--brand);
  letter-spacing: 3px;
  font-weight: 600;
  text-transform: uppercase;
}

/* Κλάση που ενεργοποιείται μέσω JS για τη μετακίνηση του λογότυπου */
.logo-fly-to-header {
  position: fixed !important;
  z-index: 10001;
  width: 50px !important;   /* Το μέγεθος που έχει στο header */
  height: 50px !important;
  /* Υπολογίζουμε τη θέση της εικόνας στο header (πάνω αριστερά) */
  top: 34px !important; 
  left: calc(50% - 560px) !important; /* Προσαρμογή ανάλογα με το container σου */
  transform: translate(0, 0) !important;
}

/* Σε κινητά η θέση του λογότυπου αλλάζει */
@media (max-width: 768px) {
  .logo-fly-to-header {
    top: 20px !important;
    left: 24px !important;
  }
}



.lang-switcher-flags {
  display: flex;
  gap: 12px;
  align-items: center;
}

.lang-flag-btn {
  background: none;
  border: 2px solid transparent;
  padding: 2px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  opacity: 0.5; /* Μη επιλεγμένο */
  filter: grayscale(40%);
}

.lang-flag-btn img {
  width: 28px;
  height: auto;
  border-radius: 2px;
  display: block;
}

/* Το στυλ για την επιλεγμένη γλώσσα */
.lang-flag-btn.active {
  opacity: 1;
  filter: grayscale(0%);
  border-color: var(--brand);
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(34, 211, 238, 0.3);
}

.lang-flag-btn:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* Διαχείριση ορατότητας */
.desktop-only { display: flex; align-items: center; gap: 20px; }
.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 10px; }
.mobile-menu-btn span { width: 25px; height: 3px; background-color: var(--text); border-radius: 2px; }
/* Ευθυγράμμιση Header */
header {
    display: flex;
    justify-content: space-between; /* Σπρώχνει το brand αριστερά και το μενού δεξιά */
    align-items: center;
    padding: 15px 20px;
    width: 100%;
    position: relative;
}

/* Burger Button - Τοποθέτηση δεξιά */
.mobile-menu-btn {
    display: none; /* Κρυφό σε desktop */
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    /* Διασφαλίζουμε ότι μένει δεξιά */
    margin-left: auto; 
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 30px;
    height: 2px;
    background-color: #ffffff; /* Λευκό για να φαίνεται πάνω στο βίντεο */
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Modal - Επαγγελματικό Στυλ */
.mobile-nav-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(15, 15, 15, 0.98); /* Luxury σκούρο */
    backdrop-filter: blur(15px);
    z-index: 2000;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mobile-links a {
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    margin: 15px 0;
    font-weight: 500;
    transition: 0.3s;
}

.mobile-links a:hover {
    color: var(--brand);
    transform: scale(1.1);
}

/* Εμφάνιση Burger μόνο σε κινητά (κάτω από 900px) */
@media (max-width: 900px) {
    .desktop-only { 
        display: none !important; 
    }
    .mobile-menu-btn { 
        display: flex !important; 
    }
}
/* Mobile Modal Styling */
/* Mobile Modal Styling - Professional & Elegant */
.mobile-nav-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Σκούρο background με ελαφριά διαφάνεια για επαγγελματικό look */
    background: rgba(18, 18, 18, 0.98); 
    z-index: 2000;
    display: none; /* Ελέγχεται από την JS */
    flex-direction: column;
    justify-content: center; /* Κεντράρισμα περιεχομένου καθ' ύψος */
    align-items: center;
    backdrop-filter: blur(10px); /* Εφέ θολώματος στο φόντο */
    transition: all 0.4s ease-in-out;
}

.mobile-modal-content {
    width: 100%;
    text-align: center;
}

.close-mobile-modal {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 35px;
    border: none;
    background: none;
    color: #ffffff;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.close-mobile-modal:hover {
    transform: rotate(90deg);
}

.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.mobile-links a {
    text-decoration: none;
    color: #ffffff;
    font-size: 26px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

/* Hover effect για τους συνδέσμους */
.mobile-links a:hover {
    color: var(--brand); /* Ή το χρυσό/πράσινο χρώμα του εστιατορίου */
    transform: translateY(-2px);
}

/* Διακριτική γραμμή κάτω από το link στο hover */
.mobile-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--brand);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.mobile-links a:hover::after {
    width: 40px;
}

.mobile-lang-switcher {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    width: 200px;
}

.mobile-lang-switcher p {
    color: #aaaaaa;
    font-size: 14px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mobile-lang-switcher .lang-flags {
    display: flex;
    justify-content: center;
    gap: 25px;
}

/* Εναρμόνιση των flag buttons με το στυλ που έδωσες */
.mobile-lang-switcher .lang-flag-btn {
    opacity: 0.6;
    filter: grayscale(100%);
}

.mobile-lang-switcher .lang-flag-btn.active {
    opacity: 1;
    filter: grayscale(0%);
    border-color: var(--brand);
}
.mobile-menu-btn span {
    width: 28px;
    height: 2px;
    background-color: #ffffff; /* Λευκό για να κάνει αντίθεση */
    border-radius: 10px;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover span {
    background-color: var(--brand);
}
/* Εμφάνιση μόνο σε κινητά */
@media (max-width: 900px) {
    .desktop-only { display: none; }
    .mobile-menu-btn { display: flex; }
}
/* Floating Phone Button */
.call-now-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #113c0f; 
    color: white;
    border-radius: 50%;
    display: flex; /* Εμφάνιση ως default (για κινητά) */
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 1000;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.call-now-button svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

/* ΕΞΑΦΑΝΙΣΗ ΣΕ ΛΑΠΤΟΠ & ΥΠΟΛΟΓΙΣΤΕΣ (Οθόνες μεγαλύτερες από 1024px) */
@media (min-width: 1024px) {
    .call-now-button {
        display: none !important;
    }
}

