/* ======================================
   CUSTOM STYLES FOR muyNATURAL
   ====================================== */

/* Font families */
:root {
    --font-inter: 'Inter', sans-serif;
    --font-playfair: 'Playfair Display', serif;
    --color-primary: #1F7D54;
    --color-secondary: #10B981;
    --color-accent-amber: #FBBF24;
    --color-accent-rose: #FB7185;
    --color-accent-sky: #38BDF8;
    --color-accent-violet: #C084FC;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-inter);
    line-height: 1.6;
    color: #1F2937;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-playfair);
    font-weight: 600;
}

.font-inter {
    font-family: var(--font-inter);
}

.font-playfair {
    font-family: var(--font-playfair);
}

/* Hero Gradient */
.hero-gradient {
    background: linear-gradient(135deg, #1F7D54 0%, #10B981 50%, #059669 100%);
}

/* Smooth transitions */
a {
    transition: all 0.3s ease;
}

button {
    transition: all 0.3s ease;
}

/* Header styles */
header {
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
}

/* Mobile menu animation */
#mobile-menu {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Profile cards hover effect */
.profile-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

/* CTA Buttons */
.btn-primary {
    background-color: var(--color-primary);
    color: white;
    border: none;
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--color-secondary);
    box-shadow: 0 10px 25px rgba(31, 125, 84, 0.2);
}

/* Social proof bar animation */
.social-proof-item {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section spacing */
section {
    overflow: hidden;
}

/* Responsive padding */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.875rem;
    }
}

/* Footer links styling */
footer a {
    color: #D1D5DB;
}

footer a:hover {
    color: white;
}

/* Step numbers styling */
.step-number {
    width: 4rem;
    height: 4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
}

/* Profile badge colors */
.profile-amber {
    border-top-color: var(--color-accent-amber);
}

.profile-rose {
    border-top-color: var(--color-accent-rose);
}

.profile-sky {
    border-top-color: var(--color-accent-sky);
}

.profile-violet {
    border-top-color: var(--color-accent-violet);
}

/* Text utilities */
.text-primary {
    color: var(--color-primary);
}

.text-secondary {
    color: var(--color-secondary);
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ======================================
   QUIZ OPTION CARDS
   ====================================== */

.quiz-option {
    display: flex;
    align-items: center;
    width: 100%;
    text-align: left;
    padding: 1rem 1.25rem;
    border: 2px solid #E5E7EB;
    border-radius: 0.75rem;
    background-color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1rem;
    color: #1F2937;
}

.quiz-option:hover {
    border-color: var(--color-primary);
    background-color: #F0FDF4;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(31, 125, 84, 0.1);
}

.quiz-option.selected {
    border-color: var(--color-primary);
    background-color: #DCFCE7;
    box-shadow: 0 0 0 3px rgba(31, 125, 84, 0.15);
    font-weight: 500;
}

/* Shake animation for validation */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-8px); }
    40% { transform: translateX(8px); }
    60% { transform: translateX(-6px); }
    80% { transform: translateX(6px); }
}

.shake {
    animation: shake 0.4s ease-in-out;
}

/* Print styles */
@media print {
    header,
    footer {
        display: none;
    }
}
