section.greetings {
    position: relative;
    padding: 3rem 1rem;
    display: flex;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

/* Background Image Wrapper */
.greetings .bg-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.greetings .bg-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.greetings .bg-image-wrapper .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
}

.greetings .arch-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 280px;
    border-radius: 200px;
    padding: 5rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #713135;

    background: rgb(255 255 255 / 57%);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.9);
    border-left: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.1),
        inset 0 0 15px rgba(255, 255, 255, 0.6);
}

.greetings .intro-text {
    font-family: var(--montserrat, sans-serif);
    font-size: 13px;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 3.5rem;
}

.greetings .intro-text .tiny-flower {
    width: 30%;
    margin: 0 auto 15px auto;
    display: block;
    opacity: 0.8;
}

.greetings .person-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.greetings .person-card .image-wrapper {
    width: 160px;
    height: 230px;
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background-color: #e0d5c1;
}

.greetings .person-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.greetings .person-card .name {
    font-family: var(--satisfy, "Great Vibes", cursive);
    font-size: 34px;
    font-weight: normal;
    margin-bottom: 0.5rem;
    color: #713135;
}

.greetings .person-card .parent-info {
    font-family: var(--montserrat, sans-serif);
    font-size: 12px;
    line-height: 1.6;
    font-weight: 600;
    color: #713135;
}

.greetings .divider-ampersand {
    font-family: var(--satisfy, "Great Vibes", cursive);
    font-size: 45px;
    color: #713135;
    margin: 2.5rem 0;
    line-height: 1;
}

/* Ornamen */
.greetings .ornaments {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.greetings .ornaments img {
    position: absolute;
    width: 60%;
    max-width: 280px;
    object-fit: cover;
    opacity: 0.85;
}

.greetings .ornaments img:nth-child(1) {
    top: -1%;
    width: 45% !important;
    max-width: none !important;
    right: -2%;
    animation: rotateLeft 3s ease-in-out infinite alternate;
}

.greetings .ornaments img:nth-child(2) {
    top: -1%;
    width: 45% !important;
    max-width: none !important;
    left: -2%;
    animation: rotateRight 3s ease-in-out infinite alternate;
}

.greetings .ornaments img:nth-child(3) {
    width: 100% !important;
    max-width: none !important;
    bottom: 25%;
    right: -45%;
}

.greetings .ornaments img:nth-child(4) {
    width: 100% !important;
    max-width: none !important;
    bottom: 25%;
    left: -45%;
}

.greetings .ornaments img:nth-child(5) {
    width: 100% !important;
    max-width: none !important;
    bottom: 0;
}

.greetings .ornaments img:nth-child(6) {
    width: 60%;
    bottom: -1%;
    right: 0;
    animation: rotateLeft 3s ease-in-out infinite alternate;
}

.greetings .ornaments img:nth-child(7) {
    width: 60%;
    bottom: -1%;
    left: 0;
    animation: rotateRight 3s ease-in-out infinite alternate;
}
.greetings .ornaments img:nth-child(8) {
    width: 100%;
    bottom: -1%;
    left: 40%;
}

/* Keyframes Rotasi Bunga */
@keyframes rotateLeft {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(-4deg);
    }
}

@keyframes rotateRight {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(4deg);
    }
}

/* Responsive */
@media (max-width: 360px) {
    .greetings .arch-container {
        padding: 4rem 1.5rem;
        border-radius: 150px 150px 150px 150px;
    }

    .greetings .person-card .image-wrapper {
        width: 140px;
        height: 200px;
    }

    .greetings .person-card .name {
        font-size: 28px;
    }

    .greetings .divider-ampersand {
        font-size: 35px;
    }
}
