/* === Βασικά === */
* {
  box-sizing: border-box;
}
html, body {
  height: 100%;
}
body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #f5f5f5;
  margin: 0;
  padding: 0;
  color: #333;
}
img, video {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* === Header === */
header {
  background: #111;
  color: #fff;
  padding: 2rem;
  text-align: center;
}
.site-header {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 30px 20px;
}

.site-header h1 {
  font-size: 2.5em;
  margin: 0;
  color: #ccc;
}

.site-header p {
  font-size: 1.2em;
  margin-top: 10px;
  color: #fff;
}

/* === Navigation Menu === */
nav {
  position: sticky;
  top: 0;
  background-color: #fff;
  border-bottom: 1px solid #eee;
  z-index: 1000;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  font-size: 1.2em;
  color: #fff!important;
}
.nav-logo:hover {
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.nav-logo img {
  height: 50px;
}
.nav-links {
  display: flex;
  gap: 20px;
}
.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}
.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.burger div {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 4px;
}

/* === Footer === */
#siteFooter {
  background-color: #000;
  color: #fff;
  padding: 20px 10px;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.footer-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 0 10px;
}
.footer-brand img {
  height: 30px;
}
.newsletter-form {
  margin: 20px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.newsletter-form input {
  padding: 10px;
  border: none;
  border-radius: 4px;
  margin-right: 10px;
}
.newsletter-form button {
  padding: 10px 20px;
  background-color: #e60000;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.social-links img {
  height: 32px;
  margin: 0 8px;
}
.footer-legal a {
  color: inherit;
  text-decoration: underline;
}

/* === Cookie Banner === */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 320px;
  background-color: #222;
  color: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 9999;
  font-size: 0.95em;
  animation: fadeIn 0.5s ease-in-out;
}
.cookie-banner p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cookie-buttons {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
}
.cookie-buttons button {
  background-color: #e60000;
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9em;
}
.cookie-buttons button:hover {
  background-color: #ff3333;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === CTA Button === */
.cta-button {
  display: inline-block;
  background-color: #111;
  color: #fff;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease;
}
.cta-button:hover {
  background-color: #333;
}
	/* Layout για sticky footer */
	  .page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}
/* === Responsive === */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #fff;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    padding: 10px 20px;
    border-top: 1px solid #eee;
	  transition: max-height 0.3s ease;
  overflow: hidden;
  max-height: 0;
  }
  .nav-links.active {
    display: flex;
	  max-height: 500px;
}
  }
  .burger {
    display: flex;
  }
  .newsletter-form {
    flex-direction: column;
    align-items: center;
  }
  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }
  .cookie-banner {
    right: 10px;
    left: 10px;
    bottom: 10px;
    max-width: none;
  }
  .cookie-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .cookie-buttons button {
    width: 100%;
 }	
 