/* Reset dasar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    background-color: #fefefe;
    color: #333;
  }
  
  /* Container umum */
  .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
  }
  
  /* Header */
header {
    background-color: #2f2f2f;
    color: #fff;
    padding: 20px 0;
  }
  
  .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  
  header h1 {
    font-size: 1.8em;
    color: #fff;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
  }
  
  nav a:hover {
    color: #d4a373;
  }
  
  
  /* Hero section */
  .hero {
    background-image: url('https://images.unsplash.com/photo-1509042239860-f550ce710b93');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 120px 0;
    text-align: center;
  }
  
  .hero h2 {
    font-size: 3em;
    margin-bottom: 20px;
  }
  
  .hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
  }
  
  .btn {
    padding: 12px 25px;
    background-color: #d4a373;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
  }
  
  .btn:hover {
    background-color: #bc8a5f;
  }
  
  /* Varian kopi */
  .coffee-variants {
    padding: 60px 0;
    background-color: #f9f5f0;
    text-align: center;
  }
  
  .cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
    justify-content: center;
  }
  
  .card {
    background-color: #fff;
    padding: 25px;
    width: 300px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 8px;
    transition: transform 0.3s ease;
  }
  
  .card:hover {
    transform: translateY(-5px);
  }
  
  .card h3 {
    margin-bottom: 15px;
    color: #6b4f2f;
  }
  
  /* Kontak */
  .contact {
    padding: 60px 0;
    background-color: #fff;
    text-align: center;
  }
  
  .contact ul {
    list-style: none;
    margin-top: 20px;
  }
  
  .contact li {
    margin-bottom: 10px;
  }
  
  .contact a {
    color: #6b4f2f;
    text-decoration: none;
  }
  
  .contact a:hover {
    text-decoration: underline;
  }
  
  /* Footer */
  footer {
    background-color: #2f2f2f;
    color: #ccc;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    nav ul {
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
      }
  
    .cards {
      flex-direction: column;
      align-items: center;
    }
  
    header h1, nav {
      float: none;
      text-align: center;
    }
  }
  