/* ================= GLOBAL RESET ================= */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: #000;
  color: #fff;
  font-family: Georgia, serif;
  scroll-behavior: smooth;
}

/* ================= NAVBAR ================= */
.navbar {
  display: flex;
  gap: 40px;
  padding: 25px 60px;
  position: sticky;
  top: 0;
  background: #000;
  z-index: 1000;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  letter-spacing: 1px;
  transition: 0.3s ease;
}

.navbar a:hover {
  color: #f39eb7;
}

/* ================= CONTAINER ================= */
.container {
  max-width: 1400px;
  margin: auto;
  padding: 80px 40px;
}

/* ================= SECTION TITLES ================= */
.section-divider {
  width: 160px;
  height: 3px;
  background: #f39eb7;
  margin: 60px 0 20px 0;
  box-shadow: 0 0 15px rgba(243,158,183,0.8);
}

.section-title {
  font-size: 2.6rem;
  margin-bottom: 40px;
  color: #f39eb7;
  letter-spacing: 2px;
}

/* ================= ABOUT ================= */
.about-section {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.about-text {
  flex: 1 1 600px;
  font-size: 1.3rem;
  line-height: 1.8;
}

.about-pic {
  flex: 1 1 500px;
  max-width: 550px;
  border-radius: 12px;
  border: 2px solid white;
  filter: grayscale(100%);
  transition: 0.4s ease;
}

.about-pic:hover {
  transform: scale(1.03);
  box-shadow: 0 0 35px #f39eb7;
}

/* ================= EVENTS ================= */
.event-item {
  font-size: 1.4rem;
  line-height: 1.8;
}

/* ================= ARC GALLERY ================= */
.arc-gallery {
  position: relative;
  width: 100%;
  height: 550px;
  margin-top: 60px;
}

.arc-gallery img {
  position: absolute;
  bottom: 0;
  width: 15%;
  max-width: 240px;
  border-radius: 14px;
  cursor: pointer;
  transition: 0.4s ease;
}

.arc-gallery img:nth-child(1) { left: 3%;  transform: rotate(-32deg); }
.arc-gallery img:nth-child(2) { left: 17%; transform: rotate(-20deg); }
.arc-gallery img:nth-child(3) { left: 32%; transform: rotate(-8deg); }
.arc-gallery img:nth-child(4) { left: 45%; transform: rotate(0deg); z-index: 2; }
.arc-gallery img:nth-child(5) { left: 60%; transform: rotate(8deg); }
.arc-gallery img:nth-child(6) { left: 75%; transform: rotate(20deg); }
.arc-gallery img:nth-child(7) { left: 89%; transform: rotate(32deg); }

.arc-gallery img:hover {
  transform: scale(1.15) rotate(0deg);
  z-index: 10;
  box-shadow: 0 25px 50px rgba(0,0,0,0.7);
}

/* ================= MODAL ================= */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.modal img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 14px;
}

.close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 42px;
  color: white;
  cursor: pointer;
}

/* ================= VIDEO GALLERY ================= */
.video-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 40px;
}

.video-gallery iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  transition: 0.3s ease;
}

.video-gallery iframe:hover {
  box-shadow: 0 0 30px #f39eb7;
}

/* ================= CONTACT ================= */
.contact-wrapper {
  max-width: 800px;
  margin: auto;
}

.contact-intro {
  font-size: 1.3rem;
  margin-bottom: 30px;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-form input,
.contact-form textarea {
  padding: 18px;
  font-size: 1.1rem;
  background: #111;
  border: 2px solid #f39eb7;
  border-radius: 10px;
  color: white;
}

.contact-form textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-form button {
  padding: 18px;
  font-size: 1.2rem;
  background: transparent;
  border: 2px solid #f39eb7;
  border-radius: 50px;
  color: #f39eb7;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form button:hover {
  background: #f39eb7;
  color: black;
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {
  .about-section {
    flex-direction: column;
  }

  .video-gallery {
    grid-template-columns: 1fr;
  }

  .arc-gallery {
    height: 400px;
  }
}
