:root {
  --primary-color: #5885AF;
  --second-color: #F6F8FB;
  --hover-color: #274472;
} 

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

body {
  font-family: "Gabarito", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
}
  
/* HERO */
.hero {
  position: relative;
  padding: 2rem;
  background: #5885AF;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1;
}

.hero-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap-reverse;
  z-index: 2;
  color: white;
}

.text {
  flex: 1;
  min-width: 280px;
}

.text h1 {
  font-family: "Meow Script", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

button#orderBtn {
  font-family: "Gabarito", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background-color: var(--second-color);
  color: #5885AF;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

button#orderBtn:hover {
  background-color: var(--primary-color);
  color: var(--second-color);
  border: 1px solid var(--second-color);
}

.hero-image img {
  width: 100%;
  max-width: 400px;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-image img.fade-in {
  opacity: 1;
}

/* THEME LIST */
.themes {
    padding: 3rem 2rem;
    background-color: #F6F8FB;
    text-align: center;
  }
  
  .themes h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
  }
  
  .theme-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  .theme-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    overflow: hidden;
    box-shadow: 0 4px 10px rgb(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
  }
  
  .theme-card:hover {
    transform: translateY(-5px);
  }
  
  .theme-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  
  .theme-card h3 {
    font-size: 1.25rem;
    margin: 1rem 0 0.5rem;
    color: #222;
  }
  
  .theme-card p {
    font-size: 0.95rem;
    padding: 0 1rem 1rem;
    color: #555;
  }
  
  .theme-card a {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s ease;
  }
  
  .theme-card a:hover {
    background-color: #274472;
  }
  
  /* FEATURES */
  .features {
    padding: 7rem 2rem;
    background-color: #fff;
    text-align: center;
    background-color: var(--primary-color);
    position: relative;
  }
  
  .wave-down {
    position: absolute;
    top: -1px; /* Supaya nutup garis antar section */
    left: 0;
    width: 100%;
    height: auto;
    z-index: 1;
  }

  .container {
    position: relative;
    z-index: 2;
  }

  .features .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: white;
  }
  
  .feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .feature-item {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
  }
  
  .feature-item:hover {
    transform: translateY(-5px);
  }
  
  .feature-item h4 {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    color: #333;
  }
  
  .feature-item p {
    font-size: 0.95rem;
    color: #666;
  }
  
  /* FAQ */
  .faq {
    padding: 3rem 2rem;
    background-color: var(--second-color);
    text-align: center;
  }
  
  .faq h2 {
    font-family: "Gabarito", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
  }
  
  .faq-list {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
  }
  
  .faq-item {
    border-bottom: 1px solid #ccc;
    margin-bottom: 1rem;
  }
  
  .faq-question {
    width: 100%;
    padding: 1rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    font-family: "Gabarito", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
  }
  
  .faq-question::after {
    content: "+";
    position: absolute;
    right: 1rem;
    font-size: 1.2rem;
    transition: transform 0.3s;
  }
  
  .faq-question.active::after {
    transform: rotate(45deg);
  }
  
  .faq-answer {
    font-family: "Gabarito", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background-color: #f9f9f9;
    padding: 0 1rem;
  }
  
  .faq-answer p {
    padding: 1rem 0;
    margin: 0;
    color: #555;
  }
  
  /* CLIENT CAROUSEL */
  .client-carousel-auto {
    padding: 3rem 1rem;
    text-align: center;
    background-color: var(--second-color);
    overflow: hidden;
  }
  
  .client-carousel-auto h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
  }
  
  .carousel-track {
    display: flex;
    transition: transform 0.5s ease;
  }
  
  .carousel-track img {
    width: 200px;
    height: 200px;
    margin: 0 1rem;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
  }
  
  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }

  .footer {
    background: #f8f8f8;
    text-align: center;
    padding: 1.5rem 1rem;
    font-size: 0.9rem;
    color: #777;
    margin-top: 3rem;
  }
  
/* Responsive Mobile */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column-reverse;
  }

  button#orderBtn {
    border: 1px solid #5885AF;
  }

  .text h1 {
    font-size: 2rem;
  }

  .text p {
    font-size: 1rem;
  }
  .carousel-track img {
    margin: 0 0.5rem;
  }
}
