/* Polices & Reset */
body,
h1,
h2,
p {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Fond général évoquant le papier ou la nature */
body {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8f0ea 100%);
    color: #2f4f4f;
    line-height: 1.6;
    padding: 20px;
}

/* Titre principal : sapin + style pliage */
h1 {
    text-align: center;
    color: #2e7d32;
    font-size: 2.5em;
    margin-bottom: 10px;
    text-shadow: 1px 1px 0 #c8e6c9;
}

/* Sous-titre */
h2 {
    color: #388e3c;
    text-align: center;
    margin-bottom: 20px;
}

/* Paragraphe principal */
p {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 30px auto;
    font-size: 1.2em;
}

/* Conteneur de la vidéo Instagram */
.video-insta {
    display: flex;
    justify-content: center;
    margin: 30px auto;
}

/* Style responsive Instagram */
.instagram-media {
    border-radius: 10px;
    border: 2px dashed #a5d6a7;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive design */
@media (max-width: 600px) {
    h1 {
        font-size: 2em;
    }

    p {
        font-size: 1em;
        padding: 0 10px;
    }
}

/* Animation subtile */
h1::after {
    content: " ✂️";
    animation: sapinBlink 2s infinite;
}

@keyframes sapinBlink {

    0%,
    100% {
        opacity: 0.2;
    }

    50% {
        opacity: 1;
    }
}

/* Décoration supplémentaire (facultatif) */
body::before {
    content: "";
    position: fixed;
    top: 10px;
    left: 10px;
    width: 60px;
    height: 60px;
    background: url('https://cdn-icons-png.flaticon.com/512/616/616408.png') no-repeat center;
    background-size: contain;
    opacity: 0.1;
    pointer-events: none;
}
