body {
    font-family: Arial, sans-serif;
    padding: 0px;
    /*background: #faf7f2;*/
}

.wreath-container {
    position: relative;
    width: 1100px;
    height: 1100px;
    margin: 0 auto;
}

/* Keskne süda */
.center-heart {
    position: absolute;
    width: 320px;
    height: 320px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fbeff2;
    border-radius: 50%;
    border: 5px solid #d4a5b5;
    box-shadow: 0 0 40px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.heart-text {
    font-family: 'Lora', serif;
    font-size: 30px;
    font-weight: 600;
    color: #8a3a55;
    line-height: 1.3;
}

/* Aastaring */
.year-ring {
    position: absolute;
    width: 360px;
    height: 360px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid #d4a5b580;
    border-radius: 50%;
    pointer-events: none;
}

/* Õied */
.petal {
    position: absolute;
    width: 220px;
    height: 220px;
    display: block;
    opacity: 0;
    transform: scale(0.3);
    animation: bloom 1s ease-out forwards;
}
@keyframes bloom {
    from { opacity: 0; transform: scale(0.3); }
    to   { opacity: 1; transform: scale(1); }
}

.blob {
    width: 220px;
    height: 220px;
    overflow: hidden;
    background: url('folk_bg.svg');
    background-size: cover;
    mask-image: url('lillemask.svg');
    -webkit-mask-image: url('lillemask.svg');
    mask-size: cover;
    -webkit-mask-size: cover;
    position: relative;
}

.inner-circle {
    width: 160px;
    height: 160px;
    margin: 30px;
    border-radius: 50%;
    overflow: hidden;
}
.inner-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: .35s ease;
}
.petal:hover .inner-circle img {
    transform: scale(1.2);
}

/* Shine efekt */
.blob::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,.7), transparent);
    transform: translateX(-150%);
}
.petal:hover .blob::after {
    animation: shine 1.3s forwards;
}
@keyframes shine {
    0%   { transform: translateX(-150%); }
    100% { transform: translateX(150%); }
}

/* Aastaarvud ringil */
.year-label {
    position: absolute;
    transform: translate(-50%, -50%);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #5c3b47;
    pointer-events: none;
}
