@import url("https://fonts.googleapis.com/css2?family=Andada+Pro:ital,wght@0,400..840;1,400..840&family=Cormorant+SC:wght@300;400;500;600;700&family=Newsreader:ital,opsz,wght@0,6..72,200..800;1,6..72,200..800&family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --font-family: "Noto Serif", serif;
  --font-head: "Cormorant SC", serif;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background-color: #000;
}

/* Navbar */
.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 70px;
}

.nav-link ul {
  display: flex;
  gap: 4.5rem;
  list-style: none;
}

.nav-link ul li a {
  text-decoration: none;
  color: #fff;
  font-family: var(--font-family);
}

/* Responsive Navbar */
.respon-nav {
  display: none;
}

@media (max-width: 900px) {
  .respon-nav {
    display: flex;
    justify-content: space-between;
  }

  .navbar-container {
    display: none;
  }

  .footer-main-text {
    font-family: var(--font-head);
    color: #f3d382;
    font-size: 2rem !important;
  }

  .offcanvas-body ul {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .offcanvas-body ul li a {
    text-decoration: none;
    color: #fff;
    font-family: var(--font-family);
  }

  .hero-section {
    padding-left: 2rem !important;
  }

  .sect-text {
    font-size: 12px !important;
    color: #fff;
  }
}

/* Hero Section */
header {
  width: 100%;
  height: 75vh;
  position: relative;
  background-color: var(--overlay);
  border-radius: 0 0 20px 20px;
}

header::before {
  content: "";
  position: absolute;
  background: url(/MidTown_Banquet/images/banner.png) no-repeat center center /
    cover;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
}

.hero-section {
  padding-left: 10rem;
}

.hero-section .hero-text {
  color: #f3d382;
  font-family: var(--font-family);
  font-size: 4rem;
}

.book-btn {
  font-family: var(--font-family);
  padding: 10px;
  border: none;
  background-color: #f5be32;
  display: flex;
  gap: 16px;
  align-items: center;
}

/* Headings and Text */
.party-text {
  font-family: var(--font-head);
  color: #f3d382;
  font-size: 2.8rem;
  font-weight: bold;
}

.sect-text {
  font-size: 18px;
  color: #fff;
}

/* Images */
img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}

/* General Section and Container */
.section {
  margin: 0 auto;
  padding-block: 5rem;
}

.container {
  max-width: 75rem;
  height: auto;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

/* Swiper Buttons */
.swiper-button-next::after,
.swiper-button-prev::after {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 1rem;
  width: 2rem;
  height: 2rem;
  opacity: 0.75;
  border-radius: 50%;
  color: white;
  background: black;
}

/* Footer */
.footer-container {
  background: url("/MidTown_Banquet/images/footer-banneer.png") no-repeat
    center/cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  gap: 3rem;
}

.footer-main-text {
  font-family: var(--font-head);
  color: #f3d382;
  font-size: 4rem;
}

.section-loc {
  display: flex !important;
  gap: 1rem;
}

.section-icon {
  display: flex;
  gap: 1.5rem;
}

.footer-link ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  color: #fff;
  font-family: var(--font-head);
}

/* Reservation Button */
.res-btn button {
  padding: 1rem;
  border: none;
  background-color: #f5be32;
  font-family: var(--font-head);
  font-size: 1.1rem;
}

/* Toggle Button (Back to Top / WhatsApp) */
.toggle-up {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  display: none;
  z-index: 5;
  transition: all 0.4s linear;
  animation: dropToggle 1s cubic-bezier(0.61, 0.6, 0.6, 0.72) forwards;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}

.toggle-up .round a {
  width: 4rem;
  height: 4rem;
  background: #00ff44;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 6px;
}

.toggle-up .round a i {
  font-size: 3rem;
}

/* WhatsApp Text */
.whatsapp-content {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem 0;
}

.whatsapp-text {
  font-size: 3rem;
  color: #f3d382;
}
