/* Βασικά χρώματα */
:root {
  --primary-color: #0077b6;   /* Γαλάζιο σαν το Αιγαίο */
  --secondary-color: #00b4d8; /* Θαλασσί */
  --accent-color: #90e0ef;    /* Ανοιχτό γαλάζιο */
  --background-color: #caf0f8;/* Καλοκαιρινό φόντο */
  --text-color: #03396c;      /* Βαθύ μπλε */
  --header-bg: #ffffffbb;     /* Λευκό ημιδιαφανές */
}

/* Γενικά reset και font */
body {
  margin: 0;
  padding: 0;
  font-family: 'Trebuchet MS', 'Segoe UI', sans-serif;
  background: var(--background-color) url('images/summer-pattern.svg') repeat;
  background-size: 300px;
  color: var(--text-color);
  line-height: 1.6;
}

/* Header */
header {
  background: var(--header-bg);
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

header h1 {
  margin: 0;
  color: var(--primary-color);
}

nav {
  margin-top: 10px;
}

nav a {
  color: var(--secondary-color);
  text-decoration: none;
  margin: 0 10px;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--primary-color);
}

.language-switch {
  margin-top: 10px;
  font-size: 0.9em;
}

/* Sections */
main {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
  background: #ffffffaa;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

section {
  margin-bottom: 40px;
}

section h2 {
  color: var(--primary-color);
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 5px;
}

/* Gallery Grid */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
}

.gallery img {
  width: 100%;
  height: 200px; /* σταθερό ύψος */
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

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

/* Contact */
.map iframe {
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: var(--header-bg);
  color: var(--text-color);
  font-size: 0.9em;
}

/* Responsive */
@media (max-width: 768px) {
  .gallery {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .gallery {
    grid-template-columns: 1fr;
  }
}