/* Genel Stiller */
body {
  font-family: 'Montserrat', sans-serif;
  color: #333;
  background-color: #f9e5e5;
  background-image: url('../images/background.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: -1;
}

h1 {
  font-size: 3rem;
  color: #ff6b6b;
  text-align: center;
  margin-top: 2rem;
}

p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Bölüm Stilleri */
.intro {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.album {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 1rem;
  padding: 2rem;
}

.album img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1rem;
  margin-bottom: 1.5rem;
}

.photo-grid img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Animasyonlar */
@keyframes confetti {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(720deg);
    opacity: 0;
  }
}

.confetti {
  position: fixed;
  top: -10px;
  width: 10px;
  height: 10px;
  background-color: #f1c40f;
  animation: confetti 5s linear infinite;
  z-index: 100;
}

.confetti:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
}

.confetti:nth-child(2) {
  left: 20%;
  animation-delay: -1s;
}

.confetti:nth-child(3) {
  left: 30%;
  animation-delay: -2s;
}

.confetti:nth-child(4) {
  left: 40%;
  animation-delay: -3s;
}

.confetti:nth-child(5) {
  left: 50%;
  animation-delay: -4s;
}

.confetti:nth-child(6) {
  left: 60%;
  animation-delay: -5s;
}

.confetti:nth-child(7) {
  left: 70%;
  animation-delay: -6s;
}

.confetti:nth-child(8) {
  left: 80%;
  animation-delay: -7s;
}

.confetti:nth-child(9) {
  left: 90%;
  animation-delay: -8s;
}

@keyframes balloon {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) rotate(10deg);
  }
  50% {
    transform: translateY(-40px) rotate(-10deg);
  }
  75% {
    transform: translateY(-20px) rotate(10deg);
  }
}

.balloon {
  position: fixed;
  bottom: -100px;
  width: 100px;
  height: 120px;
  background-image: url('../images/balloon.png');
  background-size: contain;
  background-repeat: no-repeat;
  animation: balloon 5s ease-in-out infinite;
  z-index: 100;
}

.balloon:nth-child(1) {
  left: 20%;
  animation-delay: 0s;
}

.balloon:nth-child(2) {
  left: 40%;
  animation-delay: -2s;
}

.balloon:nth-child(3) {
  left: 60%;
  animation-delay: -4s;
}

.balloon:nth-child(4) {
  left: 80%;
  animation-delay: -6s;
}

/* İkon Stilleri */
.icon {
  position: fixed;
  width: 80px;
  height: 80px;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 100;
}

.icon-trophy {
  top: 20px;
  left: 20px;
  background-image: url('../images/trophy.svg');
}

.icon-medal {
  top: 20px;
  right: 20px;
  background-image: url('../images/medal.svg');
}

.icon-graduation {
  bottom: 20px;
  left: calc(50% - 40px);
  background-image: url('../images/graduation.svg');
}

/* Footer Stili */
footer {
  text-align: center;
  padding: 1rem;
  background-color: #ff6b6b;
  color: #fff;
  margin-top: 2rem;
}