/* ===========================
   AAKALYSS - Landing Page
   =========================== */

:root {
    --taupe-doux: #DCC8BE;
    --sable-chaud: #CDB3A3;
    --vieux-rose: #77625b;
    --brun-fonce: #5A3E2B;
    --blanc-creme: #FDF9F6;
    --blanc: #FFFFFF;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--brun-fonce);
    line-height: 1.6;
    background: var(--blanc-creme);
}

a {
    text-decoration: none;
    color: inherit;
}

.landing-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ===========================
   HERO
   =========================== */
.landing-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #C8A79D 0%, #D9C2B7 40%, #EDE0D8 100%);
    text-align: center;
    overflow: hidden;
}

.landing-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(90, 62, 43, 0.08) 100%);
}

/* Motif floral filigrane dans le hero */
.landing-hero::before,
.landing-hero::after {
    position: absolute;
    font-size: 8rem;
    color: var(--sable-chaud);
    opacity: 0.08;
    z-index: 0;
    pointer-events: none;
}

.landing-hero::before {
    content: "\2740\2767\2740";
    top: 8%;
    left: 5%;
    transform: rotate(-15deg);
    letter-spacing: 15px;
}

.landing-hero::after {
    content: "\2740\2767\2740";
    bottom: 8%;
    right: 5%;
    transform: rotate(15deg);
    letter-spacing: 15px;
}

.landing-hero-content {
    position: relative;
    z-index: 1;
    padding: 60px 30px;
    animation: fadeInUp 1.2s ease forwards;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 60vh;
}

.landing-logo {
    font-family: 'Playfair Display', serif;
    font-size: 7rem;
    font-weight: 700;
    letter-spacing: 14px;
    background: linear-gradient(135deg, var(--brun-fonce) 0%, var(--vieux-rose) 40%, var(--sable-chaud) 60%, var(--brun-fonce) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: logoShimmer 4s ease-in-out infinite;
    margin-bottom: 8px;
}

.landing-subtitle {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.3rem;
    color: var(--brun-fonce);
    margin-bottom: 30px;
}

.landing-divider {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--vieux-rose), transparent);
    margin: 0 auto 30px;
}

.landing-tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.3rem;
    color: var(--brun-fonce);
    max-width: 500px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.btn-instagram-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #833AB4, #C13584, #E1306C, #F56040, #FCAF45);
    color: #fff;
    border-radius: 35px;
    font-family: 'Lato', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(193, 53, 132, 0.3);
    animation: fadeInUp 1.8s ease forwards;
}

.btn-instagram-hero:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 30px rgba(193, 53, 132, 0.45);
    color: #fff;
}

/* ===========================
   CONCEPT
   =========================== */
.landing-concept {
    padding: 80px 0;
    background: var(--blanc-creme);
    text-align: center;
}

.landing-concept h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--brun-fonce);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

/* Ornement floral sous les titres */
.landing-concept h2::after {
    content: "\2767";
    display: block;
    text-align: center;
    font-size: 1rem;
    color: var(--sable-chaud);
    margin-top: 6px;
    letter-spacing: 8px;
}

.landing-ornament {
    text-align: center;
    margin: 0 auto 25px;
    position: relative;
    height: 30px;
    max-width: 300px;
}

.landing-ornament::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sable-chaud), var(--vieux-rose), var(--sable-chaud), transparent);
}

.landing-ornament::after {
    content: "\2740";
    position: relative;
    background: var(--blanc-creme);
    padding: 0 18px;
    font-size: 1.4rem;
    color: var(--vieux-rose);
    z-index: 1;
}

.landing-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
}

.landing-intro strong {
    font-weight: 400;
    color: var(--vieux-rose);
}

.landing-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.landing-pillar {
    padding: 35px 25px;
    background: linear-gradient(180deg, var(--taupe-doux), #EDE0D8);
    border-radius: 12px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Coins floraux discrets sur les cartes */
.landing-pillar::before {
    content: "\2740";
    position: absolute;
    top: 10px;
    right: 12px;
    font-size: 1rem;
    color: var(--vieux-rose);
    opacity: 0.15;
}

.landing-pillar::after {
    content: "\2740";
    position: absolute;
    bottom: 10px;
    left: 12px;
    font-size: 1rem;
    color: var(--vieux-rose);
    opacity: 0.15;
}

.landing-pillar:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(90, 62, 43, 0.12);
}

.pillar-icon {
    font-size: 2.5rem;
    color: var(--vieux-rose);
    margin-bottom: 15px;
}

.landing-pillar h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--brun-fonce);
    margin-bottom: 12px;
}

.landing-pillar p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--brun-fonce);
}

/* ===========================
   STORY / CITATION
   =========================== */
