/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/*========================Made by RixZC==========================*/
/*==========================With Love============================*/
/*=============================:^)===============================*/
/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/



/*---------------------------------------------------------------*/
/*============================Fonts==============================*/
/*---------------------------------------------------------------*/

@font-face {
    font-family: "SF Pro Display Regular Italic";
    src: url("/fonts/SF-Pro-Display-RegularItalic.otf");
}

@font-face {
    font-family: "SF Pro Display Regular";
    src: url("/fonts/SF-Pro-Display-Regular.otf");
}

@font-face {
    font-family: "SF Pro Text Light";
    src: url("/fonts/SF-Pro-Text-Light.otf");
}

@font-face {
    font-family: "SF Pro Text Thin";
    src: url("/fonts/SF-Pro-Text-Thin.otf");
}

@font-face {
    font-family: "SF Pro Text Ultralight";
    src: url("/fonts/SF-Pro-Text-Ultralight.otf");
}

@font-face {
    font-family: "SF Pro Rounded Regular";
    src: url("/fonts/SF-Pro-Rounded-Regular.otf");
}

/*---------------------------------------------------------------*/
/*=============================Body==============================*/
/*---------------------------------------------------------------*/

body {
    background-color: black;
    font-family: "SF Pro Display";
    margin: 0;
    border-radius: 8px;
}

html {
    scroll-behavior: smooth;
}

/*---------------------------------------------------------------*/
/*===========================Header==============================*/
/*---------------------------------------------------------------*/

header {
    background-color: rgba(0, 0, 0, 0.6);

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    backdrop-filter: blur(4px);
    --webkit-filter: blur(4px);
}

.header-logo {
    background: url("/logos/logo-icon.png") center / contain no-repeat;

    position: absolute;
    left: 50%;
    transform: translateX(-50%);

    height: 60px;
    width: 60px;

    filter: invert(1) brightness(2);
}

#sidebar-button {
    font-size: 28px;

    background:none;
    border:none;

    cursor: pointer;

    position: absolute;

    right: -45px;

    z-index: 1000;

    color: white;

    margin: 5px;
}

#sidebar-button:hover {
    color: rgba(255,255,255,0.8)
}

.top-links {
    display: none;
}

/*---------------------------------------------------------------*/
/*===========================Sidebar=============================*/
/*---------------------------------------------------------------*/

.sidebar {
    position: fixed;
    left: -250px;
    width: 250px;
    height: 100vh;
    transition: left .3s ease;

    background-color: black;
}

.side-content {
    display: flex;
    flex-direction: column;

    padding: 30px;
    height: 100vh;
}

.sidebar.open {
    left: 0;
}

.sidebar-top {
    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: flex-start;
}

.sidebar-top a {
    font-family: "SF Pro Display Regular Italic";
    font-size: 25px;
    line-height: 50px;
    
    color: white;
    text-decoration: none;
}

.sidebar-top a:hover {
    opacity: .7;
}

.sidebar-bottom {
    margin-top: auto;
    display: flex;
    padding-bottom: 60px;
}

.sidebar-bottom img {
    height: auto;
    width: 80px;

    filter: invert(1) opacity(.3);
}

/*---------------------------------------------------------------*/
/*=============================HERO==============================*/
/*---------------------------------------------------------------*/

.hero {
    min-height: 100svh;

    background:
        url("/images/hero.jpg") center / cover no-repeat,
        black;

    margin-bottom: 100px;

    border-radius: 15px;
}

.hero-content {
    min-height: 100svh;
    background-color: rgba(0, 0, 0, 0.6);

    display: flex;
    flex-direction: column;

    height: 100vh;

    gap: 30px;

    justify-content: center;
    align-items: center;

    padding: 20px;

    text-align: center;
}

.text-content {
    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;
}

.title {
    color: rgb(255, 255, 255);
    font-size: 20px;
    text-shadow: black 1px 1px 2px;
    line-height: 10px;

    display: flex;

    align-items: center;
    justify-content: center;
    padding-top: 16rem;

    text-align: center;
}

#service {
    font-family: "SF Pro Text Light";
    font-size: 12px;

    letter-spacing: 4px;
}

