@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

:root {
  --primary-color: #AB0E86;
  --secondary-color: #59057B;
  --accent-color: #3498DB;
  --light-color: #F2F2F2;
  --dark-color: #0F1021;
  --gradient-primary: linear-gradient(135deg, #AB0E86 0%, #59057B 100%);
  --hover-color: #8E0B6F;
  --background-color: #FFFFFF;
  --text-color: #333333;
  --border-color: rgba(171, 14, 134, 0.15);
  --divider-color: rgba(52, 152, 219, 0.1);
  --shadow-color: rgba(15, 16, 33, 0.08);
  --highlight-color: #FFEB00;
  --main-font: 'Merriweather', serif;
  --alt-font: 'PT Sans', sans-serif;
}

#menu-toggle:checked ~ .navigation {
    display: block !important;
}

@media (max-width: 768px) {
    .navigation { display: none; position: absolute; top: 70px; left: 0; width: 100%; background: var(--dark-color); padding: 20px; z-index: 100; }
    .navigation ul { flex-direction: column; text-align: center; }
    header .logo { margin: 0 auto; }
}

/* Elegant Neumorphism for cards */
#conseils div, #testimonials div, details {
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 20px 20px 60px #e6e6e6, -20px -20px 60px #ffffff;
    transition: transform 0.3s ease;
}

#conseils div:hover {
    transform: translateY(-5px);
    box-shadow: 25px 25px 50px #d9d9d9, -25px -25px 50px #ffffff;
}

/* Form styling */
input::placeholder { color: #ccc; }