@import url("https://fonts.googleapis.com/css2?family=Kaisei+Tokumin:wght@400;500;700&family=Poppins:wght@300;400;500&display=swap");

:root {
  --lg-font: "Kaisei Tokumin", serif;
  --sm-font: "Poppins", sans-serif;
  /* --pink: #e5345b; */
  --pink: #fcb69f;
}

body {
  font-family: var(--sm-font);
  --pink: #fcb69f;
}

a {
  text-decoration: none;
  color: black;
}

/* button */
.bg-primary {
  background-color: var(--pink) !important;
}

.btn:not(.nav-btns button) {
  background-color: #fff;
  color: rgb(218, 66, 29);
  padding: 10px 28px;
  border-radius: 25px;
  border: 1px solid rgb(85, 85, 85);
}

.btn:not(.nav-btns button):hover {
  background-color: var(--pink);
  color: #fff;
  border-color: var(--pink);
}

.btn i {
  color: white;
}

/* text color */
.text-primary {
  color: var(--pink) !important;
}

/* navbar */
.navbar {
  -webkit-box-shadow: 0 3px 9px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 9px 3px rgba(0, 0, 0, 0.1);
  /* background-color: #ffecd2; */
  background-color: #0a0619;
}

/*   custom style to hide the navbar */

.navbar.hidden {
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
}

.navbar-brand img {
  width: 100px;
  margin: 0;
  padding: 0;
  border-radius: 50%;
}

.navbar-brand span {
  letter-spacing: 2px;
  font-family: var(--lg-font);
}

.blinking-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20%;
  animation: blink 1s infinite alternate;
}

@keyframes blink {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.6;
  }
}

.nav-link:hover {
  font: bold;
  color: var(--pink) !important;
  background-color: rgb(57, 214, 241);
  border-radius: 10px;
}

.nav-item {
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}

/* whatsapp-icon start */

.whatsapp-icon {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.whatsapp-icon img {
  width: 70px;
  height: 70px;
}

/* whatsapp-icon end */

/* special */
.special-list p {
  font-weight: bold;
}
.special-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 20px;
}

.special-img span {
  top: 20px;
  right: 20px;
}

.special-list .btn {
  padding: 8px 20px !important;
}

.special-img img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 250px;
  height: 200px;

  pointer-events: none;

  -moz-user-drag: none;
  -webkit-user-drag: none;
}

.special-img:hover img {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

header {
  margin-top: 110px;
  width: 100%;
  background-color: #fcb69f;
}

/* title */

.title h2::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 50px;
  background-color: #0a0619;
  left: -20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.btn {
  margin-top: 10px;
}

/* footer */
footer .brand {
  font-family: var(--lg-font);
  letter-spacing: 2px;
}

footer a {
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--pink) !important;
}

footer p {
  font-size: 12px;
  color: white;
}

footer {
  margin-top: 20px;
  background-color: #0a0619;
}

section {
  background-color: #fcb69f;
}

/* media queries */
@media (min-width: 992px) {
  .nav-item {
    border-bottom: none;
  }
}
