/* ===== NAVBAR ===== */
.navbar {
  background: #c13d5a;
  padding: 14px 6%;
  position: sticky;
  top: 0;
  z-index: 9999;
}

/* GRID ALIGNMENT */
.nav-container {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
}

/* LOGO */
.logo {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-weight: 600;
    color: white;        /* OR */
  /* color: #be3d5b; */
  text-decoration: none;
}

/* LOGO FIX */
.logo,
.logo a {
  color: white !important;   /* or your brand color */
  text-decoration: none !important;
}

.logo-text {
  transition: all 0.35s ease;
}

.logo-text:hover {
  color: #fdecef;
  letter-spacing: 1.5px;
  transform: scale(1.05);
}

/* MENU */
.nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 500;
  position: relative;
  transition: transform 0.3s ease, background 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  background: white;
  color: #be3d5b;
  transform: translateY(-2px);
}

/* DROPDOWN */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translateX(-50%) scale(0.95);
  background: white;
  min-width: 180px;
  border-radius: 14px;
  padding: 8px 0;
  box-shadow: 0 25px 45px rgba(0,0,0,0.18);
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s ease;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  transform: translateX(-50%) scale(1);
  pointer-events: auto;
}

.dropdown-menu a {
  display: block;
  padding: 12px 18px;
  color: #333;
}

.dropdown-menu a:hover {
  background: #fdecef;
  padding-left: 24px;
}

/* SIGN IN BUTTON */
.nav-signin {
  background: white;
  color: #be3d5b;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.35s ease;
}

.nav-signin:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(244,166,184,0.45);
}

/* HAMBURGER (DESKTOP HIDDEN) */
.menu-toggle {
  display: none;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

  .nav-container {
    display: flex;
    justify-content: space-between;
  }

  /* SHOW HAMBURGER */
  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
  }

  /* PERFECT STRAIGHT LINES */
  .menu-toggle span {
    width: 26px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
  }

  /* MENU CARD */
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) scale(0.95);
    background: white;
    width: 92%;
    max-width: 320px;
    border-radius: 20px;
    padding: 18px 0;
    flex-direction: column;
    box-shadow: 0 30px 50px rgba(0,0,0,0.2);
    display: none;
  }

  .nav-menu.active {
    display: flex;
    transform: translateX(-50%) scale(1);
  }

  .nav-menu a {
    color: #333;
    width: 100%;
    text-align: center;
    padding: 14px;
  }

  /* DROPDOWN MOBILE */
  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    box-shadow: none;
    display: none;
    background: #fdecef;
    margin: 6px 14px;
  }

  .nav-dropdown.open .dropdown-menu {
    display: block;
  }

  /* HIDE DESKTOP SIGN IN */
  .nav-signin {
    display: none;
  }
}