/* style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-color: #fff;
    overflow-x: hidden;
    font-family: 'Vollkorn', serif;
    color: #222;
  }
  
  h1, h2, h3 {
    font-family: 'Boldonse', serif;
    font-weight: normal;
  }
  
  
  /* Navbar */
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem;
    background-color: white;
    position: fixed;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    height: 70px; /* buat header lebih ramping */
  }
  
  .logo {
    display: flex;
    align-items: center; 
    height: 100%;
  }
  
  .logo img {
    max-height: 75px; /* UKURAN */
    height: auto;
    width: auto;
    display: block;
  }
  nav {
    display: flex;
    gap: 2rem;
    align-items: center;
    font-family: 'Vollkorn', serif;
    font-size: 1rem;
  }  
  
  nav a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
  }
  
  nav a:hover {
    color: #002147;
  }
  
  nav .cta {
    background-color: #10007c;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease;
  }
  
  nav .cta:hover {
    background-color: #1d1d96;
  }
  
  /* Hero */
  .hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }
  
  .hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  .hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
  }
  
  .hero-slide.active {
    opacity: 1;
    z-index: 1;
  }
  
  .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 2;
  }
  
  .hero-content h1 {
    font-size: 48px;
    max-width: 800px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  }
  
 /* About */
.about {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 80px 60px;
  background-color: #f9f9f9;
  gap: 60px;
  flex-wrap: wrap;
  position: relative;
}

.about-text {
  flex: 1;
  font-size: 16.5px;
  line-height: 1.55;
  color: #333;
}

.about-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #002147;
  font-family: 'Boldonse', serif;
  font-weight: normal;
}

.about-text p {
  margin-bottom: 10px;
  text-align: justify;
}

.features {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  font-weight: 500;
  color: #002147;
}

.feature-item {
  background-color: #ffffff;
  padding: 10px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  transition: transform 0.2s ease;
}

.feature-item:hover {
  transform: translateY(-2px);
}

.image-mask {
  position: relative;
  max-width: 480px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  isolation: isolate;
}

.image-mask img {
  width: 100%;
  display: block;
  border-radius: 20px;
  z-index: 1;
  position: relative;
}

  /* Services */
  .services {
    width: 100%;
    position: relative;
    padding: 100px 80px;
    z-index: 1;
    text-align: center;
    background-color: #ffffff;
  }

  .services h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #002147;
  }
  
  .service-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    z-index: 2;
    background-color: white;
  }
  
  .card {
    width: 300px;
    background: #ffffff;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 16px;
    border: 1px solid #002147;
  }
  
  .card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #002147;
  }

  
  /* Event Gallery */
  .gallery {
    padding: 80px;
    width: 100%;
    margin: 0 auto;
    background-color: #f2f2f2;
  }
  
  .gallery h2 {
    text-align: center;
    font-size: 32px;
    color: #002147;
    margin-bottom: 40px;
  }
  
  .gallery-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
  }
  
  .gallery-card {
    min-width: 300px;
    height: 200px;
    background-color: #ddd;
    border-radius: 12px;
    overflow: hidden;
    scroll-snap-align: start;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    flex-shrink: 0;
  }
  
  .gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .gallery-card {
    position: relative;
    min-width: 300px;
    height: 200px;
    background-color: #ddd;
    border-radius: 12px;
    overflow: hidden;
    scroll-snap-align: start;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    flex-shrink: 0;
  }
  
  .gallery-card .event-title-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 33, 71, 0.7); /* biru tua semi transparan */
    color: white;
    text-align: center;
    padding: 8px;
    font-family: 'Vollkorn', serif;
    font-size: 16px;
    font-weight: 500;
  }


  /* EVENT RAPAT */ 
  .event-gallery {
    padding: 60px 20px;
    text-align: center;
    background-color: #fff;
  }
  
  .event-gallery h1 {
    font-family: 'Vollkorn';
    font-size: 32px;
    color: #002147;
    margin-top: 50px;
    margin-bottom: 20px;
  }
  .event-gallery .event-description {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
  }
  
  .photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .photo-grid img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    object-fit: cover;
  }

  .photo-gallery {
    padding: 2rem 0;
  }
  
  .photo-section {
    margin-bottom: 3rem;
    margin-top: 1rem;
  }
  
  .photo-date {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-align: left;
    color: #333;
  }
  
  /* Client Logo Section */
.clients {
  background-color: #ffffff;
  text-align: center;
  padding: 60px 20px;
}

.clients h2 {
  font-family: 'Boldonse', serif;
  font-size: 36px;
  margin-bottom: 10px;
  color: #111;
  line-height: 1.3;
}

.clients h2 span {
  font-family: 'Vollkorn', serif;
  font-weight: bold;
  font-size: 40px;
  display: block;
  margin-top: 5px;
}

