/* ===== MAMA & BÉBÉ — Premium Website ===== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #FF6B9D;
    --primary-dark: #E5537F;
    --secondary: #FF8FA3;
    --accent: #4ECDC4;
    --background: #FFF5F8;
    --text: #4E342E;
    --text-light: #8D6E63;
    --white: #FFFFFF;
    --border: #FFC1E3;
    --glass: rgba(255, 255, 255, 0.7);
    --shadow: 0 8px 32px rgba(255, 107, 157, 0.15);
    --shadow-lg: 0 20px 60px rgba(255, 107, 157, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--background);
    overflow-x: hidden;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 193, 227, 0.3);
    transition: all 0.3s ease;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-container a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.3);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.1) rotate(-5deg);
}

h1 {
    color: var(--primary);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

nav {
    display: flex;
    gap: 0.5rem;
}

nav a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

nav a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8FA3 40%, #FFB6C8 70%, #FFDEE2 100%);
    color: var(--white);
    padding: 10rem 2rem 6rem;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(78, 205, 196, 0.1) 0%, transparent 50%);
    animation: float 15s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -30px) rotate(5deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(-3deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.hero-content h2 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.hero-content p {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.95;
    margin-bottom: 2.5rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    color: white;
    transition: all 0.3s ease;
    cursor: default;
}

.badge:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ===== FEATURES ===== */
.features {
    padding: 6rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.section-title p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 193, 227, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-card:hover::after {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== APP PREVIEW ===== */
.app-preview {
    background: linear-gradient(180deg, var(--background) 0%, #FFE8F0 100%);
    padding: 6rem 2rem;
    text-align: center;
}

.app-preview .logo-large {
    width: 120px;
    height: 120px;
    border-radius: 28px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
    transition: transform 0.5s ease;
}

.app-preview .logo-large:hover {
    transform: scale(1.05) rotate(-3deg);
}

/* ===== CONTENT (Legal / Support) ===== */
.content-container {
    max-width: 800px;
    margin: 8rem auto 3rem;
    padding: 3rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 193, 227, 0.15);
}

.content-container h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border);
}

.content-container h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.content-container p,
.content-container li {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
}

.content-container ul {
    padding-left: 1.5rem;
    margin: 0.5rem 0;
}

.content-container li {
    margin-bottom: 0.5rem;
}

.content-container a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px dashed var(--primary);
    transition: opacity 0.3s;
}

.content-container a:hover {
    opacity: 0.7;
}

.content-container hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, var(--border), transparent);
    margin: 2.5rem 0;
}

.legal-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--background);
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===== CONTACT ===== */
.contact-section {
    margin: 3rem 0;
    text-align: center;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white !important;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-button:visited,
.contact-button:active,
.contact-button:focus {
    color: white !important;
}

.contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.5);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: white !important;
}

.faq-item {
    text-align: left;
    margin-bottom: 1rem;
    padding: 1.2rem 1.5rem;
    background: var(--background);
    border-radius: 12px;
    border: 1px solid rgba(255, 193, 227, 0.2);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-item summary {
    font-weight: 600;
    cursor: pointer;
    color: var(--text);
    font-size: 1rem;
}

.faq-item p {
    margin-top: 0.75rem;
    font-size: 0.9rem;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, #2D2024 0%, #1A1215 100%);
    color: var(--white);
    padding: 3rem 2rem 2rem;
    text-align: center;
}

.footer-links {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
    background: rgba(255, 107, 157, 0.3);
}

.footer p {
    font-size: 0.85rem;
    opacity: 0.5;
    margin-top: 0.5rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .header {
        padding: 0.8rem 1.2rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    nav {
        gap: 0.25rem;
    }

    nav a {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }

    .hero {
        padding: 8rem 1.5rem 4rem;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .features {
        padding: 3rem 1.5rem;
    }

    .content-container {
        margin: 6rem 1rem 2rem;
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-badges {
        flex-direction: column;
        align-items: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}