@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --pink: #f19bb8;
  --dark: #111216;
  --text: #3a3a3a;
  --nav-text: #ffffff;
  --nav-height: 270px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', -apple-system, system-ui, sans-serif;
  color: var(--text);
}

/* ===== STATIC NAVIGATION - IDENTICAL ON ALL PAGES ===== */
nav {
  position: relative;
  background: #000;
  border-bottom: 1px solid #333;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.98);
  height: var(--nav-height);
  display: flex;
  align-items: center;
}

.nav-container {
  width: 100%;
  max-width: 100%;
  padding: 0 40px;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Logo placed as a nav item — no text-link hover effects */
.logo-item {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 20px;
  list-style: none;
}

.logo-item::before {
  content: none;
}

.logo-item a,
.logo-item a::after {
  display: none;
}

.logo-item .logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 276px;
  width: auto;
  display: block;
}

.menu-left,
.menu-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  list-style: none;
  flex: 1;
}

.menu-left li,
.menu-right li {
  list-style: none;
  border-left: none;
  padding-left: 0;
  margin: 0;
}

.menu-left li::before,
.menu-right li::before {
  content: none;
}

.menu-left a,
.menu-right a {
  text-decoration: none;
  color: #000000;
  font-family: 'Outfit', -apple-system, system-ui, sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: uppercase;
  width: 180px;
  height: 44px;
  background: var(--pink);
  border-radius: 0;
}

.menu-left a:hover,
.menu-right a:hover {
  background: #e87fa5;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(241, 155, 184, 0.4);
}

.menu-left a::after,
.menu-right a::after {
  content: none;
}

.cta-btn {
  background: var(--pink);
  color: #fff;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  flex-shrink: 0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta-btn:hover {
  background: #e87fa5;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(241, 155, 184, 0.3);
}

/* Ensure no page shift */
html, body {
  width: 100%;
  overflow-x: hidden;
}

main {
  padding-top: 0;
}

@media (max-width: 768px) {
  :root {
    --nav-height: 200px;
  }

  .nav-container {
    padding: 0 12px;
  }

  .menu-left a,
  .menu-right a {
    width: 130px;
    height: 37px;
    font-size: 18px;
  }

  .logo-item {
    padding: 0 8px;
  }

  .logo-img {
    height: 190px;
  }
}

@media (max-width: 480px) {
  :root {
    --nav-height: 160px;
  }

  .menu-left a,
  .menu-right a {
    width: 100px;
    height: 33px;
    font-size: 15px;
    letter-spacing: 0.3px;
  }

  .logo-img {
    height: 141px;
  }
}