@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css');

:root {
  --primary-color: #59057B;
  --secondary-color: #D01257;
  --accent-color: #FB90B7;
  --light-color: #FFCEE4;
  --dark-color: #0F0766;
  --gradient-primary: linear-gradient(135deg, #59057B 0%, #D01257 100%);
  --hover-color: #E01171;
  --background-color: #FDFAFF;
  --text-color: #34495E;
  --border-color: rgba(208, 18, 87, 0.15);
  --divider-color: rgba(89, 5, 123, 0.1);
  --shadow-color: rgba(208, 18, 87, 0.2);
  --highlight-color: #FFEB00;
  --main-font: 'Montserrat', sans-serif;
  --alt-font: 'Roboto', sans-serif;
}

body { font-family: var(--alt-font); color: var(--text-color); background: var(--background-color); margin: 0; overflow-x: hidden; }
h1, h2, h3 { font-family: var(--main-font); font-weight: 800; text-transform: uppercase; }

/* Neumorphism Vibrant */
.vibrant-card {
  background: #fff;
  border-radius: 30px;
  box-shadow: 15px 15px 30px #f0e6f5, -10px -10px 25px #ffffff;
  padding: 35px;
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.vibrant-card:hover { transform: scale(1.05); border-color: var(--accent-color); }

header { background: var(--gradient-primary); padding: 10px 0; }
header .container { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; padding: 10px 20px; }
nav ul { display: flex; list-style: none; gap: 20px; }
nav a { color: #fff; text-decoration: none; font-weight: 700; font-size: 0.9rem; }

#menu-toggle { display: none; }
.hamburger { display: none; color: white; font-size: 28px; cursor: pointer; }

@media (max-width: 768px) {
  .hamburger { display: block; }
  .navigation { display: none; position: absolute; top: 70px; left: 0; width: 100%; background: var(--primary-color); padding: 30px; }
  #menu-toggle:checked ~ .navigation { display: block; }
  nav ul { flex-direction: column; text-align: center; }
}

footer { background: var(--dark-color); color: white; padding: 50px 0; }