/* -------------------------
   ΓΕΝΙΚΕΣ ΡΥΘΜΙΣΕΙΣ
-------------------------- */
body {
  font-family: "Open Sans", Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4faf3; /* απαλό πράσινο */
  color: #333;
  line-height: 1.6;
}

/* -------------------------
   HEADER & NAVIGATION
-------------------------- */
header {
  background-color: #e8f3e3;
  border-bottom: 3px solid #6bbf59;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;
  flex-wrap: wrap;
}

header .logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

header img {
  width: 200px;
  height: auto;
}

header h1 {
  margin: 0;
  color: #2e7d32;
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  flex: 1;
}

/* -------------------------
   ΠΛΟΗΓΗΣΗ (ΟΡΙΖΟΝΤΙΟ MENU)
-------------------------- */
nav {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

nav a {
  color: white;
  background-color: #6bbf59;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s;
}

nav a:hover {
  background-color: #558b2f;
}

/* -------------------------
   BANNER (μόνο στην αρχική)
-------------------------- */
.banner {
  width: 100%;
  height: 300px;
  background-image: url('images/banner.jpg'); /* βάλε δική σου φωτογραφία */
  background-size: cover;
  background-position: center;
  border-bottom: 3px solid #6bbf59;
}

/* -------------------------
   ΚΥΡΙΟ ΠΕΡΙΕΧΟΜΕΝΟ
-------------------------- */
main {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

h2 {
  color: #2e7d32;
  border-bottom: 2px solid #6bbf59;
  padding-bottom: 5px;
}

/* -------------------------
   ΦΩΤΟΓΡΑΦΙΕΣ
-------------------------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.gallery img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* -------------------------
   ΦΟΡΜΑ ΕΠΙΚΟΙΝΩΝΙΑΣ
-------------------------- */
form {
  background-color: #f8f8f8;
  padding: 20px;
  border-radius: 10px;
  max-width: 600px;
  margin: 20px auto;
}

label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
  color: #2e7d32;
}

input, textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
}

button {
  background-color: #6bbf59;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}

button:hover {
  background-color: #558b2f;
}

.hidden {
  display: none !important;
}


/* -------------------------
   FOOTER
-------------------------- */
footer {
  background-color: #e8f3e3;
  text-align: center;
  padding: 15px;
  font-size: 14px;
  color: #555;
  margin-top: 40px;
}

footer a {
  color: #2e7d32;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* -------------------------
   RESPONSIVE
-------------------------- */
@media (max-width: 800px) {
  header {
    flex-direction: column;
    text-align: center;
  }

  header img {
    width: 80px;
  }

  nav {
    margin-top: 10px;
  }
}


/* -------------------------
   DOWNLOAD Button
-------------------------- */

.download-container {
  text-align: center; /* center button horizontally */
  margin: 40px 0;
}

.btn-download {
  display: inline-flex;      /* icon + text alignment */
  align-items: center;       /* vertically center */
  gap: 8px;                  /* space between icon and text */
  background-color: #6bbf59; /* green */
  color: white;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s;
  cursor: pointer;
}

.btn-download:hover {
  background-color: #558b2f;
}

.btn-icon {
  width: 20px; /* icon size */
  height: auto;
}

/* -----------------------
   Responsive adjustments
------------------------ */
@media (max-width: 480px) {
  .btn-download {
    padding: 10px 16px;
    font-size: 14px;
  }

  .btn-icon {
    width: 16px;
  }

  .download-container {
    margin: 32px 0;
  }
}

}







/* Footer base */
.site-footer {
  background-color: #f8f8f8;
  padding: 20px 0;
  font-family: Arial, sans-serif;
  color: #333;
  text-align: center;
}

/* Footer inner container */
.site-footer .footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* Logo + tagline in one line */
.footer-logo-tagline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-logo-tagline h4 {
  font-size: 18px;
  font-weight: bold;
  margin: 0;
  color: #2e7d32;
}

.footer-logo-tagline p {
  font-size: 14px;
  margin: 0;
  color: #555;
}

/* Contact & social bars */
.contact-bar {
  margin: 5px 0;
}

.contact-label {
  font-weight: bold;
  color: #2e7d32;
  margin-right: 5px;
}

.contact-email,
.contact-bar a {
  color: #558b2f;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-email:hover,
.contact-bar a:hover {
  color: #6bbf59;
  text-decoration: underline;
}

/* Copyright section with separator */
.site-footer .copyright {
  border-top: 1px solid #ccc;
  margin-top: 15px;
  padding-top: 10px;
  font-size: 14px;
  color: #555;
  text-align: center;
}

/* Responsive: stack logo + tagline on small screens */
@media (max-width: 480px) {
  .footer-logo-tagline {
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }

  .footer-logo-tagline p {
    font-size: 13px;
  }

  .contact-bar {
    font-size: 13px;
  }
}
