:root {
      --primary: #FF6B95;
      --primary-light: #FF8FAB;
      --dark: #0A0A0A;
      --dark-light: #1A1A1A;
      --text: #F5F5F5;
      --text-light: #E0E0E0;
      --text-gray: #A0A0A0;
      --glass-bg: rgba(255, 255, 255, 0.03);
      --glass-border: rgba(255, 255, 255, 0.08);
    }

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

    body {
      font-family: 'Inter', sans-serif;
      background: var(--dark);
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* Header */
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      padding: 20px 0;
      background: rgba(10, 10, 10, 0.9);
      backdrop-filter: blur(5px);
      border-bottom: 1px solid var(--glass-border);
    }

    .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      font-size: 24px;
      font-weight: 700;
      color: var(--primary);
      letter-spacing: 1px;
    }

    .nav-links {
      display: flex;
      gap: 30px;
    }

    .nav-links a {
      color: var(--text-light);
      text-decoration: none;
      font-weight: 500;
      font-size: 16px;
      transition: all 0.3s ease;
    }

    .nav-links a:hover {
      color: var(--primary);
    }

    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      color: var(--text-light);
      font-size: 24px;
      cursor: pointer;
    }

    /* Hero Section */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 120px 0 80px;
      position: relative;
    }

    .hero-content {
      display: flex;
      align-items: center;
      gap: 60px;
    }

    .hero-text {
      flex: 1;
    }

    .hero-title {
      font-size: 64px;
      font-weight: 700;
      line-height: 1.1;
      margin-bottom: 24px;
      color: var(--text-light);
    }

    .hero-title span {
      color: var(--primary);
    }

    .hero-subtitle {
      font-size: 20px;
      color: var(--text-gray);
      margin-bottom: 40px;
      max-width: 500px;
    }

    .hero-cta {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 16px 40px;
      background: var(--primary);
      color: var(--dark);
      font-weight: 600;
      font-size: 18px;
      text-decoration: none;
      border-radius: 50px;
      transition: all 0.3s ease;
    }

    .hero-cta:hover {
      background: var(--primary-light);
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(255, 107, 149, 0.3);
    }

    .hero-image {
      flex: 1;
      border-radius: 16px;
      overflow: hidden;
    }

    .hero-image img {
      width: 100%;
      height: auto;
      object-fit: cover;
    }

    /* Sections */
    section {
      padding: 100px 0;
    }

    .section-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .section-title {
      font-size: 40px;
      font-weight: 700;
      margin-bottom: 15px;
      color: var(--text-light);
    }

    .section-subtitle {
      font-size: 18px;
      color: var(--text-gray);
      max-width: 700px;
      margin: 0 auto;
    }

    /* Gallery */
    .gallery-filters {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-bottom: 40px;
      flex-wrap: wrap;
    }

    .filter-btn {
      padding: 10px 25px;
      background: var(--dark-light);
      border: none;
      color: var(--text-light);
      border-radius: 25px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .filter-btn.active, .filter-btn:hover {
      background: var(--primary);
      color: var(--dark);
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 25px;
    }

    .gallery-item {
      border-radius: 16px;
      overflow: hidden;
      position: relative;
      height: 300px;
      cursor: pointer;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .gallery-item:hover img {
      transform: scale(1.05);
    }

    .gallery-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 20px;
      background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
      transform: translateY(20px);
      opacity: 0;
      transition: all 0.3s ease;
    }

    .gallery-item:hover .gallery-overlay {
      transform: translateY(0);
      opacity: 1;
    }

    .gallery-title {
      font-weight: 600;
      font-size: 18px;
      margin-bottom: 5px;
    }

    .gallery-category {
      color: var(--primary);
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    /* Pricing */
    .pricing-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .pricing-card {
      background: var(--dark-light);
      border-radius: 16px;
      padding: 40px 30px;
      text-align: center;
      transition: all 0.4s ease;
    }

    .pricing-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    }

    .pricing-card.popular {
      border: 1px solid var(--primary);
    }

    .popular-badge {
      position: absolute;
      top: -15px;
      right: 20px;
      background: var(--primary);
      color: var(--dark);
      padding: 6px 20px;
      border-radius: 20px;
      font-weight: 600;
      font-size: 14px;
    }

    .pricing-title {
      font-size: 24px;
      font-weight: 600;
      margin-bottom: 15px;
      color: var(--text-light);
    }

    .pricing-price {
      font-size: 42px;
      font-weight: 700;
      margin-bottom: 25px;
      color: var(--primary);
    }

    .pricing-features {
      list-style: none;
      margin-bottom: 30px;
    }

    .pricing-features li {
      padding: 10px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .pricing-btn {
      display: inline-block;
      padding: 14px 30px;
      background: var(--primary);
      color: var(--dark);
      font-weight: 600;
      text-decoration: none;
      border-radius: 50px;
      transition: all 0.3s ease;
    }

    .pricing-btn:hover {
      background: var(--primary-light);
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(255, 107, 149, 0.3);
    }

    /* Booking */
    .booking {
      text-align: center;
      padding: 100px 0;
      background: linear-gradient(to bottom, var(--dark), var(--dark-light));
    }

    .booking-content {
      max-width: 700px;
      margin: 0 auto;
      padding: 60px;
      background: var(--dark-light);
      border-radius: 16px;
    }

    .booking-title {
      font-size: 42px;
      margin-bottom: 20px;
      color: var(--text-light);
    }

    .booking-text {
      font-size: 20px;
      margin-bottom: 40px;
      color: var(--text-gray);
    }

    .booking-btn {
      display: inline-flex;
      align-items: center;
      gap: 15px;
      padding: 18px 50px;
      background: var(--primary);
      color: var(--dark);
      font-size: 20px;
      font-weight: 600;
      text-decoration: none;
      border-radius: 50px;
      transition: all 0.3s ease;
    }

    .booking-btn:hover {
      background: var(--primary-light);
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(255, 107, 149, 0.4);
    }

    /* Instagram */
    .instagram-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 15px;
    }

    .instagram-item {
      height: 250px;
      border-radius: 16px;
      overflow: hidden;
    }

    .instagram-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

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

    .instagram-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-top: 40px;
      color: var(--primary);
      font-weight: 600;
      text-decoration: none;
      font-size: 18px;
      transition: all 0.3s ease;
    }

    .instagram-link:hover {
      color: var(--primary-light);
    }

