* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Zain", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* Zain Font Classes */
.zain-extralight {
  font-family: "Zain", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.zain-light {
  font-family: "Zain", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.zain-regular {
  font-family: "Zain", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.zain-bold {
  font-family: "Zain", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.zain-extrabold {
  font-family: "Zain", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.zain-black {
  font-family: "Zain", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.zain-light-italic {
  font-family: "Zain", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.zain-regular-italic {
  font-family: "Zain", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.menu-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #8a1e74;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 2.5rem;
  font-family: "Zain", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.logo:hover {
  color: #fff;
  cursor: pointer;
  opacity: 0.9;
}

.menu-links {
  display: flex;
  gap: 2rem;
}

.menu-link {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-family: "Zain", sans-serif;
  font-weight: 400;
  font-style: normal;
  transition: color 0.3s ease;
  position: relative;
}

.menu-link:hover {
  background: #ffffff;
  padding: .3rem;
  border-radius: 32px;
  color: #8a1e74;
}

/*
.menu-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #fff;
  transition: width 0.3s ease;
}*/

.menu-link:hover::after {
  width: 100%;
}

.content-area {
  min-height: calc(100vh - 80px);
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}

#hero-image-content {
  width: 100%;
  height: calc(100vh - 80px);
  position: relative;
  padding: 0;
  max-width: unset;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-motto {
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 4rem;
  font-family: "Zain", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
  max-width: 40%;
  z-index: 10;
}

.content-section {
  max-width: 900px;
  width: 100%;
  padding: 3rem 2rem;
}

.profil-logo {
  display: block;
  margin: 0 auto 2rem auto;
  max-width: 300px;
  width: 100%;
  height: auto;
}

.content-section p {
  text-align: center;
  line-height: 1.8;
  font-size: 1.1rem;
  font-family: "Zain", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #333;
}

.produksi-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.produksi-list li {
  font-size: 1.3rem;
  line-height: 2.5;
  font-family: "Zain", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #333;
  padding: 0.5rem 0;
}

.produksi-list li::before {
  content: "- ";
  font-weight: bold;
  color: #8a1e74;
}

/* Gallery Styles */
.gallery-section {
  max-width: 1200px;
  width: 100%;
  padding: 3rem 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  padding: 1rem 0;
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.gallery-image:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 4px;
  animation: zoomIn 0.3s;
}

#lightbox-video {
  display: none;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 2001;
}

.lightbox-close:hover {
  color: #ccc;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Responsive Gallery */
@media (max-width: 768px) {
  .menu-bar {
    flex-direction: column;
    align-items: center;
    padding: 1rem;
  }
  
  #home-link {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 900;
  }
  
  .menu-links {
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    width: 100%;
    justify-content: space-around;
  }
  
  .menu-link {
    font-size: 1.3rem;
  }
  
  .content-section {
    max-width: 100%;
    width: 100%;
  }
  
  .content-area {
    justify-content: flex-start;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
  }
  
  .gallery-image {
    height: 150px;
  }
  
  .lightbox-close {
    top: 10px;
    right: 20px;
    font-size: 30px;
  }
  
  .hero-motto {
    font-size: 2rem;
    left: 3%;
    max-width: 60%;
  }
}

@media (max-width: 480px) {
  .hero-motto {
    font-size: 1.5rem;
    left: 3%;
    max-width: 80%;
  }
}
