* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #f09eb2;
  color: #07148a;
 font-weight: bolder;
  line-height: 1.7;
}

.hero {
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.hero h1 {
  font-size: 2.8rem;
}

.hero p {
  font-size: 1.2rem;
  margin-top: 10px;
}

.content, .gallery, .partners {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
}

h2 {
  margin-bottom: 20px;
  color: #e6072c;
}

.gallery .grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 15px;
}

.gallery img {
  width: 80%;
  border-radius: 12px;
  transition: transform 0.3s;
}

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

.partners .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(440px, 1fr));
  color: white;
  gap: 20px;
}

.card {
  background: #2610a3;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

footer {
  background: #2c3e50;
  color: #fff;
  text-align: center;
  padding: 25px;
  margin-top: 60px;
}
/* LIGHTBOX */
#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
background: #2610a3;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

#closeLightbox {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  user-select: none;
}

.gallery img {
  cursor: zoom-in;
}

.partner-photo {
  width: 400px;
  height: 200px;
   gap: 1px;
  object-fit: cover;
  border-radius: 10%;
  border: 2px solid #48d60f;
}

.gold-text {
  color: #FFD700;
}