/* =============================
   Reset & Global
============================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --brown: #6f4e37;
  --brown-dark: #5c3f2d;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  scroll-behavior: smooth;
  background-color: #f9f9f9;
}

a {
  text-decoration: none;
}

/* =============================
   Container Hero Custom
============================= */
.hero .container {
  max-width: 900px;
  width: 90%;
  margin: 0 auto;
  text-align: center;
}


/* =============================
   Navbar
============================= */


.navbar-brand img {
  width: 60px;
  height: 60px;
  position: relative;
  top: -5px; /* naikkan logo 5px */
}


.navbar-brand img {
  width: 70px;
  height: 70px;
  margin-right: 0.6rem;
  
  
}

.nav-link {
  padding: 0.5rem 0.75rem;
}

@media (max-width: 576px) {
  .navbar-brand div span {
    text-align: center;
    font-size: 0.8rem;
  }
  .navbar-brand img {
    width: 50px;
    height: 50px;
  }
}

/* =============================
   Hero/Header Full Layar
============================= */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('background/hero.jpg') center/cover no-repeat;
  color: #fff;
  position: relative;
  padding: 0 1rem;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 0;
}

.hero > .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
  font-size: 1.2rem;
  margin-top: 15px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

/* =============================
   Section Titles
============================= */
section h2 {
  font-size: 2.5rem;
}

section h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

/* =============================
   Cards
============================= */
.card {
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Tentang Kami & Fasilitas */
.card-fasilitas {
  border: none;
  background: #fff;
  border-radius: 10px;
  padding: 25px 15px;
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.card-fasilitas:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.card-fasilitas i {
  font-size: 2.5rem;
  color: var(--brown);
  margin-bottom: 15px;
}

/* Cards Menu */
.card-menu img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.card-body h5 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.card-body p {
  font-size: 0.9rem;
}

/* Spot & Lokasi Cards */
.card img {
  object-fit: cover;
  width: 100%;
  height: auto;
}

/* =============================
   Buttons
============================= */
.btn-brown {
  background-color: var(--brown);
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: 0.3s;
}

.btn-brown:hover {
  background-color: var(--brown-dark);
  color: #fff;
}

/* =============================
   Footer
============================= */
footer {
  font-size: 0.9rem;
  text-align: center;
  padding: 1rem 0;
}

@media (max-width: 576px) {
  footer {
    font-size: 0.8rem;
  }
}

/* =============================
   Animasi Scroll
============================= */
.show {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: all 0.6s ease-in-out;
}

section, .card {
  opacity: 0;
  transform: translateY(50px);
}

/* =============================
   Responsive
============================= */
@media (max-width: 992px) {
  .hero h1 { font-size: 2.5rem; }
  .hero p { font-size: 1rem; }
  section h2 { font-size: 2rem; }
}

@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 0.9rem; }
  .card-fasilitas i { font-size: 2rem; }
}

@media (max-width: 576px) {
  .hero h1 { font-size: 1.6rem; }
  .hero p { font-size: 0.8rem; }
  .card-fasilitas h6 { font-size: 0.9rem; }
  .card-body h5 { font-size: 1rem; }
  .card-body p { font-size: 0.8rem; }
  .card-menu img { height: 150px; }
  section h2 { font-size: 1.8rem; }
  section h3 { font-size: 1.5rem; }
}
