/* Styles communs pour GeneOne */
body {
    background: linear-gradient(135deg, #e0f2e9 0%, #eafaf1 100%);
    min-height: 100vh;
    font-family: 'Segoe UI', sans-serif;
    color: #144d3c;
    padding-top: 30px;
}

.navbar {
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 2px 12px 0 rgba(60, 80, 60, 0.08);
}

.logo-beta {
    width: 140px;
    height: 50px;
    object-fit: contain;
}

.badge-beta {
    font-size: 0.75rem;
    background: #1ba167;
    color: #fff;
    border-radius: 3px;
    padding: 2px 8px;
    margin-left: 6px;
    letter-spacing: 1px;
    vertical-align: top;
}

/* Pour une touche végétale élégante */
.hero-bg {
    background: no-repeat right bottom/30%, linear-gradient(120deg, #e1f8e6, #b6ffc4 80%);
    border-radius: 1.2rem;
}

.leaf-divider {
    width: 90px;
    height: 30px;
    display: block;
    margin: 0 auto 2rem;
    filter: drop-shadow(0 2px 4px #aadbab88);
}

.btn-cta {
    background: linear-gradient(90deg, #24bf60, #10994a 100%);
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.025em;
    border: none;
    border-radius: 4px;
    box-shadow: 0 4px 14px rgba(20, 96, 54, 0.13);
    transition: 0.19s;
}

.btn-cta:hover {
    filter: brightness(1.09);
    box-shadow: 0 6px 26px rgba(22, 128, 64, 0.22);
    color: #fff;
}

/* Carousel et animation */
.carousel-img {
    border-radius: 1rem;
    object-fit: contain;
    height: auto;
    min-height: 200px;
    max-height: 340px;
    box-shadow: 0 6px 24px 0 #71ba929f;
}

/* Section info */
.section-infos {
    background: #f8fff6;
    border-radius: 1.1rem;
    box-shadow: 0 6px 24px 0 #b1e9c87c;
    margin-bottom: 2rem;
}

.icon-gedcom {
    width: 2.5em;
    height: 2.5em;
    display: inline-block;
    margin-right: 0.4em;
    vertical-align: -0.39em;
    background: linear-gradient(120deg, #b6ffc4, #63c587 70%);
    border-radius: 50%;
    text-align: center;
    font-weight: bold;
    font-size: 1.35em;
    color: #18734d;
    box-shadow: 0 2px 7px #65c573a3;
}

/* Footer végétal */
.footer-plant {
    background: linear-gradient(0deg, #e3fff0 90%, #f4fcf9 100%);
    border-top: 3px solid #61cc85;
    color: #328160;
}

/* Petites touches végétales animées */
.floating-leaf {
    position: absolute;
    width: 48px;
    animation: floating 3.2s infinite ease-in-out alternate;
    z-index: 2;
}

.floating-leaf2 {
    left: 95vw;
    top: 13vh;
    animation-delay: 1s;
}

@keyframes floating {
    from {
        transform: translateY(0) rotate(-8deg);
    }
    to {
        transform: translateY(28px) rotate(8deg);
    }
}