#desc {
    font-family: "SF Pro Rounded Regular";
    font-size: 12px;

    padding: 0px 14px 0px 14px;
    line-height: 16px;
}

.hero-buttons {
    height: 100%;
    max-width: 100%;

    display: flex;
    gap: 40px;
    
    justify-content: center;

    background-color: rgba(255, 0, 0, 0);
}

/*==========================Hero Buttons=========================*/

.hero-buttons a {
    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    height: 50px;
    width: 120px;

    border-radius: 25px;

    font-family: "SF Pro Rounded Regular";
    font-size: 16px;
    color: white;
    text-shadow: black 1px 1px 2px;
    text-align: center;

    text-decoration: none;

    border-style: solid;
    border-width: 1px;
    border-color: rgb(255, 255, 255);
}

.cta {
    background-color: rgba(0, 255, 200, 0.5);
}

.cta:hover {
    background-color: rgba(0, 255, 200, 0.7);
}

.contact-us {
    background-color: rgba(255, 255, 255, 0);
}

.contact-us:hover {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
}

#next {
    font-size: 35px;
    font-family: "Symbols Nerd Font";

    color: rgba(255, 255, 255, 0.7);
    background-color: rgba(255, 0, 0, 0);

    aspect-ratio: 1/1;

    height: auto;
    width: 40px;

    margin-bottom: 6vh;

    border: none;
}

#next:hover {
    color: rgba(211, 255, 223, 0.6);
}

/*---------------------------------------------------------------*/
/*===========================Content=============================*/
/*---------------------------------------------------------------*/

.content {
    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    gap: 100px;

    padding: 20px;

    background-color: rgb(0, 0, 0);

    font-family: "SF Pro Text Thin";

    margin-bottom: 80px;
}

.content div {
    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    width: 90%;

    border-radius: 15px;

    padding: 10px;

    background-color: rgb(29, 29, 29);
}

.content div h1,
.content div h2,
.content div p {
    margin: 10px;
    
    color: white;
    text-align: center;

    background-color: rgba(255, 0, 0, 0);
}

/*=============================TLDR==============================*/

.TLDR {
    overflow: hidden;
}

.TLDR img {
    display: block;
    object-fit: cover;
    width: 105%;
    height: auto;

    margin-top: -20px;
}

.TLDR-text {
    gap: 10px;
}

.TLDR h1 {
    font-family: "SF Pro Display Regular";
    font-size: 35px;

    background-color: rgba(255, 0, 0, 0);
}

.TLDR p {
    font-family: "SF Pro Text Thin";
    font-size: 16px;

    background-color: rgba(0, 255, 0, 0);
}

/*===========================Services============================*/

.services {
    gap: 10px;
}

.services h1 {
    font-family: "SF Pro Display Regular";
    font-size: 35px;

    background-color: rgba(0, 128, 0, 0);
}

.services p {
    font-family: "SF Pro Text Thin";
    font-size: 16px;

    background-color: rgba(0, 195, 255, 0);
}

/*------------------------Service Buttons------------------------*/

.service-buttons {
    gap: 10px;

    width: 100%;

    margin-top: 20px;

    background-color: rgba(255, 166, 0, 0);
}

.service-buttons a img {
    width: 80%;
    height: auto;
    background-color: rgba(0, 255, 0, 0);
}

.service-buttons a {
    gap: 0px;

    background-color: rgba(255, 0, 0, 0);
    
    border: none;

    height: 120px;
    width: 120px;

    font-family: "SF Pro Display Regular";
    font-size: 15px;
    text-align: center;

    color: white;
}

.service-buttons a:hover {
    text-decoration: underline;
}

/*==========================How It Works=========================*/

.process {
    gap: 10px;
}

.process h1 {
    font-family: "SF Pro Display Regular";
    font-size: 35px;

    background-color: rgba(0, 128, 0, 0);
}

.process h2 {
    font-family: "SF Pro Text Ultralight";
    font-size: 12px;

    background-color: rgba(0, 113, 128, 0);
}

.process p {
    font-family: "SF Pro Text Thin";
    font-size: 16px;

    background-color: rgba(17, 0, 255, 0);
}

.process-content {
    width: 100%;

    gap: 20px;

    margin-top: 20px;

    background-color: rgba(255, 166, 0, 0);
}

