/* =========================
   Βασικό Style Gohan Sushi Bar
   ========================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Open+Sans:wght@400;600&display=swap');

:root {
  --primary: #111;
  --secondary: #c59d5f;
  --bg: #fff;
  --text: #333;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0; /* πιο φαρδύ */
  z-index: 1000;
  transition: background 0.4s ease;
  background: transparent; /* αρχικά διάφανο */
}

.site-header.scrolled {
  background: rgba(0, 0, 0, 0.85); /* πιο σκούρο όταν κάνεις scroll */
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 100px; /* μεγαλύτερο logo */
  display: block;
}

/* Navigation */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}
.main-nav a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}
.main-nav a:hover {
  color: #c59d5f;
}

/* Hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.hamburger span {
  height: 3px;
  width: 25px;
  background: #fff;
  margin: 4px 0;
  border-radius: 2px;
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
    flex-direction: column;
    background: #a38657; /* σκούρο χρυσαφί */
    position: absolute;
    top: 80px; 
    right: 20px;
    padding: 15px;
    border-radius: 6px;
  }

  .main-nav.show {
    display: flex;
  }

  .main-nav ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
    text-align: left;
  }

  .main-nav li {
    margin: 0;
  }

  .main-nav a {
    color: #fff; /* λευκά γράμματα */
    font-size: 1.1rem;
    text-decoration: none;
    font-weight: 600;
  }

  .main-nav a:hover {
    color: #000; /* προαιρετικό: μαύρο hover */
  }

  .hamburger {
    display: flex;
  }
}



.hero {
  position: relative;
  height: 450px; /* σταθερό ύψος */
  overflow: hidden;
  color: #fff;
  text-align: center;
}

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

.hero .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero .slide.active {
  opacity: 1;
}

.hero .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

* Hero text */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); /* πιο σκούρο overlay */
  z-index: 1;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2; /* να φαίνεται πάνω από το σκοτείνιασμα */
  color: #fff;
}
/* Dots */

.hero-dots {

  position: absolute;

  bottom: 20px;

  left: 50%;

  transform: translateX(-50%);

  display: none;

  gap: 10px;

  z-index: 3;

}

.hero-dots span {

  width: 12px;

  height: 12px;

  background: rgba(255,255,255,0.3); /* πιο διάφανα */

  border-radius: 50%;

  cursor: pointer;

  transition: background 0.3s ease;

}

.hero-dots span.active {

  background: rgba(255,255,255,0.8); /* πιο έντονο για το ενεργό */

}

/* Sections */
.section {
  padding: 60px 0;
}
.section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2em;
  font-family: 'Montserrat', sans-serif;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.product-item {
  position: relative;
  background: #a38657; /* καφέ φόντο */
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.product-item img {
  max-width: 100%;
  border-radius: 6px;
  margin-top: 40px; /* αφήνει χώρο για τον τίτλο */
}

/* Τίτλος στο κέντρο πάνω */
.product-title {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  text-transform: none; /* δεν αλλάζει πεζά/κεφαλαία */
}

/* Masonry gallery */
.gallery {
  column-count: 3;         /* 3 στήλες σε desktop */
  column-gap: 15px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.gallery-item img {
  width: 100%;
  display: block;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: transform 0.3s;
}

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

/* Responsive */
@media (max-width: 992px) {
  .gallery {
    column-count: 2;
  }
}
@media (max-width: 600px) {
  .gallery {
    column-count: 1;
  }
}

/* Contact form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
}
.contact-form button {
  padding: 12px;
  border: none;
  background: var(--secondary);
  color: #fff;
  font-size: 1em;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}
.contact-form button:hover {
  background: #a67c42;
}

/* Footer */
.site-footer {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 25px 0;
  margin-top: 50px;
  font-size: 0.9em;
}
/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.6);
  animation: zoomIn 0.3s ease;
}

.lightbox.active {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
/* Lightbox arrows */
.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  color: #fff;
  cursor: pointer;
  user-select: none;
  padding: 10px;
  transition: opacity 0.3s;
}
.lightbox-arrow:hover {
  opacity: 0.7;
}
.lightbox-arrow.left {
  left: 20px;
}
.lightbox-arrow.right {
  right: 20px;
}
.about-section {
  text-align: center;
}

