* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;

    font-family:
        "Bradley Hand",
        cursive;
}


body {
    background-color: #ffc0f1;
    background-image: url('../Assets/hearts-background.png');
    background-size: 700px;
    background-repeat: repeat;
    color: #3a2a2a;
}

.center-area {
    min-height: calc(100vh - 56px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.paper {
    background: #fff5f8;
    border: 2px dashed #ff8fb1;
    padding: 24px;
    width: 90%;
    max-width: 500px;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.2);
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin: 16px 0;
}

.photo-grid img {
    width: 100%;
    border: 3px solid #ffb6c1;
    transform: rotate(-1deg);
}

.center-controls {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 20px;
}

.btn {
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 0;
    border: 2px solid #000;
    cursor: pointer;
    box-shadow: 3px 3px 0 #000;
}

.btn.primary {
    background: #ff5c8a;
    color: #fff;
}

.btn.secondary {
    background: #fff;
    color: #000;
}

.btn:hover {
    transform: translate(-1px, -1px);
}

.photo-wrapper {
    position: relative;
    margin: 24px auto;
    max-width: 520px;
    width: 100%;
}


.photo-row {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.photo {
    width: 45%;
    background: #fff;
}

.photo.framed {
    border: 3px solid #ffb6c1;
    padding: 4px;
    box-shadow: 3px 3px 0 rgba(0,0,0,0.2);
}

.heart-overlay {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(60px, 18vw, 100px);
    pointer-events: none;
}

@media (max-width: 480px) {
    .photo-row {
        gap: 10px;
    }

    .photo {
        width: 48%;
    }

    .heart-overlay {
        top: 35%;
    }
}