.landing-story {
    padding: 70px 0;
    background: linear-gradient(180deg, #D9C2B7, #EDE0D8);
    text-align: center;
    position: relative;
}

/* Fleurs en filigrane dans la section histoire */
.landing-story::before,
.landing-story::after {
    position: absolute;
    font-size: 4rem;
    color: var(--sable-chaud);
    opacity: 0.1;
    pointer-events: none;
}

.landing-story::before {
    content: "\2740 \2740";
    top: 20px;
    left: 30px;
    letter-spacing: 10px;
    transform: rotate(-10deg);
}

.landing-story::after {
    content: "\2740 \2740";
    bottom: 20px;
    right: 30px;
    letter-spacing: 10px;
    transform: rotate(10deg);
}

.landing-story .landing-ornament::after {
    background: #D9C2B7;
}

.landing-story blockquote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.6rem;
    color: var(--vieux-rose);
    max-width: 650px;
    margin: 0 auto 25px;
    line-height: 1.6;
    position: relative;
    padding: 0 40px;
}

.landing-story blockquote::before {
    content: "\201C";
    font-size: 3.5rem;
    color: var(--sable-chaud);
    position: absolute;
    top: -15px;
    left: 0;
}

.landing-story blockquote::after {
    content: "\201D";
    font-size: 3.5rem;
    color: var(--sable-chaud);
    position: absolute;
    bottom: -35px;
    right: 0;
}

.landing-story p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* Formulaire et section Instagram supprimés - CTA Instagram intégré au hero */

/* ===========================
   FOOTER
   =========================== */
.landing-footer {
    padding: 40px 0;
    background: var(--taupe-doux);
    text-align: center;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--brun-fonce);
    margin-bottom: 8px;
}

.landing-footer p {
    font-size: 0.95rem;
    color: var(--brun-fonce);
    margin-bottom: 5px;
}

.landing-footer a {
    color: var(--vieux-rose);
    transition: color 0.3s ease;
}

.landing-footer a:hover {
    color: var(--brun-fonce);
}

.footer-links {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 25px;
    font-size: 0.9rem;
}

.footer-links a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ===========================
   PETALES FLOTTANTS
   =========================== */
.petals {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.petal {
    position: absolute;
    border-radius: 50% 50% 50% 0;
    opacity: 0;
    animation: petalFall linear infinite;
    box-shadow: 0 2px 6px rgba(90, 62, 43, 0.2);
}

.petal--1 {
    left: 8%;
    background: linear-gradient(135deg, var(--brun-fonce), var(--vieux-rose));
    animation-duration: 11s;
    animation-delay: 0s;
    width: 22px;
    height: 30px;
}

.petal--2 {
    left: 22%;
    background: linear-gradient(135deg, var(--vieux-rose), var(--brun-fonce));
    animation-duration: 14s;
    animation-delay: 1.5s;
    width: 18px;
    height: 26px;
}

.petal--3 {
    left: 42%;
    background: linear-gradient(135deg, var(--brun-fonce), var(--sable-chaud));
    animation-duration: 10s;
    animation-delay: 3s;
    width: 28px;
    height: 38px;
}

.petal--4 {
    left: 58%;
    background: linear-gradient(135deg, var(--vieux-rose), var(--brun-fonce));
    animation-duration: 13s;
    animation-delay: 0.5s;
    width: 20px;
    height: 28px;
}

.petal--5 {
    left: 75%;
    background: linear-gradient(135deg, var(--brun-fonce), #6B4F3D);
    animation-duration: 12s;
    animation-delay: 2.5s;
    width: 24px;
    height: 34px;
}

.petal--6 {
    left: 33%;
    background: linear-gradient(135deg, var(--vieux-rose), var(--sable-chaud));
    animation-duration: 15s;
    animation-delay: 4s;
    width: 16px;
    height: 24px;
}

.petal--7 {
    left: 88%;
    background: linear-gradient(135deg, var(--brun-fonce), var(--vieux-rose));
    animation-duration: 9s;
    animation-delay: 6s;
    width: 20px;
    height: 30px;
}

@keyframes petalFall {
    0% {
        opacity: 0;
        transform: translateY(-30px) translateX(0) rotate(0deg) scale(1);
    }
    8% {
        opacity: 0.8;
    }
    25% {
        opacity: 0.7;
        transform: translateY(25vh) translateX(40px) rotate(120deg) scale(0.95);
    }
    50% {
        opacity: 0.55;
        transform: translateY(50vh) translateX(-30px) rotate(280deg) scale(0.85);
    }
    75% {
        opacity: 0.35;
        transform: translateY(75vh) translateX(35px) rotate(440deg) scale(0.7);
    }
    100% {
        opacity: 0;
        transform: translateY(100vh) translateX(-15px) rotate(600deg) scale(0.5);
    }
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logoShimmer {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 200% center; }
}

/* Fade-in au scroll */
.landing-concept,
.landing-story {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.landing-concept.visible,
.landing-story.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .landing-hero-content {
        animation: none;
    }
    .landing-concept,
    .landing-story {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .landing-pillar {
        transition: none;
    }
    .petal {
        display: none;
    }
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 768px) {
    .landing-logo {
        font-size: 3rem;
        letter-spacing: 6px;
    }

    .landing-tagline {
        font-size: 1.1rem;
    }

    .landing-concept h2 {
        font-size: 1.8rem;
    }

    .landing-pillars {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .landing-story blockquote {
        font-size: 1.3rem;
        padding: 0 25px;
    }
}

@media (max-width: 480px) {
    .landing-logo {
        font-size: 2.4rem;
        letter-spacing: 4px;
    }

    .landing-hero {
        min-height: 80vh;
    }
}
