/*
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*/
:root {
    --black : #000000;
    --dark-grey: #131313;
    --green: #ccf556;
    --pink: #f12faa;
}

@font-face {
    font-family: 'Montserrat';
    src: url(../resources/fonts/Montserrat-VariableFont_wght.ttf);
}

@font-face {
    font-family: 'Anton';
    src: url(../resources/fonts/Anton-Regular.ttf);
}

/* General styling */
body {
    font-family: 'Montserrat', sans-serif;
}

html {
    scroll-snap-type: y mandatory;
}

.rc-anchor-normal-footer {
    display: none !important;
}
.grecaptcha-badge { 
    visibility: hidden; 
}

.text-justify {
    text-align: justify;
}
/* Lead Generation Banner */
.banner {
    background-color: #CCF656;
    position: fixed;
    width: 100%;
    height: 80px;
    top: 0;
    display: flex;
    column-gap: 40px;
    justify-content: center;
    align-items: center;
    z-index: 10;

    span {
        font-weight: 700;
        font-family: 'Montserrat';
        font-size: 18px;
        line-height: 24px;
    }

    button {
        background-color: #F5F7F8;
        border: 1px solid #000;
        height: 50px;
        width: 200px;
        border-radius: 25px;
        font-weight: 700;
        font-family: 'Montserrat';
        font-size: 16px;
        line-height: 24px;
        transition: background-color 0.3s;
    }

    button:hover{
        background-color: #000;
        color: #F5F7F8;
    }
}

/* Navbar */
.navbar {
    position: fixed;
    z-index: 1000;
    width: 90%;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1225px;
    background-color: #1C1C1C;
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 8px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .logo img {
    max-height: 80px;
    margin-right: 10px;
    width: 200px;
}

.navbar-collapse {
    justify-content: end;
}

.navbar .navbar-nav .nav-item {
    display: inline;
}

.navbar .navbar-nav .nav-item a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 7px 20px;
    border-radius: 2rem;
    margin-right: 0.5rem;
    transition: background-color 0.3s;
    color: #fff;
}

.navbar .navbar-nav .nav-item a:hover {
    color: var(--black);
    background-color: #ccf55663;
}

.navbar .navbar-nav .nav-item .nav-link.active {
    background-color: var(--green);
    color: #000;
    font-weight: 700;
}

.navbar-nav .nav-item:last-child a {
    color: #ffffff;
    border-radius: 0.5rem;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.75rem;
    padding: 7px 15px;
    transition: all 0.6s ease;
}

/* Custom Hamburger Icon */
.navbar-toggler {
    border: none;
    padding: 4px 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255, 1)' stroke-width='3' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

/* Offcanvas Styling */
.offcanvas {
    background-color: #1C1C1C;
    border: none;
}

.offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
}

.offcanvas-title {
    color: #fff;
    font-weight: 600;
}

.btn-close {
    filter: invert(1);
    opacity: 0.8;
}

.offcanvas-body {
    padding: 1.5rem;
}

.offcanvas .navbar-nav {
    flex-direction: column;
    width: 100%;
}

.offcanvas .nav-item {
    width: 100%;
    margin-bottom: 0.5rem;
}

.offcanvas .nav-link {
    display: block;
    padding: 12px 20px;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.offcanvas .nav-link:hover {
    background-color: rgba(204, 245, 86, 0.1);
    color: var(--green);
}

.offcanvas .nav-link.active {
    background-color: var(--green);
    color: var(--black);
    font-weight: 700;
}
/* Contact Tab */
#contact-tab {
    position: fixed;
    z-index: 10;
    right: 0;
    bottom: 4rem;
    display: flex;
    flex-direction: column;
    padding: 0.75rem;
    padding-right: 0.5rem;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

#contact-tab a {
    color: #ffffff;
    font-size: 1.5em;
    padding-bottom: 0.7rem;
    transition: all 0.5s ease;
}

#contact-tab a:hover {
    color: #fc9c20;
}

#contact-tab a:last-child {
    padding-bottom: 0;
}

/* Footer */
footer {
    position: relative;
    width: 100%;
    background-color: #1C1C1C;
}

.footer-container {
    background-color: #fff;
    color: #000;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    max-width: 1143px;
    width: 85%;
    margin: 0 auto;
}

.footer-content {
    padding: 88px 50px;
    justify-content: center;
    display: flex;
}