.process-content div img {
    aspect-ratio: 1/1;

    height: auto;
    width: 90px;

    background-color: rgba(0, 255, 0, 0);
}

.process-content div {
    gap: 0px;

    padding: 0px;

    background-color: rgba(255, 0, 0, 0);
    
    border: none;

    height: auto;
    width: 100%;

    font-family: "SF Pro Display Regular";
    font-size: 15px;
    text-align: center;

    color: white;
}

/*==============================CTA==============================*/

.bottom-cta {
    gap: 20px;
}

.bottom-cta h1 {
    font-family: "SF Pro Display Regular";
    font-size: 30px;

    background-color: rgba(0, 128, 0, 0);
}

.bottom-cta a {
    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    height: 60px;
    width: 130px;

    border-radius: 30px;

    background-color: rgb(53, 53, 53);

    font-family: "SF Pro Rounded Regular";
    font-size: 20px;

    color: white;
    text-decoration: none;

    border: none;
}

.bottom-cta a:hover {
    background-color: rgb(0, 141, 110);
}

/*---------------------------------------------------------------*/
/*============================Footer=============================*/
/*---------------------------------------------------------------*/

footer {
    display: flex;
    flex-direction: column;

    gap: 30px;

    line-height: .5;

    border-radius: 15px;

    padding: 20px;

    background-color: rgb(12, 12, 12);
    color: white;
}

footer h1 {
    font-family: "SF Pro Display Regular";
    font-size: 18px;
}

footer p {
    font-family: "SF Pro Rounded Regular";
    font-size: 12px;
}

footer a,
footer span {
    font-family: "SF Pro Text Thin";
    font-size: 12px;
    color: white;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.info {
    display: flex;
    flex-direction: column;

    gap: 5px;
}

/*---------------------------------------------------------------*/
/*============================Queries============================*/
/*---------------------------------------------------------------*/

@media (min-width: 1024px) {
    /*----header----*/
    header {
        height: 50px;
    }

    .header-logo {
        height: 70px;
        width: 70px;
    }

    #sidebar-button {
        display: none;
    }

        .top-links {
        display: flex;
        justify-content: flex-end;
        width: 100%;

        gap: 40px;

        margin-right: 50px;
        
        background-color: rgba(255, 0, 0, 0);
    }

    .top-links a {
        font-family: "SF Pro Display Regular Italic";
        font-size: 20px;
        color: white;

        text-decoration: none;
    }

    .top-links a:hover {
        opacity: .7;
    }

    /*----hero----*/

    .title {
        padding-top: 20rem;
        font-size: 35px;
    }

    #service {
        font-size: 15px;
    }

    #desc {
        font-size: 20px;
        max-width: 80%;

        line-height: normal;
    }

    .cta, .contact-us {
        height: 60px;
        width: 160px;

        border-radius: 50px;

        font-size: 20px;
        color: white;
        text-shadow: black 1px 1px 2px;
        text-align: center;
    }

    .next {
        font-size: 50px;
    }

    /*----content----*/

    .content {
        padding: 20px;
    }

    .content div {
        width: 800px;
        gap: 30px;
        padding: 40px;
    }

    .content h1 {
        font-size: 50px;
        width: 900px;

        background-color: rgba(255, 0, 0, 0.116);
    }

    .content h2 {
        font-size: 20px;
        width: 700px;
    }

    .content p {
        font-size: 30px;
        width: 700px;
    }

    /*----TLDR----*/

    .TLDR img {
        margin-top: -50px;

        width: 110%;
    }

    /*----services----*/

    .service-buttons {
        display: flex;
        flex-direction: row !important;
    }

    .service-buttons button {
        display: flex;
        flex-direction: column;
        width: auto;
        height: auto;
    }

    .service-buttons button img {
        width: 160px;
    }

    .service-buttons span {
        font-size: 30px;
    }

    /*----CTA----*/

    .bottom-cta button {
    height: 60px;
    width: 160px;

    border-radius: 50px;

    font-size: 25px;
    }

    /*----CTA----*/

    footer {
        padding: 60px;
    }

    footer h1 {
        font-size: 40px;
    }

    footer a,
    footer span {
        font-size: 20px;
    }

    footer p {
        font-size: 15px;
    }
}