.about-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.about-photo img {
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.about-text {
  max-width: 600px;
  text-align: left;
  line-height: 1.6;
  font-size: 1.1rem;
}
.section h2,
.section h3 {
  text-align: center;
  width: 100%;
  margin: 0 auto;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.section h3 {
  font-size: 1.2rem;
  font-weight: normal;
  color: #555;
  margin-bottom: 30px;
}
.btn-email {
  display: inline-block;
  background: #c59d5f;      /* χρώμα κουμπιού */
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;

}

.btn-email:hover {
  background: #a67c42;
}
.section .btn-email {
  display: inline-block;
}

.section {
  text-align: center;
}

/* Map full width override */
.map-section {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.map-section iframe {
  display: block;
  width: 100% !important;
  height: 350px;
  border: 0;
}



.map-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
/* Pre-Footer */
.pre-footer {
  background: #111;
  color: #fff;
  padding: 60px 20px 40px;
  text-align: center;
  margin-bottom: 0;   /* να μην αφήνει κενό από κάτω */
  padding-bottom: 0;          /* καταργεί margin */
  border: none;       /* αφαιρεί τη γραμμή αν δεν τη θες */
}

footer {
  background: #111;   /* ίδιο χρώμα */
  margin-top: 0;          /* κολλητό */
  padding: 20px 0;
  color: #fff;
  text-align: center;
}

.pre-footer-top h2 {
  font-size: 32px;
  letter-spacing: 8px;
  margin-bottom: 10px;
}

.pre-footer-logo {
  max-width: 450px;
  margin: 0 auto 30px;
  display: block;
}

.pre-footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 20px;
}

.pre-footer-col {
  flex: 1;
  min-width: 220px;
}

.pre-footer-col h4 {
  color: #c59d5f;
  margin-bottom: 15px;
}

.pre-footer-col ul {
  list-style: none;
  padding: 0;
}

.pre-footer-col ul li {
  margin: 8px 0;
}

.pre-footer-col ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.pre-footer-col ul li a:hover {
  color: #c59d5f;
}

.order-links img {
  width: 50px;
  margin: 0 10px;
  transition: transform 0.3s;
}

.order-links img:hover {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  .pre-footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.pre-footer-col h4 {
  color: #c59d5f;
  margin-bottom: 15px;
  text-align: center; 
}

.pre-footer-col p,
.pre-footer-col a {
  color: #ccc; /* ανοιχτό γκρι */
  text-decoration: none;
  font-size: 15px;
}

.pre-footer-col a:hover {
  color: #ccc; /* δεν αλλάζει στο hover */
}
.foodsphoto-container {
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: auto;
}

.foodsphoto-wrapper {
  display: flex;
  transition: transform 0.5s ease; /* κανονική μετάβαση */
  will-change: transform; /* πιο ομαλή κίνηση */
}

.foodsphoto-item {
  flex: 0 0 100%; /* default: μία εικόνα ανά view */
  padding: 10px;
  box-sizing: border-box;
}

.foodsphoto-item img {
  width: 100%;
  border-radius: 10px;
  display: block;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* arrows */
.foodsphoto-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: #fff;
  background: rgba(197,157,95,0.9);
  width: 60px; 
  height: 60px; 
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}
.foodsphoto-arrow.left { left: 15px; }
.foodsphoto-arrow.right { right: 15px; }

/* dots */
.foodsphoto-dots {
  text-align: center;
  margin-top: 15px;
}
.foodsphoto-dots span {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: rgba(197,157,95,0.5);
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}
.foodsphoto-dots span.active {
  background: #c59d5f;
}

/* Desktop: 3 στη σειρά */
@media (min-width: 992px) {
  .foodsphoto-item {
    flex: 0 0 33.333%;
  }
}
.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #c59d5f;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  line-height: 50px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 2000;
}
.back-to-top:hover {
  background: #a67c42;
  transform: scale(1.1);
}
.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
}
