*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    background: #ffffff;
}

body {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
    overflow-y: auto;
}

/* Pozivnica 9:16 */
.pozivnica {
    position: relative;
    width: min(100vw, 56.25svh);
    aspect-ratio: 9 / 16;
    flex: 0 0 auto;
    overflow: hidden;
    background: #ffffff;
}

/* Pozadinska slika */
.background-img {
    position: absolute;
    inset: 0;
    display: block;
    width: 105%;
    height: 103%;
    margin-left: -10px;
    margin-top: -10px;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
    z-index: 1;
}

/* Nevidljiva klikabilna dugmad preko slike */
.image-button {
    position: absolute;
    display: block;
    border-radius: 999px;
    z-index: 2;
    cursor: pointer;
}

/* Dugme: Podelite sa nama vaše uspomene */
.upload-button {
    left: 15%;
    top: 56%;
    width: 70%;
    height: 7%;
}

/* Dugme: Foto galerija */
.gallery-button {
    left: 29%;
    top: 66%;
    width: 42%;
    height: 6%;
}

/* Footer */
.site-footer {
    width: min(100vw, 56.25svh);
    flex: 0 0 auto;
    margin: 0;
    padding: 8px 10px 14px;
    text-align: center;
    color: rgba(124, 99, 57, 0.5);
    background: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 14px;
    line-height: 1.3;
}

.site-footer a {
    color: inherit;
    font-weight: 400;
    text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
    color: #7c6339;
    text-decoration: underline;
}

/* Niski landscape ekrani */
@media (max-height: 500px) and (orientation: landscape) {
    .pozivnica,
    .site-footer {
        width: min(100vw, 56.25vh);
    }
}