footer h2 {
    font-family: 'Montserrat';
    font-size: 18px;
    text-transform: uppercase;
    padding-bottom: 0.75rem;
    color: #1C1C1C;
    font-weight: 700;
}

footer nav a,
footer .newsletter label {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding-bottom: 10px;
    color: #000;
}

footer nav a:hover,
footer nav a:hover i {
    color: #1c1c1c;
}

footer nav a i {
    padding-right: 0.5rem;
    font-size: 1rem;
}

footer .footer-content .img-container {
    flex-direction: column;
    padding: 0 16px;
    justify-content: space-between;
    align-items: flex-start;
}

footer .footer-content .img-container img{
    width: 100%;
    max-width: 230px;
}

/* Footer Newsletter */
footer .newsletter {
    max-width: fit-content;
    justify-content: center;
    flex-direction: column;
    column-gap: 20px;
    row-gap: 15px;

    label {
        padding-bottom: 0;  
        font-weight: 700;
    }

    .input-container {
        column-gap: 10px;
    }

    input {
        border-radius: 15px;
        width: 100%;
        border: 1px solid black;
        padding: 0 10px;
        height: 35px;
    }

    button {
        padding: 2px 32px;
        border: 1px solid rgb(0, 0, 0);
        display: block;
        box-sizing: border-box;
        border-radius: 32px;
        background: #e8511c;
        box-shadow: rgb(17, 17, 17) 0px 15px 10px -15px;
        font-family: Montserrat, sans-serif;
        line-height: 30px;
        font-weight: 600;
        color: rgb(255, 255, 255);
    }

    button:active {
        background: rgb(53, 53, 53);
    }
}

/* Mobile and smaller screen devices */
@media screen and (max-width: 1399px){
    .navbar {
        padding-right: 4vw;
    }
}

@media screen and (max-width: 1200px){
    .navbar .navbar-nav .nav-item a {
        font-size: 13px;
    }
}


@media screen and (max-width: 991px) {
    .navbar .navbar-nav .nav-item a {
        border: none;
    }

    .navbar-nav {
        margin-top: 2rem;
    }

    .nav-item {
        margin: 0.25rem 0;
    }

    footer h2 {
        font-size: 1.2rem !important;
    }

    footer nav a,
    footer .newsletter label,
    footer .footer-content {
        font-size: 0.75rem;
        flex-wrap: nowrap;
        row-gap: 35px;
    }

    footer .footer-content {
        padding: 70px 30px 60px;
    }

    footer .anchors-container {
        flex-direction: column;
        align-items: flex-end;
        text-align: right;
        row-gap: 25px;
    }

    footer .footer-content .img-container {
        flex-direction: column;
        padding: 0;
        row-gap: 40px;
        width: max-content;
    }

    footer .newsletter {
        text-align: center;
    }

    footer .newsletter .input-container {
        flex-direction: column;
        row-gap: 20px;
    }
}

@media screen and (max-width: 767px) {
    .navbar .logo img {
        width: 150px;
    }

    footer nav a,
    footer .newsletter label {
        font-size: 16px;
        text-align: center;
    }

    footer .footer-content {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        flex-wrap: nowrap;
    }

    footer .img-container {
        display: flex;
        justify-content: center;
        margin-bottom: 10px;
        align-items: center;
    }

    footer .anchors-container {
        align-items: center;
        text-align: center;
    }

    footer .anchors-container div {
        padding: 0 !important;
    }

    footer .anchors-container h2 {
        width: 100%;
    }

    footer .newsletter {
        flex-wrap: wrap;
    }

    footer .input-container {
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }
}

@media screen and (max-width: 500px) {
    footer nav a,
    footer .newsletter label {
        font-size: 0.75rem;
    }
    footer .footer-content {
        padding: 30px 20px 10px;
    }
    footer .footer-content .img-container {
        row-gap: 20px;
        align-items: center;
    }
    footer .footer-content .img-container img {
        width: 205px;
    }
}

@media screen and (max-width: 325px) {
    .navbar {
        width: 100%;
        top: 0;
        border-radius: 0;
    }
    footer .footer-content {
        padding: 30px 20px 10px;
    }
    footer .footer-content .img-container {
        row-gap: 20px;
        align-items: center;
    }
    footer .footer-content .img-container img {
        width: 205px;
    }
}