.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

/* Hidden state */
.navbar.hide {
    transform: translateY(-100%);
}

.logo_width {
    width: 70%;
}

.dropdown-menu {
    background: transparent;
    border: none;
}

.dropdown-item {
    background: transparent;
    border: none;
}

.dropdown-item:focus,
.dropdown-item:hover {
    color: #FFF;
    background: transparent !important;
}

.text_paragraph {
    font-size: clamp(0.75rem, 0.7rem + 0.25vw, 1rem);
    text-transform: uppercase;
}

.navbar .custom-toggler {
    width: 48px;
    height: 48px;
    background-color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.navbar .custom-toggler-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 18px;
    height: 14px;
}

.navbar .custom-toggler-icon span {
    height: 2px;
    background-color: #fff;
}

.navbar-toggler {
    border: none;
}

.offcanvas {
    width: 80% !important;
    background-color: #fff7e7;
}

.nav_images {
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
    border-top-right-radius: 50%;
    border-bottom-right-radius: 0%;
    height: 20dvh;
    width: 60%;
}
.social-icons {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

/* Default state */
#mainNavbar {
  transition: all 0.3s ease;
  background-color: transparent;
  color: white;
}

/* When scrolling down */
#mainNavbar.scroll-up a {
  color: black !important;
}

/* Default style */
/* Default state */
#mainNavbar {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  background-color: transparent;
  transition: all 0.3s ease;
}

/* Default text */
#mainNavbar .nav-links a {
  color: white;
  transition: color 0.3s ease;
}

/* Hide when scrolling down (optional) */
#mainNavbar.hide {
  transform: translateY(-100%);
}

/* Scroll up: visible, background color changes */
#mainNavbar.scroll-up {
  background-color: rgba(255, 247, 231, 1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Text color on scroll up */
#mainNavbar.scroll-up .nav-links a {
  color: black !important;
}

/* Logo invert on scroll up */
#mainNavbar.scroll-up .logo {
  filter: invert(1);
}

/* Show light logo by default */
.logo-dark {
  display: none;
}
.logo-light {
  display: inline-block;
}

/* On scroll up, hide light logo and show dark logo */
#mainNavbar.scroll-up .logo-light {
  display: none;
}
#mainNavbar.scroll-up .logo-dark {
  display: inline-block;
}

/* When scrolling down, make text transparent */
#mainNavbar.scroll-down .nav-links a {
  color: transparent !important;
}

/* Optionally make logo or brand text transparent */
#mainNavbar.scroll-down .logo,
#mainNavbar.scroll-down .navbar-brand {
  color: transparent;
  filter: opacity(0.1); /* optional fading effect */
}

.custom-menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100%;
  background-color: #fdebd0; /* light beige */
  transform: translateX(100%);
  transition: transform 0.5s ease-in-out;
  z-index: 9999;
  overflow: hidden;
  padding: 40px;
}

.custom-menu-panel.open {
  transform: translateX(0);
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 28px;
  color: #555;
  cursor: pointer;
}

.menu-content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 100%;
}

.menu-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-links li {
  margin-bottom: 20px;
}

.menu-links a {
  text-decoration: none;
  font-size: 20px;
  color: #4c3d33;
  font-weight: 400;
  transition: color 0.3s ease;
}

.menu-links a:hover {
  color: #d87b2b;
}

.menu-image img {
  width: 65%;
  height: auto;
  border-radius: 150px 150px 0 0; /* custom arch style */
  object-fit: cover;
}