

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #e7fbe8, #9fe2b3);
  color: #0b3d2e;
  animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}


header {
  background: linear-gradient(90deg, #0b3d2e, #1f6f4a);
  padding: 30px;
  text-align: center;
  color: white;
  letter-spacing: 2px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}


nav {
  background: #1f6f4a;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  position: relative;
}

nav ul li {
  padding: 15px 25px;
  position: relative;
  transition: background 0.3s;
}

nav ul li:hover {
  background: #9fe2b3;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
}


nav ul li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 3px;
  background: #e7fbe8;
  transition: width 0.3s;
}

nav ul li:hover::after {
  width: 100%;
}


.container {
  display: grid;
  grid-template-columns: 1fr 1fr 320px;
  gap: 25px;
  padding: 30px;
}


.column {
  background: rgba(255, 255, 255, 0.75);
  padding: 25px;
  border-radius: 12px;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  animation: slideUp 0.8s ease;
  transition: transform 0.3s, box-shadow 0.3s;
}

.column:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.2);
}

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}


.pictures {
  background: rgba(159, 226, 179, 0.3);
}

.pictures img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: fadeIn 1.2s ease;
}

.pictures img:hover {
  transform: scale(1.00);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);

}

@media (max-width: 768px) {
  .container {
    grid-template-columns: 1fr;
  }
}
.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #1f6f4a;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  background: #9fe2b3;
  color: #0b3d2e;
}
