/* Gesamter Bereich */
.love-services {
    background: linear-gradient(135deg, #fff3dc, #fdeaff);
    padding: 100px 20px;
    display: flex;
    justify-content: center;
}

/* Box sichtbar, romantisch, elegant */
.services-box {
    position: relative;
    width: 900px;
    background: rgba(252, 252, 252, 0.171);
    border: 1px solid rgba(255, 219, 167, 0.25);
    padding: 60px 70px;
    border-radius: 28px;
    backdrop-filter: blur(8px);
    box-shadow: 0 0 30px rgba(255, 200, 150, 0.1);
    overflow: hidden;
    animation: fadeIn 1.2s ease forwards;
}

/* Titel – Ms Madi */
.services-title {
    font-family: 'Bilbo', cursive;
    font-size: 60px;
    color: #8d5c68;
    text-align: center;
    margin-bottom: 40px;
}

/* Liste – sehr gut lesbar */
.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Schrift der Punkte: Great Vibes? Bilbo? -> Jetzt Great Vibes für romantischen Look */
.services-list li {
    font-family: 'Bilbo', cursive;
    font-size: 28px;
    color: #8d5c68;
    line-height: 1.7;
    margin: 15px 0;
    padding-left: 38px;
    position: relative;
}

/* Gold-Pfirsich-Bullets */
.services-list li::before {
    content: "❤️";
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(45deg, #a05e5e, #8d5c68);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 24px;
}

/* Deko-Lichter */
.decor-light {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 209, 150, 0.15), transparent 70%);
    filter: blur(30px);
}

.decor-top {
    top: -50px;
    left: -40px;
}

.decor-bottom {
    bottom: -50px;
    right: -40px;
}

/* Maus-Glow */
.glow-follow {
    position: absolute;
    width: 170px;
    height: 170px;
    background: radial-gradient(circle, rgba(255, 190, 120, 0.15), transparent 70%);
    pointer-events: none;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.services-box:hover .glow-follow {
    opacity: 0.9;
}

/* Einblenden */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}
