
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #111;
  color: #fff;
  line-height: 1.6;
}
/* Header container */
header {
  text-align: center;
  padding: 2rem 1rem;
  background: rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid #333;
  background: black;
}

/* Header title */
header h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0.5rem 0;
  color: #f0c;
  background: black;
}

/* Header subtitle */
header p {
  font-size: clamp(1rem, 3vw, 1.2rem);
  margin: 1rem 0 0.5rem;
  max-width: 90%;
  margin-inline: auto;
  background: black;
}

/* Eye logo */
.mystic-eye {
  width: clamp(140px, 25vw, 220px);
  height: auto;
  margin: 1rem auto;
  display: block;
  opacity: 0.85;
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.6));
}

.about {
  background: #222;
  padding: 3rem 1.5rem;
  margin: 0 auto;
  max-width: 900px;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.about h2 {
  font-size: clamp(1.4rem, 4vw, 2rem);
  margin-bottom: 1rem;
  text-align: center;
  color: #f0c;
}

.about p {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  text-align: center;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
  color: #eee;
}

.events {
  padding: 3rem 1.5rem;
  margin: 0 auto;
  max-width: 900px;
}

.events h2 {
  font-size: clamp(1.4rem, 4vw, 2rem);
  text-align: center;
  margin-bottom: 2rem;
  color: #f0c;
}

.events ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.5rem;
}

.events li {
  background: #1c1c1c;
  padding: 1.5rem;
  border-left: 4px solid #a044ff;
  border-radius: 8px;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.events li:hover {
  transform: translateY(-4px);
}

}
section {
  padding: 2rem 1rem;
  max-width: 900px;
  margin: auto;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #f0c;
}

.endiaferonta h2 {
  font-size: clamp(1.4rem, 4vw, 2rem);
  text-align: center;
  margin-bottom: 2rem;
  color: #f0c;

}
.projects {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 3rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.project-card {
  background: #1a1a1a;
  border-left: 5px solid #f0c;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(240, 0, 200, 0.4);
}

.project-card h3 {
  margin-top: 0;
  font-size: clamp(1.3rem, 4vw, 1.6rem);
  color: #f0c;
  margin-bottom: 0.75rem;
}

.project-card p {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  opacity: 0.9;
  line-height: 1.6;
  color: #eee;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  padding: 3rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  background-color: black;
  background: black;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0,0,0,0.5);
  text-align: center;
}

.gallery h2 {
  grid-column: 1 / -1;
  font-size: clamp(1.4rem, 4vw, 2rem);
  color: #f0c;
  margin-bottom: 1rem;
}

.gallery img {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 10px;
  border: 2px solid #444;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 0, 200, 0.3);
}


footer {
  background: #000;
  padding: 2rem;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.6;
}
a {
  color: #f0c;
}
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: url("header-bg.png") center center / cover no-repeat fixed;
  color: #fff;
  line-height: 1.6;
  position: relative;
  z-index: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* ημιδιαφανές overlay για αντίθεση */
  z-index: -1;
}

section, header, footer {
  position: relative;
  z-index: 1;
  backdrop-filter: blur(2px); /* ελαφρύ blur για περισσότερη αντίθεση */
}

h2, h3, p, li {
  text-shadow: 1px 1px 2px #000;
}

