:root {
  --primary-color: #5E1675;
  --secondary-color: #AB0E86;
  --accent-color: #EE4266;
  --light-color: #FFCEE4;
  --dark-color: #59057B;
  --gradient-primary: linear-gradient(135deg, #AB0E86 0%, #5E1675 100%);
  --hover-color: #4A0F5C;
  --background-color: #FEFAE0;
  --text-color: #5E1675;
  --border-color: rgba(238, 66, 102, 0.2);
  --divider-color: rgba(94, 22, 117, 0.1);
  --shadow-color: rgba(94, 22, 117, 0.15);
  --highlight-color: #FFD23F;
  --main-font: 'Oswald', sans-serif;
  --alt-font: 'Lato', serif;
}

/* Neumorphism styles */
.neomorphic {
  background: var(--light-color);
  box-shadow: 10px 10px 20px rgba(94, 22, 117, 0.1), -10px -10px 20px rgba(255, 255, 255, 0.7);
  border-radius: 18px;
}

.neomorphic-inset {
  background: var(--light-color);
  box-shadow: inset 5px 5px 10px rgba(94, 22, 117, 0.1), inset -5px -5px 10px rgba(255, 255, 255, 0.7);
  border-radius: 14px;
}

/* Header responsive */
.header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2rem;
  background: var(--background-color);
  box-shadow: 0 3px 12px var(--shadow-color);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--primary-color);
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2.2rem;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  font-size: 1.05rem;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .header-nav {
    flex-direction: column;
  }

  .logo {
    order: 1;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    order: 2;
    margin-top: 1.2rem;
    gap: 1.2rem;
  }

  .nav-toggle:checked~.nav-menu,
  .nav-menu:target {
    display: flex;
  }
}

/* Footer responsive */
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.2rem;
  background: var(--dark-color);
  color: #fff;
}

.footer-links {
  display: flex;
  list-style: none;
  gap: 2.2rem;
  margin: 0;
  padding: 0;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  opacity: 0.82;
  transition: opacity 0.3s ease;
  font-size: 1.02rem;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--highlight-color);
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.2rem;
  }
}

footer img[alt="logo"] {
  filter: brightness(0) invert(1);
}