:root {
  --primary: #e53935; /* hot pink */
  --secondary: #98211f; /* soft pink */
  --light-bg: #fff0f0;
  --text: #333333;
  --text-muted: #777;
  --font-main: 'Poppins', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Open Sans', sans-serif;
}

body {
  background: var(--light-bg);
  color: var(--text);
}

.main-header {
  position: sticky;    /* ✅ Make sticky */
  top: 0;              /* ✅ Stick to top */
  z-index: 1000;       /* ✅ Sit above other content */
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff0f0;
  padding: 1rem 1rem;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.logo img {
  height: 100px;
}

.main-nav {
  background: #fff0f0;
  padding: 1rem 1rem;
  border-radius: 25px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  margin: 1rem auto;
  max-width: 1200px;
  position: relative;
  z-index: 10;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  flex-wrap: wrap;
  gap: 1.8rem;
  margin: 0 auto;
  padding: 0;
}

.nav-menu li {
  position: relative;
}

.nav-menu li a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.4rem 0.2rem;
}

.nav-menu li a:hover {
  color: var(--primary);
}

.nav-item.dropdown > a::after {
  content: " \25BE";
  font-size: 0.6rem;
  margin-left: 5px;
}

/* Dropdown Styling */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 140%;
  left: 0;
  background-color: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 0.5rem 0;
  min-width: 200px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  z-index: 999;
}

.dropdown-menu li a {
  display: block;
  padding: 0.75rem 1rem;
  color: #333;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.3s, color 0.3s;
}

.dropdown-menu li a:hover {
  background-color: #fbeaea;
  color: var(--primary);
}

.dropdown.show .dropdown-menu {
  display: block;
}

.nav-socials {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.nav-socials a {
  color: var(--primary);
  font-size: 1.2rem;
  transition: color 0.3s;
}

/* Mobile Responsive */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  margin-left: auto;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    width: 100%;
  }

  .nav-menu {
    display: none;
    width: 100%;
    flex-direction: column;
    padding: 1rem 0;
  }

  .nav-menu.show {
    display: flex;
  }

  .nav-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-socials {
    margin-top: 1rem;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 1rem;
  }
}
