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

body {
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
  color: #333;
}

/* NAVBAR */
.navbar {
  background-color: #19423c;
  height: 80px;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 40px;
  position: fixed;
  top: 0;
  z-index: 1000;
  transition: top 0.3s ease;
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  font-weight: 700;
  font-size: 20px;
  color: #ffffff;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 32px;
}

.nav-menu li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease;
}

.nav-menu li a:hover {
  color: #f2ab04;
  font-weight: 500;
}

.nav-menu li a.active {
  color: #f2ab04;
  font-weight: 600;
  position: relative;
}

.nav-menu li a.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #f2ab04;
}

/* HERO */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  margin-top: 80px;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  z-index: 2;
}

.hero-text {
  position: absolute;
  bottom: 160px;
  left: 190px;
  color: white;
  z-index: 3;
}

.hero-text h1 {
  font-size: 80px;
  font-weight: 300;
  margin-bottom: 12px;
}

.hero-text p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  max-width: 314px;
}

/* SECTIONS */
.reveal-section {
  padding: 100px 20px;
  position: relative;
  border-top-left-radius: 45px;
  border-top-right-radius: 45px;
  z-index: 10;
  background-color: #f2f2f2;
}

.contact-form-section {
  background-color: #f2ab04;
    z-index: 5;
  position: relative;
  margin-top: -50px;
}

.contact-map {
  background-color: #ffd621;
    z-index: 6;
  position: relative;
  margin-top: -50px;
}

.contact-hours {
  background-color: #fff848;
    z-index: 6;
  position: relative;
  margin-top: -50px;
}

.form-container {
  background-color: #fff;
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 0 auto;
}

.form-container h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 24px;
  color: #333;
  text-align: center;
}

form input,
form textarea {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  
}

form input:focus,
form textarea:focus {
  border-color: #f2ab04;
  outline: none;
}

form textarea {
  height: 150px;
  resize: vertical;
}

form button {
  background-color: #c2621a;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

form button:hover {
  background-color: #a14f13;
  transform: scale(1.05);
}

.contact-map h2,
.contact-hours h2 {
  font-size: 28px;
  margin-bottom: 24px;
  text-align: center;
  color: #333;
}

.map-container {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    z-index: 5;
  position: relative;
  margin-top: -50px;
  margin: 0 auto;
}

.contact-hours ul {
  list-style: none;
  font-size: 16px;
  color: #444;
  text-align: center;
    z-index: 5;
  position: relative;
  margin-top: -50px;
  margin: 0 auto;
}

.order-cta {
  text-align: center;
  margin-top: 20px;
}

.order-button {
  background-color: #c2621a;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.order-button:hover {
  background-color: #a14f13;
  transform: scale(1.05);
}

/* FOOTER */
.footer {
  background-color: #1e1b1b;
  color: white;
  padding: 2rem;
  height: auto;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer h4 {
  margin-bottom: 0.8rem;
}

.footer p {
  color: white; /* atau warna lain sesuai tema kamu */
  text-decoration: none;
}
.footer p:hover {
  text-decoration: underline; /* opsional */
  color: #fff;
}