/*
Theme Name: OceanWP Child Theme
Theme URI: https://oceanwp.org/
Description: OceanWP WordPress theme. Sample child theme.
Author: OceanWP
Author URI: https://oceanwp.org/
Template: oceanwp
Version: 1.0
*/

/* Parent stylesheet should be loaded from functions.php not using @import */

/**********************************************
*   AREA ANIMATION
**********************************************/
.tira404-animation {
    width: 100%;
    max-width: 360px;
    height: 360px;
    position: relative;
    margin: 0 auto;
    overflow: visible;
}

/* ---- IMAGE INITIALE (tombe + rebond) ---- */
.tiramisu-falling {
    width: 100%;
    position: absolute;
    top: -300px;
    left: 0;
    animation: fallBounce 1.6s ease-out forwards;
    z-index: 3;
}

@keyframes fallBounce {
    0% { top: -300px; transform: scale(1) rotate(0deg); }
    70% { top: 40px; transform: scale(1.03); }
    85% { top: 10px; }
    100% { top: 20px; opacity: 0; }
}

/* ---- SPLIT LEFT ---- */
.tiramisu-split-left {
    position: absolute;
    width: 50%;
    bottom: 20px;
    left: 25%;
    opacity: 0;
    animation: splitLeft 1s ease-out forwards;
    animation-delay: 1.5s;
}

@keyframes splitLeft {
    0% { opacity: 0; transform: translateX(0) rotate(0deg); }
    100% { opacity: 1; transform: translateX(-40px) rotate(-8deg); }
}

/* ---- SPLIT RIGHT ---- */
.tiramisu-split-right {
    position: absolute;
    width: 50%;
    bottom: 20px;
    right: 25%;
    opacity: 0;
    animation: splitRight 1s ease-out forwards;
    animation-delay: 1.5s;
}

@keyframes splitRight {
    0% { opacity: 0; transform: translateX(0) rotate(0deg); }
    100% { opacity: 1; transform: translateX(40px) rotate(8deg); }
}

/* ---- COULURE ---- */
.cream-drip {
    width: 50px;
    height: 70px;
    background: #d9c2a3;
    border-radius: 0 0 30px 30px;
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    opacity: 0;
    animation: drip 1.6s ease-out forwards;
    animation-delay: 1.8s;
}

@keyframes drip {
    0% { opacity: 0; height: 0; }
    100% { opacity: 1; height: 70px; }
}

/**********************************************
*   PARTICLES (miettes Spéculos)
**********************************************/
.crumbs span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #b57a33;
    border-radius: 50%;
    top: -40px;
    left: calc(20% + 60% * var(--i));
    animation: crumbFall 1.4s linear infinite;
    animation-delay: calc(var(--i) * 0.15s);
}

.crumbs span:nth-child(1) { --i: 0;}
.crumbs span:nth-child(2) { --i: 1;}
.crumbs span:nth-child(3) { --i: 2;}
.crumbs span:nth-child(4) { --i: 3;}
.crumbs span:nth-child(5) { --i: 4;}
.crumbs span:nth-child(6) { --i: 5;}
.crumbs span:nth-child(7) { --i: 6;}
.crumbs span:nth-child(8) { --i: 7;}
.crumbs span:nth-child(9) { --i: 8;}
.crumbs span:nth-child(10){ --i: 9;}

@keyframes crumbFall {
    0% { transform: translateY(0) scale(1); opacity: 1; }
    100% { transform: translateY(200px) scale(0.4); opacity: 0; }
}

