/* === GLOBAL RESET === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* === NAVBAR BASE === */
.navbar {
  background: linear-gradient(270deg, #9b7a42b5 10%, #423b27c1 100%);
  border-bottom: 2px solid #d4a14a;
  backdrop-filter: blur(6px); /* Soft glass blur */
  color: #ffffff;
  height: 100px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 3px 15px rgba(212, 161, 74, 0.2);
  transition: all 0.3s ease-in-out;
}

/* === NAVBAR CONTAINER === */
.navbar-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
  position: relative;
  margin: 0 auto;
}

/* === LOGO CONTAINER === */
.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-container:hover .logo {
  transform: scale(1.05);
  color: #d4a14a;
  transition: transform 0.3s ease, color 0.3s ease;
}
.logo-container:hover .logo span {
  color: #fff; /* Change this to your desired color */
  transition: color 0.3s ease;
}
.logo-container:hover .slogan {
  color: #ffffff;
  transition: color 0.3s ease;
}

/* === LOGO IMAGE === */
.logo-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(212, 161, 74, 0.4));
  transition: transform 0.3s ease;
}
.logo-img:hover {
  transform: scale(1.05);
}

/* === LOGO TEXT + SLOGAN === */
.logo-text {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start; /* left align under logo */
  line-height: 1.2;
  position: relative;
  text-align: left;
}

.logo {
  display: inline-block;
  font-family: "Cinzel", serif; /* elegant serif look */
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 1px;
  color: #ffffff;
}

.logo span {
  color: #d4a14a;
}

/* slogan matches logo width */
.slogan {
  display: block;
  width: 100%; /* matches logo width */
  text-align: left;
  font-size: clamp(
    0.9rem,
    1vw + 0.5rem,
    1.05rem
  ); /* 👈 responsive & balanced */
  font-weight: 500;
  color: #d4a14a;
  letter-spacing: 0.8px;
  margin-top: 6px;
  font-family: "Poppins", sans-serif;
  opacity: 0;
  transform: translateY(5px);
  animation: sloganFadeUp 1.2s ease forwards 0.6s;
  white-space: nowrap;
}

/* animation */
@keyframes sloganFadeUp {
  0% {
    opacity: 0;
    transform: scaleX(1.07) translateY(5px);
  }
  100% {
    opacity: 1;
    transform: scaleX(1.07) translateY(0);
  }
}

/* === MOBILE ADJUSTMENTS === */
@media screen and (max-width: 768px) {
  .logo-text {
    align-items: center;
    text-align: center;
  }

  .slogan {
    text-align: center;
    font-size: 0.75rem;
    margin-top: 3px;
  }
}

/* === NAV LINKS (DESKTOP) === */
.nav-links {
  list-style: none;
  display: flex;
  gap: 4rem;
  transition: all 0.3s ease;
  margin-left: auto;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
  padding-bottom: 4px;
}

.nav-links a:hover {
  color: #d4a14a;
  border-bottom: 2px solid #d4a14a;
}

.nav-links .current-menu-item > a {
  color: #d4a14a;
  border-bottom: 2px solid #d4a14a;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(212, 161, 74, 0.6);
}

/* === MENU ICON === */
.menu-icon {
  display: none;

  color: #d4a14a;
  font-size: 1.8rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.menu-icon:hover {
  transform: rotate(90deg);
}
@media screen and (max-width: 420px) {
  .logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .slogan {
    font-size: 0.65rem;
    white-space: nowrap;
  }
}
/* === RESPONSIVE DESIGN === */
@media screen and (max-width: 768px) {
  .menu-icon {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100px;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    transition: all 0.4s ease-in-out;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links a {
    font-size: 1.5rem;
  }

  .logo-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    flex-wrap: wrap;
  }

  .logo-text {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    width: fit-content; /* match logo text width */
    text-align: left;
  }

  .logo {
    font-size: 1.4rem;
    line-height: 1.1;
  }

  .logo span {
    font-size: 1.6rem;
  }

  .logo-img {
    width: 50px;
    height: 50px;
  }

  .slogan {
    display: block;
    width: 100%;
    text-align: left;
    font-size: clamp(0.86rem, 2vw + 0.3rem, 0.95rem);
    font-weight: 500;
    color: #d4a14a;
    letter-spacing: 0.8px;
    margin-top: 2px;
    white-space: nowrap;
  }
}
