/* GLOBAL */

#bgvideo {
    position:fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;

}

.content {
    position: relative;
    width: 100%;
}


.finger-paint-regular {
  font-family: "Finger Paint", Verdana, Geneva, Tahoma, sans-serif;
  font-weight: 10;
  font-style: normal;
}


.nablaFont {
  font-family: "Nabla", system-ui;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "EDPT" 100,
    "EHLT" 12;

    color: white;
}


h1 {
    color: white;
    -webkit-text-stroke: 0.1px rgb(109, 162, 187);    
    margin: 0;
    text-shadow:
        2.5px 2.5px #384f6d,
        4px 4px aliceblue,
        8px 8px rgb(109, 162, 187);


}


.navbar {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 999;
}


.navbar ul {
    list-style-type: none;
    overflow: visible;
    margin: 1;
    padding: 1;
}

.navbar a{
    color:rgb(205, 229, 230);
    text-decoration: none;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    display: block;
    padding: 5px;
    cursor: grab;
}

.navbar li {
    float: right;
}


.bookBtn {
    background-color: limegreen;
    border: 2px solid;
    color: aliceblue;
    padding: 12px;
    margin: 0px;
    border-radius: 100px;
    font-weight: 600;
    cursor: grab;
    animation: glowPulse 1.75s infinite ease-in-out;
    transition: all 0.75s ease;
}

.bookBtn:hover {
    box-shadow: 0 0 18px 5px #7CFF4F,
                0 0 30px 10px #7CFF4F,
                0 0 40px 15px #7CFF4F;
    animation: borderSwim 1.5s linear infinite;
    BACKGROUND-COLOR: #7CFF4F;
}


@keyframes glowPulse {
    0% {
        box-shadow: 0 0 8px 3px limegreen;
        transform: translateY(0px0);
    }

    50% {
        box-shadow: 0 0 18px 5px limegreen;
        transform: translateY(-1px);
    }

    100% {
        box-shadow: 0 0 8px 3px limegreen;
        transform: translateY(0px);
    }
}


@keyframes borderSwim {
    0% {
        box-shadow: 0 -3px 12px rgb(88, 2, 247);
    }

    25% {
        box-shadow: 3px 0 12px rgb(88, 2, 247);
    }

    50% {
        box-shadow: 0 3px 12px rgb(88, 2, 247);
    }

    75% {
        box-shadow: -3px 0 12px rgb(88, 2, 247);
    }

    100% {
        box-shadow: 0 -3px 12px
    }
}


p {
    color: rgb(205, 229, 230);
}


/* NON-GLOBAL HEADERS */


h2 {
    color: rgb(205, 229, 230);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 17px;
    -webkit-text-stroke: 0.3px black;
}


h3 {
    color: rgb(205, 229, 230);
    font-size: 85px;
    text-align: center;
    font-family: "Nabla";

    margin-bottom: 0px;
}


/* HOMEPAGE ONLY */

.homepageText {
    position: relative;
    width: 100%;
    height: 400px;
}

.textLayer {
    position: absolute;
    font-size: 40px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    -webkit-text-stroke: 1px black;
}


.layer1 {
    top: 80px;
    left: 250px;
    opacity: 1;
    z-index: 1;
}

.layer2 {
    top: 185px;
    left: 1040px;
    z-index: 1;
}

.layer3 {
    top: 420px;
    left: 475px;
    z-index: 1;
}


.filterImg {
    position: absolute;
    top: 250px;
    left: 80px;
    z-index: 5;
}


.ratchetImg {
    position: absolute;
    top: 20px;
    right: 80px;
    z-index: 5;
}


/* ABT PG ONLY */


.abt-vid {
    display: flex;
    justify-content: center;
    margin-top: 100px;
}

.abtText {
    color: rgb(205, 229, 230);
    -webkit-text-stroke: 0.3px black;
    text-align: center;
    font-size: 30px;
    font-weight: 1000;
    -webkit-text-stroke: 0.5px black;

    width: 100%;

    margin-top: 0px;
}


