/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
    /*font-family:Poppins, Arial;*/
}

html,body { height:100%; }

body {
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color:#222;
  line-height:1.4;
}

/* ---- NAVBAR BASIC ---- */
.site-nav {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #eee;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}


.nav-inner {
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
}

.brand a {
  font-family: 'Cinzel', serif;
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
  color:#5a3a2e;
}

.nav-right {
  margin-left: auto;  
  display: flex;
  align-items: center;
}

/* MENU */
.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  color:#3e261d;
}
.nav-links li:hover {
  color: #d4a373;
  transform: translateX(4px);
}
/* HAMBURGER */
.hamburger {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color:#5a3a2e;
}

/* MOBILE */
@media (max-width: 860px) {
  .hamburger {
    display: block;
  }

  nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    transform: translateY(-300px);
    opacity: 0;
    transition: 0.3s ease;
    pointer-events: none;
  }

  nav.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    /*color: darkcyan;*/
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
  }
  .nav-links li:hover {
    transform: none;
  }
}



/* SCROLL TO TOP BUTTON */
#scrollTopBtn {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: #333;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(30px);
  transition: 0.4s ease;
  z-index: 999;
}















 /* ---------- FOOTER ---------- */

.site-footer {
  background: linear-gradient(180deg, #5a3a2e, #3e261d);
  color: #f3ece8;
  margin-top: 60px;
  padding: 60px 20px 30px;
  font-family: 'Poppins', sans-serif;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer-col h5 {
  color: #f8f3f0;
  margin-bottom: 16px;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #e0d4ce;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
}
.footer-col li a{
  text-decoration: none;
  font-size: 0.95rem;
  color: #e0d4ce;
}

.footer-col li:hover {
  color: #d4a373;
  transform: translateX(4px);
}

.copyright {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 0.85rem;
  color: #d6c7c0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col li:hover {
    transform: none;
  }
}

/*scrollTopBtn*/
#scrollTopBtn.show {
  opacity: 1;
  transform: translateY(0);
  background: linear-gradient(180deg, #5a3a2e, #3e261d);
}

/* INSTAGRAM BUTTON */
.instagram-btn {
  position: fixed;
  right: 25px;
  bottom: 90px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(45deg,#f58529,#dd2a7b,#8134af);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  z-index: 999;
  transition: transform 0.3s ease;
}

.instagram-btn:hover {
  transform: scale(1.1);
}