@media (max-width: 768px) {
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}


    /* Location */
    .location-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }

    .map-container {
      height: 400px;
      border-radius: 16px;
      overflow: hidden;
    }

    .map-container iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    .location-info {
      padding: 30px;
      background: var(--dark-light);
      border-radius: 16px;
    }

    .location-title {
      font-size: 24px;
      font-weight: 600;
      margin-bottom: 25px;
      color: var(--text-light);
    }

    .location-detail {
      margin-bottom: 25px;
      padding-bottom: 25px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .location-detail h4 {
      font-size: 18px;
      margin-bottom: 10px;
      color: var(--text-light);
    }

    .location-detail p {
      color: var(--text-gray);
    }

    /* Footer */
    footer {
      padding: 80px 0 40px;
      background: var(--dark-light);
    }

    .footer-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 60px;
    }

    .footer-logo {
      font-size: 24px;
      font-weight: 700;
      color: var(--primary);
    }

    .footer-social {
      display: flex;
      gap: 20px;
    }

    .social-link {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: var(--dark);
      color: var(--primary);
      font-size: 20px;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .social-link:hover {
      background: var(--primary);
      color: var(--dark);
      transform: translateY(-5px);
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 30px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .copyright {
      color: var(--text-gray);
      font-size: 14px;
    }

.footer-bottom a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--dark);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 999;
}

.scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(255, 107, 149, 0.3);
}


    /* Responsive */
    @media (max-width: 992px) {
      .hero-content {
        flex-direction: column;
        text-align: center;
      }
      
      .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
      }
      
      .location-content {
        grid-template-columns: 1fr;
      }
      
      .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .nav-links {
        display: none;
      }
      
      .mobile-menu-btn {
        display: block;
      }
      
      .hero-title {
        font-size: 48px;
      }
      
      .section-title {
        font-size: 32px;
      }
      
      .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
      }
    }

    @media (max-width: 576px) {
      .hero-title {
        font-size: 36px;
      }
      
      .pricing-cards {
        grid-template-columns: 1fr;
      }
      
      .instagram-grid {
        grid-template-columns: 1fr;
      }
      
      .gallery-grid {
        grid-template-columns: 1fr;
      }
    }


header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.9);
  border-bottom: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}

body {
  padding-top: 80px; /* agar konten tidak tertutup header */
}

/* Nav tetap tampil di mobile */
.nav-links {
  display: flex;
  gap: 30px;
}
.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
}
.nav-links a:hover {
  color: var(--primary);
}

/* Tombol hamburger tetap */
.mobile-menu-btn {
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 24px;
  cursor: pointer;
  margin-left: 20px;
  display: block;
}

/* Overlay hamburger menu */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10,10,10,0.95);
  z-index: 2000;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.mobile-menu-overlay ul {
  list-style: none;
  padding: 0;
}
.mobile-menu-overlay li {
  margin: 22px 0;
}
.mobile-menu-overlay a {
  color: var(--primary);
  font-size: 22px;
  font-weight: 600;
  text-decoration: none;
  transition: color .3s;
}
.mobile-menu-overlay a:hover {
  color: var(--primary-light);
}
.close-menu-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 32px;
  cursor: pointer;
}

/* Responsive: nav tetap tampil di mobile, tombol hamburger juga tampil */
@media (max-width: 768px) {
  .nav-links {
    gap: 12px;
    font-size: 15px;
  }
  .header-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}




  header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
    background: transparent;
    backdrop-filter: none;
  }

  body.scrolled header {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
  }

  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    color: white;
  }

  .nav-links a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
  }

  .mobile-menu-btn i {
    color: white;
    font-size: 1.5rem;
  }












.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;

  /* Background glassmorphism pink */
  background: rgba(255, 107, 149, 0.2);  /* pink transparan */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255, 107, 149, 0.5);

  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 30px rgba(255, 107, 149, 0.1);
  color: var(--dark); /* warna ikon tetap default/dark */
}

.scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 107, 149, 0.5);
  background: rgba(255, 107, 149, 0.3);
  border-color: rgba(255, 107, 149, 0.7);
}

    
