body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #b82323;
}

header {
  background-color: #0d0e0e;
  color: rgb(211, 22, 22);
  display: flex;
  justify-content: space-between;
  padding: 1rem 2rem;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav a {
  color: rgb(255, 255, 255);
  text-decoration: none;
}

.hero {
  background: url('hero-gym.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta {
  background-color: #ff6b00;
  padding: 0.75rem 1.5rem;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 1rem;
  display: inline-block;
}

.produk {
  padding: 50px 20px;
  text-align: center;
}

.produk-list {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.produk-item img {
    width: 100%;
    max-height: 180px;
    object-fit: cover;
    border-radius: 8px;
  }
  
footer {
  background-color: #20232a;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

.tentang, .kontak {
    padding: 50px 20px;
    text-align: center;
    background-color: #ffffff;
    margin-top: 2rem;
  }
  
  .tentang p, .kontak p {
    max-width: 600px;
    margin: 0 auto;
    color: #333;
    line-height: 1.6;
  }
  
  .form-kontak {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  .form-kontak input,
  .form-kontak textarea {
    width: 100%;
    max-width: 400px;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  .form-kontak button {
    background-color: #ff6b00;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }

  html {
    scroll-behavior: smooth;
  }
  
  header {
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  nav ul li a {
    color: #ffffff;
    text-decoration: none;
    padding: 8px 16px;
    display: inline-block;
    transition: color 0.3s, background-color 0.3s;
  }
  
  nav ul li a:hover {
    color: white;
    background-color: #ff6b00;
    border-radius: 5px;
  }

  .cta {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background-color: #ff6b00;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }  

  section {
    scroll-margin-top: 80px; /* Kasih jarak scroll biar nggak ketutup navbar */
  }

  .kontak-sosial {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .kontak-sosial a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s;
  }
  
  .kontak-sosial a:hover {
    color: #ff6b00;
  }
  
  .kontak-sosial img {
    width: 24px;
    height: 24px;
  }

  .produk-item img {
    transition: transform 0.3s ease;
    cursor: pointer;
  }
  
  .produk-item img:active {
    transform: scale(1.1);
  }

  .produk-item img:hover {
    transform: scale(1.05);
  }

  
  