@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Quicksand:wght@400;600&display=swap');

body {
  font-family: 'Quicksand', sans-serif;
  margin: auto;
  background: linear-gradient(135deg, #e6f7ff, #dbeafe);
  color: #333;
  text-align: center;
  min-height: 100vh;
}

.container {
  max-width: 800px;
  margin: auto;
  padding: 2rem;
}

h1 {
  font-family: 'Fredoka One', cursive;
  font-size: 3rem;
  margin-bottom: 0.5rem;
  color: #3b82f6; /* babakék */
  text-shadow: 2px 2px #e0f2fe;
}

.subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: #555;
}

.contact h2,
.gallery h2 {
  margin-top: 2rem;
  font-family: 'Fredoka One', cursive;
  color: #2563eb; /* erősebb kék */
}

.contact p {
  margin: 0.5rem 0;
}

a {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 600;
}

a:hover {
  text-decoration: underline;
}

/* Galéria */
.gallery-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
}

.gallery-container img {
  width: 400px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  margin: 0 1rem;
  border: 4px solid #fff;
}

.gallery-container button {
  background: #bfdbfe; /* halvány kék */
  color: #333;
  border: none;
  padding: 0.6rem 0.8rem;
  font-size: 1.5rem;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.gallery-container button:hover {
  background: #93c5fd; /* erősebb kék hover */
  transform: scale(1.1);
}

/* Mobilbarát */
@media (max-width: 600px) {
  .gallery-container img {
    width: 70%;
    height: auto;
  }
}
