/* General */
:root {
    --dark: #1a1a1a;
    --brown: #74513c;
    --beige: #e8d9ca;
    --white: #ffffff;
    --gray: #333333;
    --glass-bg: rgba(26, 26, 26, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: 0.3s ease;
    --blur: blur(12px);
  }
  /* Regular */
  @font-face {
    font-family: 'TT Supermolot';
    src: url('../font/TTSupermolotNeueRegular.ttf') format('truetype');
    font-weight: 400; /* Normal */
    font-style: normal;
  }

  /* Bold */
  @font-face {
    font-family: 'TT Supermolot';
    src: url('../font/TTSupermolotNeueBold.ttf') format('truetype');
    font-weight: 700; /* Bold */
    font-style: normal;
  }

  /* Italic */
  @font-face {
    font-family: 'TT Supermolot';
    src: url('../font/TTSupermolotNeueItalic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  body { 
    background: #111; 
    color: white; 
    overflow-x: hidden; 
    /* font-family: 'Outfit', sans-serif; */
    font-family: 'TT Supermolot', sans-serif;
    line-height: 1.6;
  }

  /* General > Navbar */
  .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background: #1a1a1a80;
    transition: 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
  }
  
  .navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    display: flex;
    align-items: center;
    color:  var(--white);
    font-weight: 600;
    font-size: 1.2rem;
    text-decoration: none;
  }

  .logo img {
    margin-right: 10px;
  }

  .nav-links {
    display: flex;
    gap: 2rem;
  }

  .nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s;
    position: relative;
  }

  .nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    border-radius: 5px;
  }

  .nav-links a::after{
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    background-color: var(--brown);
    bottom: -4px;
    transition: width 0.3s;
    border-radius: 5px;
  }

  .nav-links a:hover {
    color: var(--white);
    transform: scale(1.05);
  }
  
  .nav-links a.active {
    font-weight: 600;
  }
      
  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    transition: 0.3s;
  }
  .hamburger span {
    width: 26px;
    height: 3px;
    background-color: var(--white);
    border-radius: 2px;
    transition: all 0.4s ease;
  }
  
  /* OPEN - Animated to X */
  .hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -5px);
  }
  
  /* Mobile */
  @media (max-width: 768px) {
    .hamburger {
      display: flex;
    }
  
    .nav-links {
      position: fixed;
      top: 0;
      right: -100%;
      width: 75%;
      max-width: 320px;
      height: 100vh;
      background: rgba(26, 26, 26, 0.95);
      backdrop-filter: blur(20px);
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 36px;
      padding: 40px 20px;
      transition: right 0.4s ease;
      box-shadow: -4px 0 12px rgba(0,0,0,0.4);
    }
  
    .nav-links.active {
      right: 0;
    }
  
    .nav-links a {
      font-size: 1.5rem;
      color: var(--beige);
      transition: color 0.3s ease;
    }
  
    .nav-links a:hover {
      color: var(--white);
    }
  
    /* Optional overlay (kalau mau bikin efek blur di belakang menu saat aktif) */
    .mobile-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.3);
      z-index: 998;
      backdrop-filter: blur(2px);
    }
    .mobile-overlay.active {
      display: block;
    }
  }
  /* General > Footer */
  footer {
    background-color: black;
    color: white;
    padding: 4rem 2rem;
    position: relative;
    border-top: 1px solid white;
    box-shadow:  
        0 -2px 5px rgba(255, 250, 0, 0.8), 
        0 -5px 15px rgba(255, 100, 0, 0.3);
  }

  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
  }

  .footer-brand h2 {
    color: white;
    text-align: left;
    margin-bottom: 1rem;
  }

  .footer-brand h3 {
    color: white;
    text-align: left;
    font-size: 1rem;
  }
  .footer-brand p {
    opacity: 0.8;
    line-height: 1.7;
  }

  .footer-links h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
  }

  .footer-links ul {
    list-style: none;
  }

  .footer-links li {
    margin-bottom: 0.8rem;
  }

  .footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
  }

  .footer-links a:hover {
    color: var(--secondary);
  }

  .footer-social h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 2rem;
  }

  .footer-social .social-icons {
    display: flex;
    gap: 1rem;
  }

  .footer-social img {
    width: 28px;
    height: 28px;
    transition: transform 0.3s;
  }

  .footer-social img:hover {
    transform: scale(1.2);
  }

  .footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.8;
  }
  