@import url('https://fonts.googleapis.com/css2?family=Seaweed+Script&display=swap');
:root {
    --cream: #F0EAE2;
    --brown: #772105;
    --light-brown: #9D4701;
    --grey: #D9D9D9;
    --black: #000000;
    --white: #ffffff;
    --bs-body-font-family: 'Raleway',sans-serif;
}

body {
    background-color: var(--brown);
}

nav#navigation {
    margin-top: 1.5rem;
}

.navigation-link {
    color: var(--cream);
    font-size: 20px;
}

a.nav-link.navigation-link.btn.btn-bd-secondary {
    background-color: var(--brown);
    border: none;
    padding: 5px 30px;
}

.custom-nav {
    z-index: 1020 !important;
    background: unset;
}

video#hero-video {
    margin-top: -91px;
}

.spirits-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 75%;
    height: 400px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 99;
    transform: translate(-50%, -50%);
}

.letter-scratch {
    font-family: Seaweed Script;
    font-weight: 400;
    font-size: 36px;
    line-height: 38px;
    text-align: center;
    opacity: 0;
    transform: translateY(50px); 
    transition: opacity 2s ease, transform 2s ease;
}

.letter-scratch.visible {
  opacity: 1;
  transform: translateY(0);
}

.ghost-image-container {
    display: block;
    margin: auto;
    width: 70%;
    height: 500px;
    max-width: 675px;
    max-height: 565px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 0.3s ease;
}

.spirits-ghost-image-container {
    background-image: url('../img/Spirits_Ghosts1.jpg');
}

.spirits-ghost-image-container:hover {
    background-image: url('../img/Spirits_Ghosts.jpg');
}

.location-ghost-image-container {
    max-height: 425px;
    background-image: url('../img/Spirits_Carmines.png');
}

.location-ghost-image-container:hover {
    background-image: url('../img/Spirits_Carmines1.png');
}

.see-you-image-container {
    max-height: 465px;
    background-image: url('../img/Spirits_NeonSign.png');
}

.see-you-image-container:hover {
    background-image: url('../img/Spirits_NeonSign1.png');
}

#show-times h2.mt-4,
#location h2.mt-4,
#join h2.mt-4,
#faq h2.mt-4 {
    color: var(--white);
    font-family: Raleway;
    font-weight: 800;
    font-size: 40px;
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
}

#show-times h3.mt-0,
#join h3.mt-0 {
    color: var(--white);
    font-family: Raleway;
    font-weight: 800;
    font-size: 24px;
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
}

#show-times p.mt-4,
#join p.mt-4 {
    color: var(--white);
    font-family: Raleway;
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    text-align: center;
}

#about p.mt-4,
#location p.mt-4,
#faq p.mt-4,
#faq p.mt-4 a {
    color: var(--white);
    font-family: Raleway;
    font-weight: 200;
    font-size: 16px;
    line-height: 100%;
    text-align: center;
}

#about p.mt-4 strong,
#location p.mt-4 strong,
#faq p.mt-4 strong {
    font-weight: 500;
}

#content-advisory h2.mt-4 {
    color: var(--white);
    font-family: Seaweed Script;
    font-weight: 400;
    font-size: 40px;
    line-height: 100%;
    text-align: center;
}

#content-advisory p.mt-0, 
#content-advisory ul {
    color: var(--white);
    font-family: Seaweed Script;
    font-weight: 400;
    font-size: 32px;
    line-height: 33px;
    text-align: center;
    text-align: center;
    list-style-position: inside;
}

div#see-you {
    background: linear-gradient(180deg, #772105 0%, #3C5A5E 100%);
}

#see-you h3.mt-0 {
    color: var(--white);
    font-family: Raleway;
    font-weight: 800;
    font-size: 32px;
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
}


#other .col-lg-4.col-sm-12.text-center {
    aspect-ratio: 6/3;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: unset;
}

#other a {
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0;
}

#other a:hover {
    opacity: 1;
    background-color: #3C5A5ECC;
    color: var(--white);
    font-family: Raleway;
    font-weight: 700;
    font-size: 32px;
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

a.get-tickets {
    display: flex;
    font-family: Raleway;
    font-weight: 800;
    font-size: 20px;
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
    width: 220px;
    height: 42px;
    opacity: 1;
    border-radius: 20px;
    justify-content: center;
    align-items: center;
    justify-self: center;
    text-decoration: none;
    color: var(--white);
    background-color: var(--light-brown);
}

@media screen and (max-width:1280px){
    .spirits-logo {
        top: 40%;
    }
}

@media screen and (max-width:991px){
    .spirits-logo {
        top: 30%;
        width: 65%;
    }

    .letter-scratch {
        font-size: 28px;
        line-height: 32px;
    }

    #show-times h2.mt-4, 
    #location h2.mt-4, 
    #join h2.mt-4, 
    #faq h2.mt-4 {
        font-size: 32px;
    }

    #show-times h3.mt-0, 
    #join h3.mt-0 {
        font-size: 20px;
    }

    #show-times p.mt-4, 
    #join p.mt-4 {
        font-size: 18px;
    }

    #about p.mt-4, 
    #location p.mt-4, 
    #faq p.mt-4, #faq 
    p.mt-4 a {
        font-size: 14px;
        margin: 16px !important;
    }

    #faq .col-lg-6.col-sm-12.mt-3.mb-3 p.mt-4:first-child {
        margin-top: 0px !important;
    }

    #content-advisory h2.mt-4 {
        font-size: 34px;
    }

    #content-advisory p.mt-0, 
    #content-advisory ul {
        font-size: 26px;
        line-height: 30px;
    }

    #see-you h3.mt-0 {
        font-size: 26px;
    }

    #faq .col-lg-6.col-sm-12.mt-3.mb-3 {
        margin: 0px auto !important;
    }
}

@media screen and (max-width:768px){
    video {
        height: 500px;
    }

    .spirits-logo {
        top: 35%;
        width: 80%;
    }

    .ghost-image-container {
        width: 80%;
        max-height: 425px;
    }

    .location-ghost-image-container {
        max-height: 360px;
    }

    .see-you-image-container {
        max-height: 325px;
    }
}

@media screen and (max-width:568px){
   .letter-scratch {
        font-size: 22px;
        line-height: 26px;
    }

    #show-times h2.mt-4, 
    #location h2.mt-4, 
    #join h2.mt-4, 
    #faq h2.mt-4 {
        font-size: 26px;
    }

    #show-times h3.mt-0, 
    #join h3.mt-0 {
        font-size: 16px;
    }

    #show-times p.mt-4, 
    #join p.mt-4 {
        font-size: 14px;
    }

    #about p.mt-4, 
    #location p.mt-4, 
    #faq p.mt-4, #faq 
    p.mt-4 a {
        font-size: 12px;
        margin: 14px !important;
    }

    #content-advisory h2.mt-4 {
        font-size: 28px;
    }

    #content-advisory p.mt-0, 
    #content-advisory ul {
        font-size: 22px;
        line-height: 26px;
    }

    #see-you h3.mt-0 {
        font-size: 22px;
    }

    .ghost-image-container {
        max-height: 300px;
    }

    .location-ghost-image-container {
        max-height: 240px;
    }

    .see-you-image-container {
        max-height: 225px;
    }

    #other a:hover {
        font-size: 22px;
    }
}