﻿:root {
    --bg_color1: #54565A;
    --bg_color2: #54565AAA;
    --bg_color3: #FCDE36;
    --bg_color4: #54565A44;
    --bg_color5: #A8198B;
    --bg_color6: #FE9901;
    --bg_color7: #e2374a;
    --bg_color8: #91bd1b;
}

html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    font-family: "Roboto", sans-serif;
    overflow-y: auto !important;
}

header {
    position: fixed;
    width: 100%;
    z-index: 999;
    background-color: var(--bg_color1);
}
    header.opacity {
        background-color: var(--bg_color2);
    }

    header.scrolled {
        background-color: var(--bg_color1);
    }

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.animated-underline {
    position: relative;
    text-decoration: none;
}

    .animated-underline::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: var(--bg_color3);
        transition: width 0.3s ease-in-out;
    }

    .animated-underline:hover::after {
        width: 100%;
    }

.carousel-item {
    transition: transform 2s ease-in-out;
}

.carousel-indicators [data-bs-target] {
    height: 5px;
    background-color: var(--bg_color3);
}

.carousel-indicators button.thumbnail {
    width: 50%;
}

    .carousel-indicators button.thumbnail:not(.active) {
        opacity: 0.7;
    }

.nav-item .nav-link, .dropdown-item {
    font-weight: 500;
    text-transform: uppercase;
}

.zoom {
    transition: transform 2s; /* Animation */
}

    .zoom:hover {
        transform: scale(1.2); /* (120% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
    }

.bg-color-yellow {
    background-color: var(--bg_color3);
}

.bg-color-gray {
    background-color: var(--bg_color1);
}

.bg-color-gray-opacity {
    background-color: var(--bg_color2);
}

.bg-color-gray-light {
    background-color: var(--bg_color4);
}

/* Make sure the container takes up the whole screen */
.video-container {
    position: fixed;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
}

/* Position and size the video */
video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the video covers the area without stretching */
    /*z-index: -1;*/ /* Pushes the video behind other content */
}

.hero__text {
    position: absolute;
    top: 50%;
    left: 2rem;
    transform: translate(0%, -50%);
    color: white;
    font-family: "Poppins", sans-serif;
    max-width: 66%;
}

    .hero__text h2 {
        font-weight: 600;
        font-size: 36px;
        text-shadow: 3px 3px black;
        margin-bottom: 1.5rem;
    }

    .hero__text h5 {
        font-weight: 300;
        font-size: 18px;
        text-shadow: 2px 2px black;
    }

@media (min-width: 1024px) {
    .hero__text {
        max-width: 50%;
        left: 4rem;
    }

        .hero__text h2 {
            font-weight: 600;
            font-size: 48px;
            text-shadow: 3px 3px black;
            margin-bottom: 2.5rem;
        }

        .hero__text h5 {
            font-weight: 300;
            font-size: 24px;
            text-shadow: 2px 2px black;
        }
}

@media (min-width: 1200px) {
    .hero__text {
        max-width: 33%;
        left: 8rem;
    }
}

.hero__scroll {
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translate(-50%, 0%);
    text-align: center;
    color: white;
}

    .hero__scroll .bi-chevron-down {
        margin-bottom: 24px;
        display: block;
        -webkit-animation: slideOutDown 2s infinite;
        animation: slideOutDown 2s infinite;
        color: var(--bg_color3);
        font-size: 3rem;
    }

.fab-btn {
    position: fixed;
    display: flex;
    z-index: 1000;
    width: 3rem;
    height: 3rem;
    border-radius: 1.5rem;
    font-size: 1.8rem;
    align-items: center;
    justify-content: center;
    border: 1px solid white;
    transition: background-color 0.3s ease-in-out;
}

    .fab-btn a {
        text-decoration: none;
        color: inherit !important;
    }

    .fab-btn.wa {
        bottom: 4rem;
        right: 1.5rem;
        background-color: #16BE45;
        color: white;
    }

        .fab-btn.wa:hover {
            background-color: #129e39;
        }

    .fab-btn.address {
        bottom: 7.5rem;
        right: 1.5rem;
        background-color: var(--bg_color1);
        color: white;
    }

        .fab-btn.address:hover {
            background-color: #393b3e;
        }

    .fab-btn.info {
        bottom: 11rem;
        right: 1.5rem;
        background-color: var(--bg_color1);
        color: white;
    }

        .fab-btn.info:hover {
            background-color: #393b3e;
        }

@media (min-width: 768px) {
    .fab-btn.info {
        transform: rotate(-90deg);
        width: 13rem;
        right: -3.5rem;
        bottom: 16rem;
    }
}

.video-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    border: none;
    overflow: hidden;
}

    .video-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    }

.ratio-16x9 {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

    .ratio-16x9 iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .ratio-16x9 img {
        position: absolute;
        top: 0;
        left: 50%;
        width: auto;
        height: 100%;
        transform: translate(-50%, 0%);
    }

.accordion-button:not(.collapsed) {
    color: black;
    background-color: var(--bg_color3);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}

.counter {
    font-family: 'Roboto', sans-serif;
    text-align: center;
    max-width: 200px;
    width: 100%;
    padding: 0 0 30px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

    .counter .counter-content {
        background: #fff;
        max-width: 200px;
        width: 100%;
        aspect-ratio: 1;
        padding: 10px 15px;
        box-shadow: 10px 15px 10px -10px rgba(0,0,0,0.8);
        border-radius: 50%;
        overflow: hidden;
        position: relative;
        z-index: 1;
    }

        .counter .counter-content:before {
            content: "";
            background: var(--bg_color1);
            width: 200px;
            height: 100px;
            transform: translateX(-50%);
            position: absolute;
            top: -35px;
            left: 50%;
            z-index: -1;
        }

    .counter .counter-icon {
        color: #fff;
        font-size: 35px;
        margin-bottom: 25px;
        transition: all 0.3s ease-in-out;
    }

    .counter:hover .counter-icon {
        transform: rotateY(180deg) rotateX(360deg);
    }

    .counter .counter-value {
        color: var(--bg_color1);
        font-size: 28px;
        font-weight: 700;
        line-height: 20px;
    }

    .counter .suffix {
        color: var(--bg_color1);
    }

    .counter h3 {
        color: #555;
        font-size: 18px;
        font-weight: 600;
        text-transform: uppercase;
        padding: 0 10px;
        display: inline-block;
    }

    .counter.first .counter-content:before {
        background-color: var(--bg_color6);
    }

    .counter.first .counter-value,
    .counter.first .suffix {
        color: var(--bg_color6);
    }

    .counter.first .counter-icon {
        color: #fff;
    }

    .counter.second .counter-content:before {
        background-color: var(--bg_color5);
    }

    .counter.second .counter-value,
    .counter.second .suffix {
        color: var(--bg_color5);
    }

    .counter.second .counter-icon {
        color: #fff;
    }

    .counter.third .counter-content:before {
        background-color: var(--bg_color7);
    }

    .counter.third .counter-value,
    .counter.third .suffix {
        color: var(--bg_color7);
    }

    .counter.third .counter-icon {
        color: #fff;
    }

    .counter.fourth .counter-content:before {
        background-color: var(--bg_color8);
    }

    .counter.fourth .counter-value,
    .counter.fourth .suffix {
        color: var(--bg_color8);
    }

    .counter.fourth .counter-icon {
        color: #fff;
    }