@font-face {
    font-family: 'AliceWonderland';
    src: url('fonts/Alice_in_Wonderland_3.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

html,
body {
    min-height: 100vh;
    margin: 0;
    font-family: 'AliceWonderland', sans-serif;
    background: url("images/asfdwse.jpeg") no-repeat center center fixed;
    background-size: cover;
    cursor: url("images/cursor.png"), auto;
    overflow-x: hidden;
}

.gallery-img {
    position: absolute;
}

/* Example placements */
.gallery-img.avery {
    top: 10%;
    left: 22%;
    width: 25%;
}

.gallery-img.unbirthday {
    top: 30%;
    left: 32%;
    width: 40%;
}

.gallery-img.halloween {
    top: 60%;
    left: 35%;
    width: 45%;
}

.gallery-img.alicefly {
    top: 10%;
    left: 20%;
    width: 18%;
}

.img-buttons {
    position: relative;
    width: 100%;
    height: 100vh;
}

.img-btn {
    position: absolute;
    cursor: url("images/cursor.png"), auto;
    transition: transform 0.15s ease, filter 0.15s ease;
}

.img-btn:hover {
    transform: scale(1.05);
}

.img-btn.active {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.img-btn.where {
    top: 5%;
    left: 2%;
    width: 18%;
    height: auto;
}

.img-btn.when {
    bottom: 3%;
    right: 2%;
    width: 16%;
    height: auto;
}

.img-btn.why {
    top: 2%;
    left: 80%;
    width: 22%;
}

.img-btn.what {
    top: 4%;
    left: 50%;
    width: 20%;
    filter: brightness(0.7);
}

/* WHO button specific */
.img-btn.who {
    bottom: 1%;
    left: 1%;
    width: 30%;
    height: auto;
    transition: transform 0.15s ease, filter 0.15s ease, opacity 0.5s ease;
}

/* On hover → swap to alicefly.png */
.img-btn.who:hover {
    content: url("images/alicefly.png");
    transform: scale(1.0);
    /* keeps your global hover scale */
}




/* SweetAlert2 */
.swal2-popup {
    border-radius: 20px;
    padding: 40px;
    font-family: 'AliceWonderland';
    width: 80vw !important;
    max-width: 1000px;
    height: 80vh;
    font-size: 5rem;
    color: #1e0335;
    word-break: keep-all;
    overflow-wrap: normal;
    white-space: normal;
}

.swal2-html-container {
    padding: 40px;
}

/* Custom backgrounds per button */
.swal-where {
    background: #fff url("images/where_button.png") no-repeat center center;
    background-size: cover;
}

.swal-when {
    background: #fff url("images/when_button.png") no-repeat center center;
    background-size: cover;
}

.swal-who {
    background: #fff url("images/who_button.png") no-repeat center center;
    background-size: cover;
}

.swal-why {
    background: #fff url("images/why_button.png") no-repeat center center;
    background-size: cover;
}

.swal-what {
    background: #fff url("images/what_button.png") no-repeat center center;
    background-size: cover;
}



/* tablets and phones (≤ 1024px) */
@media (max-width: 1024px) {
    .gallery-img.avery {
        width: 50%;
        left: 10%;
    }

    .gallery-img.unbirthday {
        width: 70%;
        left: 25%;
    }

    .gallery-img.halloween {
        width: 75%;
        left: 15%;
    }

    .img-btn {
        width: 25%;
    }
}