/* Reset & Font */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", Arial, sans-serif;
}

body {
  background: #fffdf7;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Header */
header {
  background: #2c2c2c;
  color: #fff;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 3px 8px rgba(0,0,0,0.25);
}

.header-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.logo-text {
  font-size: 1.6rem;
  font-weight: bold;
  color: #ffd700;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
  color: #ffd700;
}

/* Hero */
.hero {
  background: linear-gradient(rgba(44,44,44,0.6), rgba(44,44,44,0.6)), 
              url("../gambar/waroeng rame rame.jpg") no-repeat center/cover;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.hero-content {
  max-width: 700px;
  animation: fadeIn 1.5s ease-in-out;
}

.site-title {
  font-size: 2.8rem;
  margin-bottom: 15px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

.tagline {
  font-size: 1.3rem;
  margin-bottom: 25px;
}

.btn-hero {
  background: #ffd700;
  color: #333;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-hero:hover {
  background: #e6c200;
  transform: scale(1.05);
}

/* Animasi */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Menu Gallery */
.menu-gallery {
  max-width: 1000px;
  margin: auto;
  padding: 60px 20px;
  text-align: center;
}

.menu-title {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #2c2c2c;
}

.menu-subtitle {
  color: #666;
  margin-bottom: 25px;
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  transition: transform 0.4s, box-shadow 0.4s;
}

.gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Kontak */
.kontak-container {
  background: #f8f8f8;
  text-align: center;
  padding: 60px 20px;
}

.kontak-container h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #2c2c2c;
}

.kontak-container p {
  font-size: 1rem;
  color: #555;
}

.sosmed {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s;
}


.btn.wa:hover {
  background: #1ebe57;
  transform: scale(1.05);
}

.btn.gojek:hover {
  background: #008f10;
  transform: scale(1.05);
}

/* Footer */
footer {
  text-align: center;
  background: #2c2c2c;
  color: #fff;
  padding: 20px 10px;
  font-size: 0.9rem;
  margin-top: 40px;
}

footer a {
  color: #ffd700;
  text-decoration: none;
}
