/* Reset και βασικές ρυθμίσεις */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Arial", sans-serif;
  background-image: url("Light-Blue.jpg");
  background-size: cover;
  background-position: center;
  color: #333;
  line-height: 1.6;
}

/* Header */
header {
  background-color: #ffffffcc;
  color: #333;
  padding: 15px 30px;
  position: fixed;
  margin-top: 20px;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Τίτλος */
header h1 a {
  text-decoration: none;
  color: #4a90e2;
  font-family: "Dancing Script", cursive;
  font-size: 2.5rem;
  transition: color 0.3s ease;
}

header h1 a:hover {
  color: #357abd;
}

/* Πλοήγηση */
nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav ul li a {
  text-decoration: none;
  color: #555;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
  color: #4a90e2;
}

/* Main */
main {
  padding-top: 120px;
  padding-bottom: 60px;
  text-align: center;
  color: #fff;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.welcome-section h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #ffffff;
  box-shadow: inset 0 0 8px #c3d0ff;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 10px;
  background-color: rgba(0, 0, 128, 0.3);
}

/* Facility sections */
.facility-section {
  background: rgba(255, 255, 255, 0.9);
  padding: 30px;
  margin: 20px auto;
  border-radius: 15px;
  max-width: 1200px;
}

.facility-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
  border-bottom: 2px solid #4a90e2;
  padding-bottom: 8px;
  text-align: center;
}

.facility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 15px;
}

.facility-card {
  background-color: #f5f9ff;
  border-radius: 12px;
  box-shadow: 0 2px 6px #a8c2ff;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 14px 12px;
  text-align: center;
  transition: transform 0.2s ease;
}

.facility-card:hover {
  transform: scale(1.05);
}

.facility-category h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #4a90e2;
}

.facility-category ul {
  list-style-type: disc;
  padding-left: 30px;
  margin-bottom: 20px;
}

.facility-category ul li {
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.booking-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #f7be04;
  color: #333;
  padding: 14px 28px;
  font-size: 1.1rem;
  font-weight: bold;
  border: none;
  border-radius: 100px; /*ρηρμιζει το ποσο τετραγωνο ή στρογγιλο ειναι*/ 
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  text-decoration: none;
  transition: all 0.3s ease;
  z-index: 999;
}

.booking-btn:hover {
  background-color: #ffb347;
  color: white;
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0,0,0,0.4);
}

/* Footer */
footer {
  text-align: center;
  font-size: 0.9rem;
  padding: 15px 0;
  color: #444;
  background: #f0f0f0;
}

/* Language switcher (σημαίες) */
.language-switcher {
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 1100;
}

.language-switcher button {
  border: none;
  background: transparent;
  cursor: pointer;
  margin-left: 10px;
  padding: 0;
  outline: none;
  transition: transform 0.2s ease;
}

.language-switcher button img {
  width: 30px;
  height: 20px;
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.language-switcher button:hover {
  transform: scale(1.15);
}
/*ειναι για τις ριθμησεις της σημαιας για να ειναι στην ιδια ευθεια με τα αλλα*/
.about-with-flags {
  display: flex;
  align-items: center;
  gap: 8px; /* Απόσταση ανάμεσα στο κείμενο και τις σημαίες */
}

.language-switcher-inline {
  display: flex;
  gap: 4px;
}

.language-switcher-inline button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
/*μεγεθος σημαιας*/
.language-switcher-inline img {
  width: 30px;
  height: 20px;
  display: block;
}



