
/* ========================= */
/* GLOBAL */
/* ========================= */

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
  font-family: 'Poppins', sans-serif;
  background: #fff;
  color: #222;
}

/* ========================= */
/* NAVBAR */
/* ========================= */

/* ========================= */
/* NAVBAR (TRANSPARENT GLASS STYLE) */
/* ========================= */



/* NAV OVERLAY (SOFT GLASS LOOK) */

/* ========================= */
/* NAVBAR (PINK GLASS STYLE) */
/* ========================= */

.navbar{
  width: 100%;
  padding: 22px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;

  /* transparent glass effect */
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;

  border-bottom: 1px solid rgba(255, 79, 163, 0.25);
}

/* LOGO */
.logo{
  font-size: 24px;
  font-weight: 700;
  color: #ff4fa3;
  letter-spacing: 0.5px;
}

/* MENU BUTTON */
.menu-btn{
  background: rgba(255, 79, 163, 0.85);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
  backdrop-filter: blur(6px);
}

.menu-btn:hover{
  background: #ff2f92;
  transform: translateY(-2px);
}

/* ========================= */
/* NAV OVERLAY (PINK GLASS FULL SCREEN) */
/* ========================= */

.nav-overlay{
  position: fixed;
  inset: 0;

  /* soft pink transparent layer */
  background: rgba(255, 240, 248, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  display: flex;
  justify-content: center;
  align-items: center;

  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
  z-index: 999;
}

.nav-overlay.active{
  opacity: 1;
  visibility: visible;
}

/* CENTER MENU */
.nav-center{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  text-align: center;
}

/* LINKS */
.nav-center a{
  font-size: 30px;
  font-weight: 600;
  color: #222;
  text-decoration: none;
  transition: 0.3s ease;
}

.nav-center a:hover{
  color: #ff4fa3;
  transform: scale(1.08);
}

/* ACTIVE LINK */
.nav-center a.active{
  color: #ff4fa3;
}

/* CLOSE BUTTON */
.close-btn{
  margin-top: 20px;
  background: #ff4fa3;
  color: white;
  border: none;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.close-btn:hover{
  background: #ff2f92;
  transform: translateY(-2px);
}


/* ========================= */
/* HERO */
/* ========================= */

.hero{
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 8% 60px;
  background:
    linear-gradient(rgba(0,0,0,0.55),rgba(0,0,0,0.55)),
    url("WhatsApp\ Image\ 2026-05-08\ at\ 21.52.47.jpeg")
    center/cover;
}

.hero h1{
  font-size: 50px;
  color: #ff4fa3;
}

.hero p{
  margin-top: 10px;
  max-width: 600px;
  color: #f0e7e7;
}

/* ========================= */
/* CONTACT SECTION */
/* ========================= */

.contact-section{
  padding: 80px 8%;
  background: #fff;
}

.contact-container{
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.contact-card{
  flex: 1;
  min-width: 300px;
  background: #fff;
  padding: 35px;
  border-radius: 16px;
  border: 1px solid #eee;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.contact-card:hover{
  transform: translateY(-6px);
  border-color: #ff4fa3;
}

.contact-card h2{
  color: #ff4fa3;
  margin-bottom: 20px;
}

/* ========================= */
/* HOURS */
/* ========================= */

.hours-box{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hour-row{
  display: flex;
  justify-content: space-between;
  padding: 14px;
  background: #f9f9f9;
  border-radius: 10px;
  font-size: 14px;
}

.hour-row.closed{
  background: #ffe6f2;
  color: #ff4fa3;
  font-weight: 600;
}

/* ========================= */
/* SOCIAL SECTION */
/* ========================= */

.social-section{
  text-align: center;
  padding: 80px 8%;
  background: #fff;
}

.social-section h2{
  font-size: 34px;
  color: #ff4fa3;
  margin-bottom: 30px;
}

.social-container{
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.social-container a{
  text-decoration: none;
  color: #222;
  background: #f5f5f5;
  padding: 12px 25px;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.3s;
  border: 1px solid transparent;
}

.social-container a:hover{
  background: #ff4fa3;
  color: white;
  transform: translateY(-5px);
}

/* ========================= */
/* FOOTER */
/* ========================= */

footer{
  text-align: center;
  padding: 20px;
  background: #fff;
  border-top: 1px solid #eee;
  color: #888;
}

/* ========================= */
/* MOBILE */
/* ========================= */

@media(max-width: 768px){

  .hero h1{
    font-size: 36px;
  }

  .contact-container{
    flex-direction: column;
  }

}