:root {
  --olive-green: #556b2f;
  --olive-dark: #3e4e1c;
  --olive-light: #f4f1ea;
  --olive-gold: #bfa76f;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--olive-light);
  color: var(--olive-dark);
}

a {
  text-decoration: none;
  color: inherit;
}
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}


.slideshow {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.slideshow-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* 40% σκοτεινό φίλτρο */
  z-index: 1;
  pointer-events: none;
}


.slideshow_description{
  z-index: 2;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);	
  color: white;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
  text-align: center; 
	top: 40%;  
}

.slideshow h1 {
  font-size: 48px;
}

.slideshow p {
	font-size: 22px;
    position: relative;
    margin-top: 20px;  
}



.slideshow {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.slideshow img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: fadeSlide 24s infinite ease-in-out;
}

.slideshow img:nth-child(3) { animation-delay: 0s; }
.slideshow img:nth-child(4) { animation-delay: 8s; }
.slideshow img:nth-child(5) { animation-delay: 16s; }

@keyframes fadeSlide {
  0%   { opacity: 0; }
  8%   { opacity: 1; }
  30%  { opacity: 1; }
  38%  { opacity: 0; }
  100% { opacity: 0; }
}

        .slideshow::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('images/slide2.jpg'); /* Adjust path as needed */
            background-size:cover;
        }

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--olive-light);
  color: var(--olive-dark);
}

a {
  text-decoration: none;
  color: inherit;
}
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}


header {
  width: 100%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 30px;
  position: fixed;
  top: 0;
  z-index: 1000;
  flex-wrap: wrap;
  background-color: transparent;
  transition: background-color 0.3s ease;
}

header.scrolled {
  background-color: var(--olive-green);
}

.header-logo {
  flex: 1;
}

.header-logo img {
  height: 70px;
  filter: drop-shadow(0 0 4px rgba(0,0,0,0.5));
}

.header-nav {
  flex: 2;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.header-nav a {
  color: white;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
}

.header-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
}


.lang-menu img {
  width: 28px;
  height: 28px;
}

.contact-button {
  background-color: var(--olive-gold);
  color: #fff;
  padding: 8px 14px;
  border-radius: 5px;
  font-size: 14px;
  margin-top:-10px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.contact-button:hover {
  background-color: #a88f5a;
}






.slideshow-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* 40% σκοτεινό φίλτρο */
  z-index: 1;
  pointer-events: none;
}



