@media screen and (max-width: 768px) {
    body {
      max-width: 100vw;
      margin: 0;
      padding: 0;
      overflow-x: hidden;
    }
    
    /* Header/Navbar Responsive */
    header {
        height: 60px;
        width: 100%;
        box-sizing: border-box;
      }
      
      header .nav1 {
        margin: 0.5%;
        width: 99%;
        box-sizing: border-box;
      }
      
      #hamburger {
        display: block;
        color: #431353;
        font-size: 1.5rem;
        position: absolute;
        right: 5%;
        left: auto;
      }
      
      .menu{
        display:none;
      }
    
      .menu.show-menu {
        display: block;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #c8bdff;
        z-index: 1000;
        box-sizing: border-box;
      }
      
      .menu.show-menu ul {
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
        width: 100%;
        margin: 0;
        box-sizing: border-box;
      }
      
      .menu.show-menu ul li {
        margin: 0.5rem 0;
        width: 100%;
        text-align: center;
      }
    
      .nav-section img {
        width: 40px;
        height: 40px;
        margin: 1rem;
      }
      
      .nav-section2 h2 {
        font-size: 1rem;
      }
      
      .nav-section2 span {
        font-size: 0.8rem;
      }
    
    #hamburger {
      display: block;
      color: #431353;
      font-size: 1.5rem;
      cursor: pointer;
      margin-right: 1rem;
    }
    
    .menu {
      display: none;
    }
    
    .menu.show-menu {
      display: block;
      position: absolute;
      top: 60px;
      left: 0;
      width: 100%;
      background-color: #c8bdff;
      z-index: 1000;
      box-sizing: border-box;
    }
    
    .menu.show-menu ul {
      flex-direction: column;
      align-items: center;
      padding: 1rem 0;
      width: 100%;
      margin: 0;
      box-sizing: border-box;
    }
    
    .menu.show-menu ul li {
      margin: 0.5rem 0;
      width: 100%;
      text-align: center;
    }
    
    /* Coming Soon Section Responsive */
    .coming-soon {
      width: 100%;
      box-sizing: border-box;
      padding: 2rem 1rem;
    }
    
    .coming-soon .item {
      width: 100%;
      margin-top:20rem;
      margin-bottom:5rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      box-sizing: border-box;
    }
    
    .coming-soon .item h1 {
      font-size: 2rem;
      margin: 1rem 0;
    }
    
    .coming-soon .item .gambar1 {
      width: 80%;
      max-width: 300px;
      height: auto;
      margin: 1rem 0;
    }
    
    .countdown-container {
      width: 100%;
      max-width: 350px;
      margin: 1.5rem 0;
    }
    
    #countdown {
      display: flex;
      justify-content: space-between;
      width: 100%;
    }
    
    @keyframes numberChange {
      0% { transform: scale(1); }
      50% { transform: scale(1.1); }
      100% { transform: scale(1); }
  }
  
  .number-changing {
      animation: numberChange 0.3s ease-in-out;
  }
    footer.footer {
      padding: 0 !important; 
    }
      
    .countdown-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 22%;
    }
    
    .countdown-value {
      font-size: 1.5rem;
      font-weight: bold;
      background-color: rgba(200, 189, 255, 0.6);
      border-radius: 8px;
      width: 100%;
      padding: 0.5rem 0;
      margin-bottom: 0.5rem;
    }
    
    .countdown-label {
      font-size: 0.8rem;
    }
    
    .coming-soon .item h2 {
      font-size: 1.5rem;
      margin: 1rem 0;
      text-align: center;
    }
    
    .coming-soon .item h2 span {
      display: block;
      margin-top: 0.2rem;
    }
    
    .contact-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #b14de9;
      color: white;
      border: none;
      border-radius: 2rem;
      padding: 0.7rem 1.5rem;
      margin: 1.5rem 0;
      cursor: pointer;
      font-size: 1rem;
      width: 80%;
      max-width: 200px;
    }
    
    .contact-btn img {
      width: 20px;
      height: 20px;
      margin-right: 8px;
    }
    
 /* awal footer */
 .footer-content {
  display: none; /* Hide desktop layout on mobile */
}

.mobile-layout {
  display: flex; /* Show mobile layout on mobile */
}

.footer-sections {
  flex-direction: column;
}

.section {
  margin-bottom: 2rem;
}


/* akhir footer */
  }