<!-- ✅ assets/style.css (απλό παράδειγμα με pastel + floral ύφος) -->
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #fdf6f9;
  color: #4b2e2e;
}
.site-header, .site-footer {
  background: #e9d7f4;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  height: 60px;
  border-radius: 50%;
}
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}
.main-nav a {
  text-decoration: none;
  color: #4b2e2e;
  font-weight: bold;
}
.hero {
  text-align: center;
  padding: 3rem 1rem;
  background: #fff0f6;
  animation: fadeIn 1s ease-in;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  padding: 1rem;
}
.gallery-item img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s ease;
}
.gallery-item img:hover {
  transform: scale(1.05);
}
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

/* Περισσότερο CSS μπορεί να προστεθεί για responsive */