@import url(https://fonts.bunny.net/css?family=alex-brush:400);

@font-face {
    font-family: 'Z003';
    src: url('../fonts/Z003-MediumItalic.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

head, body {
    font-family: 'Alex Brush', handwriting, serif;
}

body {
    /*    background-image: url('../img/bg.jpg');
        background-position: top center;
        background-size: cover;*/
    background-color: #e8e3dd;
}

h1 {
    font-size: 10em;
    text-shadow: black 0 0 10px;
}

h2 {
    font-size: 4em;
}

h3 {
    font-size: 3em;
    text-shadow: black 0 0 10px;
}

p {
    font-size: 2em;
}

a {
    color: orange;
}

th {
    font-size: 2em;
}

tr {
    font-size: 2em;
    /*border-width: 5px;*/
    /*border-radius: 5px;*/
    /*border-style: hidden;*/
}

td {
    padding-left: 1.5em !important;
    padding-right: 1.5em !important;
    /*border-radius: 0.5em !important;*/
}

tr:first-child td:first-child { border-top-left-radius: 10px; }
tr:first-child td:last-child { border-top-right-radius: 10px; }

tr:last-child td:first-child { border-bottom-left-radius: 10px; }
tr:last-child td:last-child { border-bottom-right-radius: 10px; }

tr:first-child td { border-top-style: solid; }
tr td:first-child { border-left-style: solid; }
tr:last-child {border-bottom-style: hidden}

.list {
    font-family: Z003, cursive;
    font-size: 1.5rem;
    text-shadow: whitesmoke 0 0 10px;
    color: black;
}
.list > div {
        font-size: 2.3rem;
        text-decoration-line: underline;
        line-height: 1.3em;
        margin-top: 0.5em;
        margin-bottom: 0.5em;
    }

td {
    font-family: Z003, cursive;
}

dialog {
    border: 0;
    border-radius: 1.5em;
}

.gray {
    background-color: rgb(203, 203, 203);
}

.parallax > .main-image-height {
    min-height: 1000px;

}

.parallax {
    /* Set a specific height */
    min-height: 120vh;

    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: top;
    background-repeat: no-repeat;
    background-size: 85%;
}

/* Button container for centered positioning between parallax sections */
.parallax-button-container {
    position: relative;
    height: 60px; /* Small gap between parallax sections */
    margin-top: -29px; /* Pull up to overlap top image */
    margin-bottom: -29px; /* Pull down to overlap bottom image */
}

.parallax-button-container .button-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.caption {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    text-align: center;
    color: black;
}

.arrow {
    animation: bounce 2.5s ease-in-out infinite;
}

.register-form {
    width: 60%;
}

.btn-primary {
    --bs-btn-bg: #e4a228;
    --bs-btn-border-color: #e4a228;
    --bs-btn-hover-bg: #ac7207;
    --bs-btn-hover-border-color: #ac7207;
    --bs-btn-active-bg: #805403;
    --bs-btn-active-border-color: #805403;
}

.btn-light {
    --bs-btn-border-color: gray;
}

.btn-secondary {
    --bs-btn-bg: #7E8FD5;
    --bs-btn-border-color: #7E8FD5;
    --bs-btn-hover-bg: #4759A5;
    --bs-btn-hover-border-color: #4759A5;
    --bs-btn-active-bg: #394FA6;
    --bs-btn-active-border-color: #394FA6;

}

.form-check-input {
    width: 0.5em;
    height: 0.5em;
    border-radius: 5px !important;
}

.form-check-input:checked {
    background-color: #e4a228;
    border-color: #e4a228;
}

#map {
    height: 50vh;
    width: 55vh;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-aspect-ratio: 1.2/1) {
    h1 {font-size: 4rem;}
    h2 {font-size: 2rem;}
    h3 {font-size: 2rem;}
    h4 {font-size: 1rem;}
    p {font-size: 2rem;}
    td {
        padding-left: 0.5em !important;
        padding-right: 0.5em !important
    }
    tbody {
        width: 90vw;
        display: inherit;
    }
    .register-form {
        width: 100%;
    }
    .parallax {
        background-size: cover;
    }
    #wishlist_text {
        width: 90vw !important;
        display: inherit;
    }
    #questions_text {
        max-width: 90vw !important;
    }
    #map {
        height: 85vw;
        width: 90vw;
    }
}