.mainAbt {
    margin-top: -100px;
}


/* CONTACT PAGE ONLY */

.contactForm {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 500;
    display: flex;
    justify-content: center;
    width: 100%;
}


.contactForm form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 420px;
    padding: 28px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
}


input,
textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 12px;
    color: white;
    outline: none;
}


.contactForm form div {
    margin-bottom:15px;
}

.textAreaContact {
    width: 400px; height: 200px;    
}


.sendItBtn {
    background-color: rgb(93, 64, 197);
    background: rgba(107, 26, 236, 0.15);
    color: white;
    border: 2px solid; color: black;
    border-radius: 999px;
    padding: 12px;
    margin: 0px;
    border-radius: 100px;
    font-weight: 600;
    cursor: grab;
    backdrop-filter: blur(10px);
    box-shadow: inset 0 0 10px 5px rgba(2, 247, 194, 0.25);
    transition: all 0.3s ease;
}

.sendItBtn:hover {
    transform: translateY(-2px) scale(1.03);
    background: rgba(94, 23, 224, 0.35);
    box-shadow:
        0 0 18px rgba(2, 192, 240, 0.5),
        0 0 40px rgba(4, 167, 243, 0.25);
}


input:focus,
textarea:focus {
    outline: none;
    border: 1px solid rgba(79, 243, 255, 0.5);

    box-shadow: 0 0 12px rgba(124, 255, 79, 0.25);
}


/* BOOKING OPTIONS PAGE ONLY */

.glassContainer {
    display: flex;
    transition: transform 0.3s ease;
    justify-content: center;
    justify-content: space-evenly;
    align-content: center;
    flex-wrap: wrap;
    gap: 1em;
}


.glassyCard {
        
    height: 300px;
    width: 300px;
    padding: 0px;
    display: flex;
    flex-direction: column;
    border-radius: 50px;
    border: 3px solid hsl(0, 0%, 100%, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    border-left: 1px solid rgba(255, 255, 255, 0.3);

    
    background: hsla(0, 0%, 100%, 0.08);
    backdrop-filter: blur(1px);

    box-shadow: inset 0 0 5px 1px hsla(0, 0%, 100%, 0.2);

    font-family: "Finger Paint";
    font-size: 28px;
    text-align: center;
    color: white;
    -webkit-text-stroke: 0.2px #384f6d;

    cursor: grab;
}

.glassyCard:hover {
    transform: translateY(-10px);
    box-shadow: inset
        0 0 60px rgba(167, 84, 245, 0.5),
        0 0 800px rgba(158, 90, 248, 0.25);
}

.optionsSpan {
    font-size: 15px;
    text-align: center;
    margin: 4px;
}


.optionsHeading {
    position: fixed;
    bottom: 50px;
    text-align: center; 
}

/* MOBILE OVERRIDES ONLY */


@media screen and (max-width: 768px) {
    
    
    /* GLOBAL */


    h1 {
        margin-top: 40px;
        font-size: 42px !important;
    }


    /* HOMEPAGE ONLY */


    .homepageText {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 40px;
    }


    .textLayer {
        position: static;
        font-size: 28px;
        text-align: center;
        max-width: 90%;
        display: block;
        margin: 0px;
    }


    .filterImg,
    .ratchetImg {
        position: static;
        display: flex;
        justify-content: center;
    }


    .filterImg img,
    .ratchetImg img {
        width: 70%;
        height: auto;
        max-width: 250px;
    }


    /* ABT PAGE ONLY */




    /* CONTACT ONLY */


    .contactForm form {
        width: 80%;
        max-width: 350px;
        margin: 0 auto;
    }


    .textAreaContact {
        width: 100%;
        display: block;        
    }


    /* BOOKING PAGE ONLY */


}
