/* style.css */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css');

:root {
  --primary-color: #5E1675;
  --secondary-color: #337357;
  --accent-color: #EE4266;
  --light-color: #F8F9FA;
  --dark-color: #2D0A38;
  --gradient-primary: linear-gradient(135deg, #5E1675 0%, #337357 100%);
  --hover-color: #FFD23F;
  --background-color: #FFFFFF;
  --text-color: #4A5568;
  --border-color: rgba(94, 22, 117, 0.15);
  --divider-color: rgba(51, 115, 87, 0.1);
  --shadow-color: rgba(94, 22, 117, 0.1);
  --highlight-color: #FFD23F;
  --main-font: 'Playfair Display', serif;
  --alt-font: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--alt-font);
    color: var(--text-color);
    background-color: var(--background-color);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--main-font);
}

.content-section, .features-section, .divider-section, .cta-section, .testimonials-section, .form-promo-section, .contact-section, .faq-section {
    padding-top: 10dvh;
    padding-bottom: 10dvh;
}

.hover-underline {
    transition: color 0.3s ease;
}

.hover-underline:hover {
    color: var(--hover-color) !important;
}

#burger-menu:checked ~ .navigation {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    padding: 20px 0;
    z-index: 50;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

#burger-menu:checked ~ .navigation ul {
    flex-direction: column;
    align-items: center;
}

#burger-menu:checked ~ .navigation ul li {
    margin: 15px 0 !important;
}

@media (max-width: 768px) {
    .navigation {
        display: none;
    }
}

.feature-item, .testimonial-card {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.feature-item:hover, .testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(94, 22, 117, 0.2) !important;
}

.faq-item {
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.faq-item:hover {
    background-color: #FFFFFF !important;
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

summary::-webkit-details-marker {
    display: none;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--accent-color) !important;
    box-shadow: 0 0 0 3px rgba(238, 66, 102, 0.2);
}

button[type="submit"]:hover, a.inline-block:hover {
    opacity: 0.9;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2) !important;
}