h2 {
  text-align: center;
  color: #0000008a;
}

header {
  text-align: center;
  padding: 60px 20px;
}

header h1 {
  font-size: 3rem;
  text-shadow: 2px 2px 5px rgba(247, 207, 227, 0.8);
  color: #e7b6c9;
}

header p {
  margin-top: 15px;
  font-size: 1.3rem;
  opacity: 0.9;
}

.home-hero {
  min-height: calc(100vh - 140px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 40px 20px;
  box-sizing: border-box;
}

.hero-text {
  text-align: center;
}

.hero-text h1 {
  font-size: 3rem;
  color: #c0d9b8;

}

.hero-text p {
  margin-top: 10px;
  font-size: 1.3rem;
  opacity: 0.9;
}

.hero-photos {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  align-items: center;
}

.hero-photos img {
  max-height: 220px;          
  width: auto;
  height: auto;
  border-radius: 14px;
  border: 2px solid #f7cfe3;
  display: block;
}

.hero-logo {
  width: 220px;
  height: auto;
}

@media (max-width: 1024px) {
  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-text p {
    font-size: 1.2rem;
  }

  .hero-logo {
    width: 280px;
  }
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1.1rem;
  }

  .hero-photos {
    flex-direction: column;
    gap: 10px;
  }

  .hero-photos img {
    max-width: 90%;
    max-height: 180px;
  }

  .hero-logo {
    width: 200px;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.6rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .hero-photos img {
    max-width: 100%;
    max-height: 150px;
  }

  .hero-logo {
    width: 160px;
  }
}

@media (min-width: 1025px) {
  html, body {
    height: 100vh;
    margin: 0;
    overflow: hidden;
  }

  .home-hero {
    height: calc(100vh - 200px); 
    min-height: auto;
    padding: 20px;
    justify-content: space-around;
  }

  .hero-photos img {
    max-height: 25vh; 
    width: auto;
  }
}
.hero-photos img {
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-photos img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 20px rgba(231, 182, 201, 0.4);
}

#lightbox {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(0,0,0,0.5);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

#lightbox.active {
  display: flex;
}

#lightbox.active img {
  transform: scale(1);
}