.slideshow {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
        .slideshow img {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            animation: fade 6s infinite ease-in-out;
        }
        .slideshow img:nth-child(2) {
            animation-delay: 3s; /* Second image starts halfway through */
        }
        @keyframes fade {
            0%, 25% {
                opacity: 1;
                transform: scale(1); /* Start fully visible and at normal size */
            }
            50%, 75% {
                opacity: 0;
                transform: scale(1.1); /* Add a slight zoom effect */
            }
            100% {
                opacity: 1;
                transform: scale(1); /* Return to normal size */
            }
        }



.slideshow-cta {
	display:inline-block;
	  background-color: var(--olive-gold);
	  color: white;
	  padding: 14px;
	  font-size: 18px;
	  border-radius: 6px;
	  text-decoration: none;
	  z-index: 2;
	  transition: background 0.3s ease;
	  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.slideshow-cta:hover {
  background-color: #a88f5a;
}

section {
  min-height: 100vh;
  padding: 100px 20px 60px;
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

section h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

section p {
  font-size: 20px;
  line-height: 1.6;
}

.split-section {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  min-height: 100vh;
}

.split-image {
  flex: 1;
  min-height: 400px;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.split-content {
  flex: 1;
  background-color: var(--olive-light);
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--olive-dark);
}

.split-content p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--olive-dark);
}

/* Αντιστροφή διάταξης για reverse split-section */
.split-section.reverse {
  flex-direction: row-reverse;
}

.cta {
  background-color: var(--olive-green);
  color: white;
  padding: 12px 24px;
  font-size: 18px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: fit-content;
}

.cta:hover {
  background-color: var(--olive-dark);
}

footer {
  width: 100%;
  min-height: 100vh;
  background: url('images/footer-bg.jpg') no-repeat center center/cover;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

footer > * {
  position: relative;
  z-index: 1;
}

.footer-logo {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.footer-col {
  flex: 1 1 250px;
}

.footer-col h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.footer-col p, .footer-col a {
  font-size: 18px;
  color: #ccc;
  text-decoration: none;
}

.footer-col a:hover {
  color: #fff;
}

.social a {
  margin: 0 10px;
  color: #fff;
  font-size: 24px;
}

.lang-menu-footer img {
  width: 28px;
  height: 28px;
  margin: 10px 5px;
}

footer .copyright {
  margin-top: 40px;
  font-size: 16px;
  color: #aaa;
}

.hamburger {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

.products-section {
  width: 100%;
  background-color: #fff;
}
.products-section section{
    min-height: 80vh;
    padding: 10px 20px 60px;
    justify-content: top;	
}

.products-section h2{
	text-align:center;
}

.products-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.products-wrapper h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: var(--olive-dark);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.product-card {
  background-color: #fdfdfd;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align:center;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.product-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 15px;
}

.product-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--olive-dark);
}

.product-card p {
  font-size: 16px;
  color: #444;
}


a[href^="tel:"] {
  color: inherit;
  text-decoration: none;
}

.cont{
	maregin:0 auto;
	text-align:center;
	padding:30px;
}

@media (max-width: 768px) {
	
	img{
		max-width:100%;
	}
	
  header {
    flex-direction: column;
    align-items: center;
    padding: 15px;
  }

  .header-logo img {
    height: auto;
    margin-bottom: 10px;
	max-width:85%;
  }

	header .lang-menu img{
		display:none;
	}
  .header-nav {
    text-align: center;
    margin: 10px 0;
  }

  .header-nav a {
    display: inline-block;
    margin: 10px;
    font-size: 16px;
  }

  .header-right {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
  }

  .contact-button {
    font-size: 14px;
    padding: 8px 12px;
  }

  .lang-menu {
    gap: 6px;
  }


  .header-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: var(--olive-green);
    padding: 10px 0;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
  }

  .header-nav a {
    padding: 12px 20px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.2);
    color: white;
  }

  .header-nav.show {
    display: flex;
  }

  .header-right {
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
  }

  .header {
    flex-wrap: wrap;
  }


  .header-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: var(--olive-green);
    padding: 10px 0;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
  }

  .header-nav a {
    padding: 12px 20px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.2);
    color: white;
  }

  .header-nav.show {
    display: flex;
  }

  .header-right {
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
  }

  .header {
    flex-wrap: wrap;
  } 
   .split-section,
  .split-section.reverse {
    flex-direction: column;
  }


  .split-image,
  .split-content {
    width: 100%;
    flex: none;
  }

  .split-image img {
    height: auto;
    max-height: 300px;
  }

  .split-content {
    padding: 30px 20px;
  }

  .split-content h2 {
    font-size: 28px;
  }

  .split-content p {
    font-size: 18px;
  }
	.split-section, section{
		min-height:auto;
	}
  .cta {
    font-size: 16px;
    padding: 10px 20px;
  }

  .slideshow h1 {
    font-size: 28px;
	position:relative;
  }

  .slideshow p {
    font-size: 16px;
    padding-top:30px;
  }  

  .product-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .product-card img {
    height: 200px;
  }
  
}

  35% { opacity: 0; }
  100% { opacity: 0; }
}



section {
  min-height: 100vh;
  padding: 100px 20px 60px;
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

section h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

section p {
  font-size: 20px;
  line-height: 1.6;
}

.split-section {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  min-height: 100vh;
}

.split-image {
  flex: 1;
  min-height: 400px;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.split-content {
  flex: 1;
  background-color: var(--olive-light);
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--olive-dark);
}

.split-content p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--olive-dark);
}

/* Αντιστροφή διάταξης για reverse split-section */
.split-section.reverse {
  flex-direction: row-reverse;
}

.cta {
  background-color: var(--olive-green);
  color: white;
  padding: 12px 24px;
  font-size: 18px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: fit-content;
}