.clients p {
  font-size: 18px;
  color: #444;
  margin-bottom: 40px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.client-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  align-items: center;
}

.client-logos img {
  max-height: 100px;
  max-width: 155px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(13%) sepia(71%) saturate(647%) hue-rotate(180deg) brightness(95%) contrast(92%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.client-logos img:hover {
  filter: none;
  transform: scale(1.05);
}
  
  /* Footer */
  .footer {
    background-color: #002147;
    color: #fff;
    font-size: 16px;
    padding: 60px 40px 20px;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    border-top: 1px solid #ccc;
    width: 100%;
    font-family: Vollkorn, sans-serif;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .footer-section {
    flex: 1;
    min-width: 200px;
  }

  .footer-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .footer-left ul {
    list-style: none;
    padding: 0;
  }

  .footer-left ul li {
    margin-bottom: 15px
  }


  .footer-left ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    margin-bottom: 20px;
  }
  
  .footer-left ul li a:hover {
    color: #fff;
  }
  
  .footer-center {
    display: flex;
    flex-direction: column;
    gap: 20px;
  } 

  .footer-center p {
    margin: 6px 0;
    margin-bottom: 15px
  }

  .footer-logo-wrapper {
    max-width: 150px;
    margin-bottom: 1rem;
  }
  
  .footer-logo {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .footer-socials {
    display: flex;
    gap: 10px;
  }
  
  .social-icon {
    color: #ccc;
    transition: color 0.3s ease;
  }
  
  .social-icon:hover {
    color: #ae00ff; /* sesuai warna tema brand */
  }
  
  .footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  
  .footer-right .footer-logo,
  .footer-right .footer-socials {
    align-items: flex-end;
  }
  
  .footer-logo img {
    max-width: 100px; /* Atur ukuran logo */
    height: auto;
  }
  
  .footer-socials .iconify {
    width: 29px;
    height: 30px;
  }
  
  .footer-socials a:hover .iconify {
    color: #ae00ff; /* Sama kayak di atas, buat konsisten saat hover */
  }

  
  .footer .copyright {
    text-align: center;
    margin-top: 105px; /* jarak lebih jauh dari isi atasnya */
    padding-top: 20px; /* jarak antara garis dan teks */
    font-size: 14px;
    color: #999;
    border-top: 1px solid rgba(255, 255, 255, 0.2); /* garis putih tipis */
  }
  
  footer {
    background-color: #001c44;
    width: 100%;
    padding-bottom: 30px;
    margin-top: 1px; /* jarak dari elemen atas (foto) */
  }
  
  footer .copyright {
    text-align: center;
    font-size: 14px;
    color: #999;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
  }
  
  


/* === STYLE BUAT DI HP === */
@media (max-width: 768px) {
  /* HEADER */
  header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
  }

  .menu-toggle {
    display: block;
    font-size: 28px;
    cursor: pointer;
  }

  nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background: white;
    padding: 10px 0;
    position: absolute;
    top: 70px;
    left: 0;
    z-index: 999;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }

  nav.active {
    display: flex;
  }

  nav a {
    padding: 12px;
    font-size: 16px;
    border-top: 1px solid #eee;
  }

  /* ABOUT */
  .about {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
  }

  .about h2 {
    order: 1;
    font-size: 24px;
    margin-bottom: 20px;
  }

  .about-image {
    order: 2;
    width: 80%;
    margin-bottom: 20px;
  }

  .about-image img {
    width: 100%;
    max-width: 400px;
  }

  .about-text {
    order: 3;
    width: 100%;
    padding: 0;
  }

  /* HERO SECTION */
  .hero-content h1 {
    font-size: 30px;
  }

  /* SERVICES */
  .services h2 {
    font-size: 28px;
  }

  .card h3 {
    font-size: 18px;
  }

  /* GALLERY TWO-ROW SLIDER */
  .gallery {
    padding: 40px 12px;
  }

  .gallery-track {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(3, 1fr);
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    width: calc(100vw - 24px);
    margin: 0 auto;
  }

  .gallery-card {
    width: 270px;
    height: 160px;
    scroll-snap-align: start;
  }

  .gallery-card img {
    object-fit: cover;
  }

 /* CLIENT SECTION */
 .clients h2 {
  font-size: 24px;
}

.clients h2 span {
  font-size: 28px;
}

.clients p {
  font-size: 14px;
}

  /* FOOTER */
  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-logo-wrapper {
    margin: 0 auto 20px;
  }

  .footer-right {
    align-items: center;
  }

  .footer-socials {
    justify-content: center;
  }
}

/* TOGGLE MENU ICON DEFAULT */
.menu-toggle {
  display: none;
  color: #000;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
}