@font-face {
  font-family: 'ROGFont';
  src: url('fonts/ROGLyonsTypeRegular3.ttf') format('truetype'); /* folder harus sesuai */
}

body {
  font-family: 'ROGFont', sans-serif;
  margin: 0;
  padding: 0;
  color: white;
  background: white;
  overflow-x: hidden;
}

/* Navbar */
.nav-bar {
  background: linear-gradient(90deg, #60cdf6, #f78db5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  height: 60px;
  width: 100%;
  box-sizing: border-box;
}

.nav-left, .nav-center, .nav-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-left {
  justify-content: flex-start;
}

.nav-right {
  justify-content: flex-end;
}

.nav-btn {
  color: white;
  font-family: 'ROGFont', sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  padding: 0.8rem 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  white-space: nowrap;
  background: none;
  border: none;
  transition: transform 0.2s ease;
}

.menu-item:hover {
  transform: scale(1.1);
}

.nav-brand {
  font-size: 1.6rem;
  font-weight: bold;
  background: linear-gradient(270deg, #60cdf6, #f78db5, #60cdf6);
  background-size: 600% 600%;
  animation: gradientMove 5s ease infinite;
  color: white;
  padding: 0.8rem 1.2rem;
  transition: background-position 0.5s ease, transform 0.3s ease;
}

.nav-brand:hover {
  background-position: right center;
  transform: scale(1.05);
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.menu-wrapper {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.menu-item {
  display: flex;
  align-items: center;
  height: 100%;
}

.dropdown-wrapper {
  position: relative;
  display: inline-block;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #60cdf6, #a89ad3);
  padding: 0.75rem 1rem;
  border-radius: 6px;
  z-index: 20;
  min-width: 200px;
  display: none;
  flex-direction: column;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.dropdown-wrapper:hover .dropdown {
  display: flex;
}

.dropdown a {
  display: block;
  padding: 0.5rem 0.75rem;
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
}

.dropdown a:hover {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
}

/* Hero */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4rem 1rem;
  text-align: center;
  min-height: 300px; /* Atur tinggi sesuai kebutuhan */
}

h1 {
  font-size: 5rem;
  background: linear-gradient(90deg, #60cdf6, #f78db5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  margin: 0;
}

.highlight {
  font-size: 3.5rem;
  background: linear-gradient(90deg, #f78db5, #60cdf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-dark {
  background: linear-gradient(180deg, #cb90b5, #60cdf6);
  padding: 3rem 1rem 6rem;
  text-align: center;
  position: relative;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.animated-gradient {
background: linear-gradient(270deg, #60cdf6, #f78db5, #60cdf6);
background-size: 600% 600%;
animation: gradientMove 5s ease infinite;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

@keyframes gradientMove {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}


.testimonial-grid-custom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.testimonial-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-right {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}

.testimonial-img {
  width: 100%;
  max-width: 360px;
  border-radius: 0.5rem;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  transition: transform 0.2s ease;
}

.testimonial-img:hover {
  transform: scale(1.03);
}

.popup-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-container {
  background: linear-gradient(90deg, #60cdf6, #f78db5);
  padding: 1rem;
  border-radius: 10px;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.popup-container img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 8px;
}

.close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: red;
  color: white;
  font-size: 24px;
  border: none;
  border-radius: 50%;
  padding: 5px 10px;
  cursor: pointer;
  z-index: 10;
}


.hidden {
  display: none;
}

.footer {
  text-align: center;
  background: linear-gradient(90deg, #f78db5, #60cdf6);
  padding: 2rem 1rem;
  font-family: 'ROGFont', sans-serif;
  margin-top: 0;
}

@media (max-width: 768px) {
  .nav-bar {
    flex-wrap: wrap;
    height: auto;
    padding: 1rem;
  }

  .menu-wrapper {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-brand {
    font-size: 1.2rem;
  }
}

/* RESPONSIVE HEADING */
.responsive-title {
  font-size: 3rem;
  text-align: center;
  line-height: 1.2;
  word-break: break-word;
}

@media (max-width: 768px) {
  .responsive-title {
    font-size: 1.8rem;
  }
}
.nav-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  gap: 8px;
}

.nav-left,
.nav-center,
.nav-right {
  flex: 1 1 100%;
  text-align: center;
}

@media (min-width: 768px) {
  .nav-left,
  .nav-center,
  .nav-right {
    flex: unset;
    text-align: unset;
  }

  .nav-bar {
    flex-wrap: nowrap;
    gap: 24px;
  }
}
/* ====== GENERAL RESET ====== */
body {
  margin: 0;
  padding: 0;
  font-family: 'ROGFont', sans-serif;
}

/* ====== NAVIGATION ====== */
.nav-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  background: linear-gradient(to right, #6dd5ed, #f093fb);
  color: white;
}

.nav-left, .nav-center, .nav-right {
  flex: 1 1 100%;
  text-align: center;
  margin: 5px 0;
}

.menu-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.nav-btn {
  cursor: pointer;
  font-weight: bold;
}

/* ====== HERO SECTION ====== */
.hero {
  padding: 40px 20px;
  text-align: center;
}

.responsive-title {
  font-size: 3rem;
  margin: 0;
  word-break: break-word;
}

.highlight {
  font-size: 1.5rem;
  display: block;
  margin-top: 10px;
}

/* ====== RESPONSIVE ====== */
@media (min-width: 768px) {
  .nav-bar {
    flex-wrap: nowrap;
  }

  .nav-left, .nav-center, .nav-right {
    flex: 1;
    text-align: left;
  }

  .menu-wrapper {
    justify-content: flex-start;
  }

  .responsive-title {
    font-size: 4rem;
  }
}

/* =====================
   DESKTOP FIX
   ===================== */
@media (min-width: 992px) {
  .nav-bar {
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
  }

  .nav-left, .nav-center, .nav-right {
    flex: unset;
    width: auto;
  }

  .nav-brand {
    font-size: 1.5rem;
  }

  .menu-wrapper {
    display: flex;
    gap: 25px;
  }

  .menu-item {
    padding: 8px 0;
  }

  .responsive-title {
    font-size: 3rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    word-spacing: 10px;
  }

  .highlight {
    font-size: 1.3rem;
    margin-top: 10px;
  }

  .hero {
    padding: 80px 0 40px;
  }
}
