@font-face {
    font-family: 'numbbunny';
    src: url('/static/fonts/numbbunny-font/Numbbunny-L7L5.otf') format('truetype');
}

@font-face {
    font-family: 'StarFont';
    src: url('/static/fonts/star-font/StarFont-MB9r.ttf') format('truetype');
}

body {
    background: url('/images/bunny.PNG') no-repeat center center fixed;
    background-size: cover;
    font-family: 'numbbunny', Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #c76c98;
}

header {
    background: #ffcee3;
    padding: 1em 0;
    text-align: center;
}

nav {
    margin: 0;
    padding: 0;
    text-align: center;
}

nav a {
    margin: 0 1em;
    text-decoration: none;
    color: #ff93c7;
}

section {
    padding: 2em;
}

footer {
    background: #ffcee3;
    text-align: center;
    padding: 1em 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}

h1, h2 {
    font-family: 'StarFont';
}

.whitefont {
    color: white;
}

.babypinkfont {
    color: #ff93c7;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

.gallery img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin: 5px;
    cursor: pointer;
}

.main-image-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.main-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: cover;
}



#adminIcon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #ff93c7;
    color: white;
    font-size: 2em;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 0 10px #ff93c7;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal-content {
    background: white;
    padding: 2em;
    border-radius: 12px;
    max-width: 90%;
}

.modal-content button {
    margin: 0 10px;
    font-size: 1.2em;
    padding: 0.5em 1.2em;
    background: #ff93c7;
    border: none;
    color: white;
    border-radius: 6px;
    cursor: pointer;
}

#customUploadBtn, #customDeleteBtn {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border: none;
    width: 180px; /* adjust based on image */
    height: 60px;
    cursor: pointer;
}

#customUploadBtn,
#customDeleteBtn {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    display: inline-block;
    width: 180px;
    height: 60px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    content: "";
}


#customUploadBtn {
    display: inline-block;
    width: 180px;
    height: 60px;
    background-image: url('/static/images/ui/upload-n1.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    border: none;
    cursor: pointer;
}



#customDeleteBtn {
    background-image: url('/static/images/ui/delete-n1.jpg');
}

.nav-btn {
    width: 50px;
    height: 50px;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

#prevBtn {
    left: 10px;
    background-image: url('/static/images/ui/left.webp');
}

#nextBtn {
    right: 10px;
    background-image: url('/static/images/ui/right.webp');
}

.main-image-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}


header h1 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: clamp(0.8rem, 6vw, 2rem);
}


@media (max-width: 600px) {
    section {
        padding: 0.5rem;
    }
}

@media (max-width: 600px) {
    .modal-content {
        padding: 1em;
        max-width: 85%;
        font-size: 1em;
    }
}

@media (max-width: 600px) {
    section {
        padding: 0.5rem;
        padding-bottom: 6rem;
    }
}




