html {
  scroll-behavior: smooth;
}

  /* ============================= */
/* NAVBAR */
/* ============================= */

.navbar {
  position: sticky;
  top: 0;
  background: #000;
  padding: 15px 20px;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.7);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: auto;
}

.brand {
  color: gold;
  font-weight: bold;
  font-size: 20px;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

.nav-menu a:hover {
  color: gold;
}

/* ============================= */
/* RESET & DASAR */
/* ============================= */

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #111, #1c1c1c);
  color: white;
}

section {
  padding: 60px 20px;
  animation: fadeIn 1s ease-in;
}

h2 {
  text-align: center;
  color: gold;
  font-size: 28px;
  margin-bottom: 30px;
}

/* ============================= */
/* HEADER */
/* ============================= */

header {
  text-align: center;
  padding: 80px 20px;
}

header h1 {
  font-size: 42px;
  color: gold;
  margin-bottom: 10px;
}

header p {
  color: #ccc;
  font-size: 18px;
}

.logo {
  width: 120px;
  margin-bottom: 20px;
}

/* ============================= */
/* ABOUT */
/* ============================= */

.about {
  max-width: 800px;
  margin: auto;
}

.about p {
  line-height: 1.8;
  color: #bbb;
  text-align: center;
}

/* ============================= */
/* INFO */
/* ============================= */

.info {
  text-align: center;
}

.info p {
  margin: 10px 0;
  color: #ccc;
}

/* ============================= */
/* MAP */
/* ============================= */

.map {
  max-width: 900px;
  margin: 40px auto;
}

.map iframe {
  width: 100%;
  border-radius: 15px;
}

/* ============================= */
/* LAYANAN */
/* ============================= */

.service-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: #1f1f1f;
  padding: 25px;
  border-radius: 15px;
  width: 250px;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 5px 20px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,215,0,0.2);
}

.card:hover {
  transform: translateY(-10px);
  background: #2a2a2a;
  box-shadow: 0 10px 30px rgba(255,215,0,0.3);
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  font-size: 18px;
  font-weight: bold;
  color: gold;
}

/* ============================= */
/* GALLERY */
/* ============================= */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  max-width: 900px;
  margin: auto;
}

.gallery-grid img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  transition: 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* ============================= */
/* BOOKING */
/* ============================= */

.booking {
  text-align: center;
}

.btn-wa {
  display: inline-block;
  padding: 15px 30px;
  background: gold;
  color: black;
  font-weight: bold;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s;
}

.btn-wa:hover {
  background: #ffd700;
  transform: scale(1.05);
}

/* ============================= */
/* ANIMASI */
/* ============================= */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ============================= */
/* HERO SECTION */
/* ============================= */

.hero {
  height: 90vh;
  background: url("img/barber-bg.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

.hero h1 {
  font-size: 60px;
  color: gold;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
  color: #ddd;
}

.btn-hero {
  padding: 15px 35px;
  background: gold;
  color: black;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-hero:hover {
  background: #ffd700;
  transform: scale(1.05);
}
/* ============================= */
/* REVIEW */
/* ============================= */

.review-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.review-card {
  background: #1f1f1f;
  padding: 25px;
  border-radius: 15px;
  width: 280px;
  text-align: center;
  transition: 0.3s;
  border: 1px solid rgba(255,215,0,0.2);
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(255,215,0,0.3);
}

.review-card p {
  font-style: italic;
  color: #ccc;
  margin-bottom: 15px;
}

.review-card h4 {
  color: gold;
  margin: 10px 0;
}

.review-card span {
  font-size: 14px;
  color: #aaa;
}
/* ============================= */
/* FOOTER */
/* ============================= */

footer {
  text-align: center;
  padding: 30px 20px;
  background: #000;
  margin-top: 50px;
  color: #aaa;
  font-size: 14px;
}
/* ============================= */
/* FOOTER */
/* ============================= */

.footer {
  background: #000;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.footer h3, .footer h4 {
  color: gold;
  margin-bottom: 15px;
}

.footer p {
  color: #bbb;
  font-size: 14px;
  line-height: 1.6;
}

.footer-social a {
  display: block;
  text-decoration: none;
  color: #ccc;
  margin-bottom: 8px;
  transition: 0.3s;
}

.footer-social a:hover {
  color: gold;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #222;
  margin-top: 40px;
  padding-top: 20px;
  font-size: 14px;
  color: #777;
}
/* ============================= */
/* FLOATING WHATSAPP */
/* ============================= */

.floating-wa {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25D366;
  color: white;
  font-size: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 5px 20px rgba(0,0,0,0.4);
  transition: 0.3s;
  z-index: 999;
}

.floating-wa:hover {
  transform: scale(1.1);
}
.owner {
  padding: 60px 20px;
  background: #111;
  color: white;
}

.owner-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.owner-image img {
  width: 250px;
  border-radius: 15px;
}

.owner-text {
  max-width: 500px;
}

.owner-text h3 {
  margin: 10px 0;
  color: gold;
}
