.parallax {
    /* The image used */
    background-image: url("images/para-min.png");

    /* Set a specific height */
    min-height: 100vh;

    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.av-logo {
    height: 80px !important;
}

section {
    margin: 5rem 0;
}

.av-offer {
    max-height: 50px !important;
}

.av-offer-banner {
    max-height: 180px !important;
}

.vh-auto {
    height: calc(100vh - 25rem) !important;
}

.mt-10 {
    margin-top: 10rem !important;
}

.fs-7 {
    font-size: 0.9rem !important;
}

.icon-box {
    max-height: 100px !important;
    width: auto;
}

/** Fonts **/
.f-marck {
    font-family: "Marck Script", cursive;
    font-style: normal;
}

.f-rowdies {
    font-family: "Rowdies", sans-serif;
    font-style: normal;
}


/** Background Styles **/

/** Button Styles **/
.btn-custom {
    cursor: pointer;
    color: white;
    text-transform: uppercase;
    position: relative;
}

.btn-custom:hover {
    color: white;
    border: 1px solid white;
}

.btn-1 {
    border: 1px solid;
    overflow: hidden;
    position: relative;
}

.btn-1 span {
    z-index: 20;
}

.btn-1:after {
    background: #fff;
    content: "";
    height: 155px;
    left: -75px;
    opacity: 0.2;
    position: absolute;
    top: -50px;
    transform: rotate(35deg);
    transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 50px;
    z-index: -10;
}

.btn-1:hover:after {
    left: 120%;
    transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-2 {
    border: 0 solid;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0);
    outline: rgba(255, 255, 255, 0.5) solid 1px;
    outline-offset: 0px;
    text-shadow: none;
    transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-2:hover {
    border: 1px solid;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.2);
    outline-color: rgba(255, 255, 255, 0);
    outline-offset: 15px;
    text-shadow: 1px 1px 2px #427388;
}


/** Loader **/
#loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Transparent background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Ensure it's on top of everything */
    display: none; /* Hidden by default */
}

/* Spinner styling */
.loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Prevent scrolling when the loader is visible */
body.no-scroll {
    overflow: hidden;
}