.cta:hover {
  background-color: var(--olive-dark);
}

footer {
  width: 100%;
  min-height: 100vh;
  background: url('images/footer-bg.jpg') no-repeat center center/cover;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

footer > * {
  position: relative;
  z-index: 1;
}

.footer-logo {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.footer-col {
  flex: 1 1 250px;
}

.footer-col h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.footer-col p, .footer-col a {
  font-size: 18px;
  color: #ccc;
  text-decoration: none;
}

.footer-col a:hover {
  color: #fff;
}

.social a {
  margin: 0 10px;
  color: #fff;
  font-size: 24px;
}

.lang-menu-footer img {
  width: 28px;
  height: 28px;
  margin: 10px 5px;
}

footer .copyright {
  margin-top: 40px;
  font-size: 16px;
  color: #aaa;
}

 
  .hamburger {
    display: block;
    position: absolute;
    right: 20px;
    top: 30px;
    z-index: 1001;
  }

.hamburger {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

.products-section {
  width: 100%;
  background-color: #fff;
}
.products-section section{
    min-height: 80vh;
    padding: 10px 20px 60px;
    justify-content: top;	
}

.products-section h2{
	text-align:center;
}

.products-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.products-wrapper h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: var(--olive-dark);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.product-card {
  background-color: #fdfdfd;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align:center;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.product-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 15px;
}

.product-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--olive-dark);
}

.product-card p {
  font-size: 16px;
  color: #444;
}


a[href^="tel:"] {
  color: inherit;
  text-decoration: none;
}

.cont{
	maregin:0 auto;
	text-align:center;
	padding:30px;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
  margin:0 auto;
  padding-bottom:20px;
}

.section-heading img {
  width: 46px;
  height: auto;
  object-fit: contain;
}

.section-heading h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin: 0;
}

@media (max-width: 768px) {
	
	img{
		max-width:100%;
	}
	
  header {
    flex-direction: column;
    align-items: center;
    padding: 15px;
  }

  .header-logo img {
    height: auto;
    margin-bottom: 10px;
	max-width:85%;
  }

	header .lang-menu img{
		display:none;
	}
  .header-nav {
    text-align: center;
    margin: 10px 0;
  }

  .header-nav a {
    display: inline-block;
    margin: 10px;
    font-size: 16px;
  }

  .header-right {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
  }

  .contact-button {
    font-size: 14px;
    padding: 8px 12px;
  }

  .lang-menu {
    gap: 6px;
  }
 
  .hamburger {
    display: block;
    position: absolute;
    right: 20px;
    top: 45px;
    z-index: 1001;
  }

  .header-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: var(--olive-green);
    padding: 10px 0;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
  }

  .header-nav a {
    padding: 12px 20px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.2);
    color: white;
  }

  .header-nav.show {
    display: flex;
  }

  .header-right {
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
  }

  .header {
    flex-wrap: wrap;
  }

  .header-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: var(--olive-green);
    padding: 10px 0;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
  }

  .header-nav a {
    padding: 12px 20px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.2);
    color: white;
  }

  .header-nav.show {
    display: flex;
  }

  .header-right {
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
  }


   .split-section,
  .split-section.reverse {
    flex-direction: column;
  }


  .split-image,
  .split-content {
    width: 100%;
    flex: none;
  }

  .split-image {
	min-height:auto;
  }
  
  .split-image img {
    height: auto;
    max-height: 300px;
  }

  .split-content {
    padding: 30px 20px;
  }

  .split-content h2 {
    font-size: 28px;
  }

  .split-content p {
    font-size: 18px;
  }

  .cta {
    font-size: 16px;
    padding: 10px 20px;
  }

  .slideshow h1 {
    font-size: 28px;
	position:relative;
  }

  .slideshow p {
    font-size: 16px;
    padding-top:30px;
  }  

  .product-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .product-card img {
    height: 200px;
  }
  
   .section-heading {
    flex-direction: column;
    align-items: cdenter;
  }

  .section-heading img {
    margin-bottom: 0.5rem;
  } 
  .slideshow_description{
	  width:100%;
  }
  



  
}
