/* ---------------------- GENERAL ---------------------- */
body {
  margin: 0;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background-color: rgb(151,37,44);
  color: white;
  text-align: center;
}

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

/* ---------------------- HEADER ---------------------- */
header {
  position: relative;
  background: url('https://hansgretel.com/wp-content/uploads/2017/03/monastiraki3.jpg') center/cover no-repeat;
  height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 60px;
}

header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}

header img {
  position: relative;
  z-index: 2;
  max-width: 220px;
  margin-bottom: 40px;
}

header h1 {
  position: relative;
  z-index: 2;
  font-size: 1.8em;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 0 15px rgba(0,0,0,0.6);
}

/* ---------------------- MENU ---------------------- */
nav {
  position: relative;
  z-index: 3;
  margin-top: 20px;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 30px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1.05em;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  transition: opacity 0.2s;
}

nav a:hover,
nav a:focus {
  opacity: 0.7;
}

section { padding: 40px 20px; }

h2 { 
  text-transform: uppercase; 
  letter-spacing: 2px; 
  margin-bottom: 30px; 
}

/* ---------------------- PRODUCTS GRID (HOME) ---------------------- */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  justify-items: center;
}

.product img {
  width: 100%;
  max-width: 250px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.product h3 {
  text-transform: uppercase;
  font-size: 1.1em;
  margin-top: 10px;
}

/* ---------------------- ABOUT SECTION ---------------------- */
#about {
  position: relative;
  background: url('https://hansgretel.com/wp-content/uploads/2023/06/followus.jpg') center/cover no-repeat;
  color: #fff;
}

#about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

#about .about {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  z-index: 1;
}

/* ---------------------- GALLERY ---------------------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}

.gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0,0,0,0.3);
}

/* ---------------------- E-BANNER ---------------------- */
.ebanner img {
  width: 60%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}

.ebanner img:hover { 
  transform: scale(1.02); 
}

/* ---------------------- FOOTER ---------------------- */
footer {
  margin-top: 40px;
  padding: 40px 20px;
  background: url('https://hansgretel.com/wp-content/uploads/2023/05/Ανώνυμο-1920-×-600-px.jpg') center/cover no-repeat;
  font-size: 0.9em;
  opacity: 0.95;
}

footer p { margin: 5px 0; }

/* ---------------------- MEDIA QUERIES ---------------------- */
@media (max-width: 768px) {
  header h1 { font-size: 1.3em; }
  .ebanner img { width: 85%; }
}

/* ---------------------- PRODUCTS PAGE (BIG ROWS) ---------------------- */
.product-row {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 50px;
}

.product-row img {
  width: 400px;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.product-text {
  text-align: left;
  max-width: 600px;
}

.product-text h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.product-text p {
  line-height: 1.6;
}

@media (max-width: 768px) {
  .product-row {
    flex-direction: column;
    align-items: center;
  }
  .product-text { text-align: center; }
}

/* ---------------------- CONTACT PAGE NEW LAYOUT ---------------------- */
.contact-page {
  padding: 60px 20px;
  max-width: 1300px;
  margin: auto;
  text-align: center;
}

.contact-top-box {
  max-width: 700px;
  margin: 0 auto 50px auto;
  text-align: center;
}

.hours-box {
  background: #ffffff15;
  border: 1px solid #ffffff40;
  padding: 20px;
  border-radius: 10px;
  margin-top: 10px;
}

.hours-box div {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #ffffff20;
}

.hours-box div:last-child { border-bottom: none; }

.hours-box span:first-child { font-weight: 600; }

.big-map {
  max-width: 1300px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
}

.big-map iframe {
  width: 100%;
  height: 600px;
  border: 0;
}

/* ---------------------- FADE IN ANIMATION ---------------------- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInMove 0.9s ease-out forwards;
}

@keyframes fadeInMove {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}