:root {
  --primary-color: #8E44AD;
  --secondary-color: #5E1675;
  --accent-color: #D01257;
  --light-color: #FFCEE4;
  --dark-color: #59057B;
  --gradient-primary: linear-gradient(135deg, #8E44AD 0%, #5E1675 100%);
  --hover-color: #7938A3;
  --background-color: #FEFAE0;
  --text-color: #5E1675;
  --border-color: rgba(208, 18, 87, 0.2);
  --divider-color: rgba(94, 22, 117, 0.1);
  --shadow-color: rgba(94, 22, 117, 0.15);
  --highlight-color: #FB90B7;
  --main-font: 'Lora', sans-serif;
  --alt-font: 'Roboto', serif;
}

/* Neumorphism styles */
.neuro-element {
  background: var(--background-color);
  border-radius: 20px;
  box-shadow:
    10px 10px 20px rgba(94, 22, 117, 0.1),
    -10px -10px 20px rgba(255, 255, 255, 0.8);
}

.neuro-inset {
  background: var(--background-color);
  border-radius: 15px;
  box-shadow:
    inset 8px 8px 16px rgba(94, 22, 117, 0.1),
    inset -8px -8px 16px rgba(255, 255, 255, 0.8);
}

.neuro-button {
  background: var(--background-color);
  border-radius: 15px;
  box-shadow:
    8px 8px 16px rgba(94, 22, 117, 0.1),
    -8px -8px 16px rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.neuro-button:hover {
  box-shadow:
    4px 4px 8px rgba(94, 22, 117, 0.15),
    -4px -4px 8px rgba(255, 255, 255, 0.9);
  transform: translateY(2px);
}

/* Header styles */
header {
  background: var(--background-color);
  box-shadow: 0 4px 15px var(--shadow-color);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--primary-color);
  margin: 4px 0;
  transition: 0.3s;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .navigation ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--background-color);
    flex-direction: column;
    box-shadow: 0 4px 15px var(--shadow-color);
    padding: 1rem 0;
  }

  .navigation.active ul {
    display: flex;
  }

  .logo {
    margin: 0 auto;
  }

  header {
    position: relative;
  }
}

/* Footer responsive styles */
footer {
  background: var(--dark-color);
  color: var(--light-color);
}

@media (max-width: 768px) {
  footer .container {
    flex-direction: column;
    text-align: center;
  }

  footer .logo {
    margin-bottom: 1.5rem;
  }

  footer nav ul {
    flex-direction: column;
    gap: 0.75rem;
  }
}

@media (min-width: 769px) {
  footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

/* Decorative background pattern */
.decorative-bg {
  position: relative;
  overflow: hidden;
}

.decorative-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 25% 60%, rgba(208, 18, 87, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 75% 30%, rgba(142, 68, 173, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 90%, rgba(251, 144, 183, 0.08) 0%, transparent 50%);
  pointer-events: none;
}