/* Google Fonts import */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;600&display=swap");
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background-color: #f0f8ff;
  color: #333;
}

header {
  background: linear-gradient(90deg, #0077b6, #00b4d8);
  color: white;
  padding: 20px 40px;
  text-align: center;
}

header h1 {
  margin: 0;
  font-weight: 600;
  font-size: 2.8em;
  letter-spacing: 2px;
}

nav {
  margin-top: 10px;
}

nav a {
  color: #caf0f8;
  margin: 0 15px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #90e0ef;
}

.hero {
  background-image: url("img/header.png");
  background-size: cover;
  background-position: center;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero h2 {
  font-size: 3em;
  margin: 0;
}

main {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

section {
  margin-bottom: 50px;
}

section h3 {
  color: #0077b6;
  font-weight: 600;
  margin-bottom: 15px;
  border-bottom: 2px solid #00b4d8;
  padding-bottom: 5px;
}

section p {
  line-height: 1.6;
  font-weight: 300;
  font-size: 1.1em;
}

.gallery {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.gallery img {
  width: 250px;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  cursor: pointer;
}

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

footer {
  background-color: #0077b6;
  color: #caf0f8;
  text-align: center;
  padding: 15px 10px;
  font-size: 0.9em;
}
