@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,200;9..40,300;9..40,400;9..40,500;9..40,600;9..40,700;9..40,800&family=Poppins:wght@200;300;400;500;600;700&display=swap');

:root{
    --title-font: "Poppins", Arial, Helvetica, Sans Serif;
    --text-font: "DM Sans", Arial, Helvetica, Sans Serif;

    --prmary-bg: #101010;
    --prmary-txt: #fff;
    --scndry-txt: #CFCFCF;


    --blu-lgt: #c8877b;
    --blu-acc: #C56B59;
    --blu-drk: #733a2f;

    --grn-acc: #54E8A3;


    --mono-lgt: #1a1a1a;


    --gradient-bg: linear-gradient(#000, var(--prmary-bg));
    --dashed-border: 2px #1C2E47 dashed;
}
html{
    font-size: 14px;
    overflow-x: hidden; /* Prevent horizontal scrolling */
    max-width: 100%; /* Ensure content does not cause overflow */
}
@media screen and (device-height < 1080px) and (orientation: landscape){
    html{
        font-size: 1.704vh;
    }
}
@media screen and (device-height < 1080px) and (orientation: portrait){
    html{
        font-size: 2.6vw;
    }
}


body{
    margin: 0;
    background-color: var(--prmary-bg);
    font-family: var(--text-font);
    color: var(--scndry-txt);
    font-size: .9rem;
}
*{
    position: relative;
}
h1,h2,h3,h4{
    margin: 0;
    font-family: var(--title-font);
}
h1{
    font-size: 4rem;
    font-weight: 600;
    line-height: 5rem;
}
h1 span{
    color: var(--blu-acc);
}
h2{
    font-size: 2.4rem;
    font-weight: 500;
    color: var(--blu-lgt);
}
.mob-only{
    display: none;
}
.sttl {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}
.column-flex,
.row-flex{
    display: flex;
    flex-direction: row;
    box-sizing: border-box;
}
.column-flex{
    flex-direction: column;
}
.spread{
    justify-content: space-between;
}
.spread.row-flex{
    width: 100%;
}
.spread.column-flex{
    height: 100%;
}
.pseudo{
    position: relative;
}
.pseudo::before,
.pseudo::after{
    content: '';
    display: block;
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}



.align-center{
    align-items: center;
}
.align-start{
    align-items: flex-start;
}
.align-end{
    align-items: flex-end;
}

.button-container1 {
    display: flex;
    gap: 1rem; /* Adjust spacing between buttons as needed */
    justify-content: flex-start; /* Center-align buttons, or use "flex-start" or "flex-end" for alignment */
}

.btn-solid-acc1 {
    display: inline-block;
}

button,input{
    font-family: inherit;
    font-size: inherit;
}

a{
    text-decoration: none;
    color:#4A90E2 !important;
}
a:hover{
    color:#306aff !important;
}
p{
    font-size: 16px;
}

.btn-solid-lgt{
    padding: 1rem 2rem;
    background-color: var(--blu-lgt);
    border: none;
    font-family: var(--title-font);
    font-weight: 700;
    color: var(--prmary-bg);
    cursor: pointer;
}
.btn-solid-acc {
    display: flex; /* Use flexbox */
    justify-content: center; /* Center content horizontally */
    align-items: center; /* Center content vertically */
    text-align: center; /* Center text */
    position: relative; /* Needed for absolute positioning of the icon */
    background-color: var(--blu-acc);
    font-family: var(--title-font);
    font-weight: 700;
    color: #fff !important;
    padding: 1.5rem 4.5rem; /* Adjust padding as needed */
    border: none;
    font-size: 1rem;
    width: auto; /* Adjust width as necessary, or remove if not needed */
}

.btn-solid-acc::after {
    content: ''; /* Ensure this is set to the icon you're using */
    position: absolute;
    right: 1rem; /* Adjust based on your design */
    top: 50%;
    transform: translateY(-50%);
    /* Add your background-image, width, and height here */
}
.btn-solid-acc.alt{
    background-color: #fff;
    color: var(--blu-acc) !important;
}
.absolute-center{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.gradient-bg{
    background-image: var(--gradient-bg);
}
.section{
    padding: 10rem 7% 10rem calc(7% + 7rem);
}



#top-navbar{
    padding: 3rem 5% 1rem calc(5% + 7rem);
    background-color: #000;
}
#top-navbar .rgt .link{
    padding: 0 2.4rem;
    font-weight: 500;
    transition: padding .3s, color .3s;
    color: white !important;
}
#top-navbar .rgt .link:hover{
    color:#306aff !important;
}
#top-navbar .rgt .link::after{
    width: calc(100% - 4.8rem);
    height: 2px;
    bottom: .3rem;
    opacity: 0;
    background-color: var(--blu-lgt);
    transition: opacity .3s;
}
#top-navbar .rgt .link:hover::after{
    opacity: 1;
}
#top-navbar .rgt .link:hover{
    padding-bottom: 1rem;
    color: var(--blu-lgt);
}
#top-navbar .rgt .btn-solid-lgt{
    margin-left: 2rem;
    padding-right: 2rem;
    font-size: 1rem;
}
#top-navbar .rgt .btn-solid-lgt::after{
    width: 1.2rem;
    height: 1.2rem;
    right: 2.2rem;
    top: 50%;
    transform: translateY(-50%);
    background-image: url(media/icons/rocket-drk.svg);
}
#top-navbar-logo{
    height: 2.8rem;
}

#lft-navbar{
    padding: 2rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    border-right: var(--dashed-border);
}
#lft-navbar .btm .link{
    width: 3rem;
    height: 4.2rem;
}
#lft-navbar .btm .link img{
    height: 1.4rem;
}

#index-intro{
    width: 100%;
}
#index-intro h1{
    font-size: 4rem;
    font-weight: 600;
    line-height: 5rem;
}
#index-intro h1 span{
    color: var(--blu-acc);
}
.main-sttl{
    font-size: 1.5rem;
    font-weight: 500;
    max-width: auto;
}
#index-intro-plans .card{
    width: 22rem;
    height: 22rem;
    margin: 0 2rem 0 0;
    padding: 2rem 3rem;
    background-color: #000;
    border-left: var(--dashed-border);

    /* temporary for globe overlay */
    z-index: 1;
}

#index-intro-plans .card .tag{
    position: absolute;
    padding: .5rem 2rem;
    background-color: var(--blu-acc);
    font-weight: 800;
    top: -1.5rem;
    right: 1.5rem;
    border-radius: 2rem;
    font-size: .8rem;
    font-family: var(--title-font);
    color: var(--prmary-txt);
}
#index-intro-plans .card h4 .name{
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--blu-acc)
}
#index-intro-plans .card h4 .price{
    font-size: 2.8rem;
    line-height: 2.8rem;
    font-weight: 600;
}
#index-intro-plans .card h4 .price sup{
    font-weight: 600;
    font-size: 1rem;
    vertical-align: baseline;
}
#index-intro-plans .card h4 .price sup.currency{
    font-size: 1.8rem;
}
#locations-intro ul,
#index-intro-plans .card ul{
    list-style: none;
    padding: 0;
}
#locations-intro li,
#index-intro-plans .card li{
    font-size: 1rem;
    padding: .3rem 0 .3rem 2.5rem;
}
#locations-intro li::before,
#index-intro-plans .card li::before {
    width: 1.2rem;
    height: 1.2rem;
    background-image: url(media/icons/check-blu-lgt.svg);
    left: 0;
}

#index-intro-plans .card li.unavailable::before {
    background-image: url(media/icons/x-red-lgt.svg); /* Replace with your 'X' icon */
}
#index-intro-plans .card .btn-solid-acc{
    position: absolute;
    bottom: -1rem;
    width: 16rem;
    box-sizing: border-box;
    padding: 1.2rem 1.2rem 1.2rem 0;
}
#index-intro-plans .card .btn-solid-acc::after{
    width: 1rem;
    height: 1rem;
    top: 50%;
    transform: translateY(-50%);
    right: 4rem;
    background-image: url(media/icons/rocket-wht.svg);
}
#index-intro-plans .card h4::before,
#index-intro-plans .card .btn-solid-acc::before{
    width: 2px;
    height: 2.4rem;
    left: -3rem;
    background-color: var(--blu-acc);
    top: 50%;
    transform: translate(-100%, -50%);
}


/*
DELETE ONCE THREE.JS WORKING :)
*/
#placeholder-globe{
    position: absolute;
    right: 0;
    z-index: 0;
    top: 20rem;
    height: 60rem;
}
#about-us .widget-column,
#features .widget-column{
    padding: 1.5rem 0 1.5rem 3rem;
    width: 33%;
    border-left: var(--dashed-border);
}
#about-us .widget-column .widget,
#features .widget-column .widget{
    padding: 2rem 0;
    width: 81%;
}
#features .widget .icon{
    margin-bottom: 1rem;
}
.widget .icon{
    max-width: 4rem;
    /* width: 4rem; */
    height: 4rem;
}
.widget h3{
    font-size: 1.4rem;
    font-weight: 600;
}
#about-us .widget-column .widget h3::before,
#features .widget-column .widget h3::before{
    width: 2px;
    height: 1.5rem;
    background-color: var(--blu-acc);
    left: -3rem;
    top: 50%;
    transform: translate(-100%, -50%);
}



#locations-map{
    margin-top: 3rem;
    min-width: 85rem;
    width: 85rem;
    height: 40rem;
    background-image: url(media/locations-map.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
#locations-map .location{
    position: absolute;
    width: .8rem;
    height: .8rem;
    background-color: var(--blu-acc);
    border-radius: 50%;
}
#locations-map .location::before{
    background-color: var(--blu-acc);
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse infinite 1s;
}
@keyframes pulse {
    from{
        width: .8rem;
        height: .8rem;
        opacity: .6;
    }
    to{
        width: 2rem;
        height: 2rem;
        opacity: 0;
    }
}
#locations-map .location.upcoming,
#locations-map .location.upcoming::before{
    background-color: var(--blu-lgt);
}
#locations-map .location.protected::before{
    background-color: var(--grn-acc);
}
#locations-map .location.protected{
    background-color: transparent;
    background-image: url(media/icons/rocket-grn.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    border-radius: 0%;
}
#locations-map .location .tag{
    position: absolute;
    padding: 1rem 1.5rem;
    background-color: var(--mono-lgt);
    left: 50%;
    transform: translateX(-50%);
    /* bottom: 1.5rem; */
    bottom: 0;
    z-index: 1;
    border-radius: .5rem;
    box-shadow: 0 0 1rem 0 rgba(0, 0, 0, .6);
    opacity: 0;
    pointer-events: none;
    transition: bottom .3s, opacity .3s;
}
#locations-map .location:hover .tag,
#locations-map .location .tag:hover{
    bottom: 1.5rem;
    opacity: 1;
    pointer-events: all;
}

#locations-map .location .tag::before{
    width: 1.2rem;
    height: .5rem;
    background-color: var(--mono-lgt);
    left: 50%;
    transform: translateX(-50%);
    bottom: -.5rem;
    clip-path: polygon(50% 100%, 0 0, 100% 0);    
}
#locations-map .location .tag p{
    font-size: .8rem;
    margin: 0;
    white-space: nowrap;
    color: var(--scndry-txt);
}
#locations-map .location .tag p span{
    font-size: 1rem;
    color: var(--blu-acc);
    font-weight: 600;
}
#locations-map .location.upcoming .tag p span{
    color: var(--blu-lgt);
}
#locations-map .location .tag p sup{
    font-size: .85rem;
    color: var(--prmary-txt);
    margin-top: .5rem;
    display: block;
}
#locations-map .location.upcoming .tag::after{
    content: "Coming Soon";
    white-space: nowrap;
    top: -.8rem;
    position: absolute;
    right: .5rem;
    padding: .15rem .5rem;
    font-size: .8rem;
    text-align: center;
    background-color: var(--blu-lgt);
    color: var(--prmary-bg);
    left: auto;
    transform: none;
    font-weight: 600;
    border-radius: 2rem;
}

#transparency .widget{
    width: 23%;
    height: 20rem;
    margin: 5rem 0;
    border: var(--dashed-border);
    padding: 3rem;
}
#transparency .widget .spread{
    margin: 0 0 auto;
}
#transparency .widget p{
    margin-bottom: 0;
    font-size: 1rem;
}
#transparency .widget .spread p{
    font-size: 6rem;
    line-height: 6rem;
    font-weight: 900;
    font-family: var(--title-font);
    margin: 0;
    color: var(--blu-acc);
}
#transparency .widget .spread p::after{
    width: 2px;
    height: 2.6rem;
    background-color: var(--blu-acc);
    right: -3rem;
    top: 50%;
    transform: translate(100%, -50%);
}
#transparency-quote h3{
    font-size: 2rem;
    font-weight: 500;
    text-align: right;
}
#transparency-quote h3::before,
#transparency-quote h3::after{
    width: 3rem;
    height: 3rem;
    top: -1.5rem;
    left: -4rem;
    background-image: url(media/icons/quote-left-solid.svg);
}
#transparency-quote h3::after{
    top: auto;
    left: auto;
    right: -4rem;
    bottom: 2.4rem;
    background-image: url(media/icons/quote-right-solid.svg);
}
#transparency-quote h3 sup{
    color: var(--blu-acc);
    font-size: 1.4rem;
    line-height: 4rem;
}


#about-us-graphic{
    width: 45rem;
    height: 20rem;
    background-color: #1F1F1F;
    margin: 1.5rem 0 3rem;
}
#about-us .lft p{
    max-width: 45rem;
}
#about-us .widget-column{
    width: 40%;
}

#faq h2{
    margin-bottom: 1.5rem;
}
#faq .dropdown{
    width: 90%;
}
#faq .dropdown button{
    padding: 1rem 2rem;
    font-size: 1.2rem;
    align-items: center;
    font-weight: 500;
    background-color: transparent;
    border: none;
    color: var(--prmary-txt);
    border-bottom: var(--dashed-border);
    cursor: pointer;
    transition: border-color .3s;
}
#faq .dropdown button:hover{
    border-color: var(--blu-lgt);
}
#faq .dropdown.active button{
    border-color: var(--blu-acc);
}
#faq .dropdown button .plus{
    font-size: 2rem;
    font-weight: 800;
    color: var(--blu-drk);
    transition: color .3s;
}
#faq .dropdown button:hover .plus{
    color: var(--blu-lgt);
}
#faq .dropdown.active button .plus{
    color: var(--blu-acc);
}
#faq .dropdown .content{
    padding: 0 2rem;
    font-size: 1rem;
    height: 0;
    overflow: hidden;
    transition: height .3s .3s, padding .3s .3s;
}
#faq .dropdown.active .content{
    padding: 1.5rem 2rem;
    height: max-content;
    transition: height .3s, padding .3s;
}
#faq .dropdown .content *{
    opacity: 0;
    transition: opacity .3s;
}
#faq .dropdown.active .content *{
    opacity: 1;
    transition: opacity .3s .3s;
}
#faq .divider{
    margin: 5rem 0;
}

#faq-locations h2{
    margin-bottom: 1.5rem;
}
#faq-locations .dropdown{
    width: 90%;
}
#faq-locations .dropdown button{
    padding: 1rem 2rem 1rem 2rem;
    font-size: 1.2rem;
    align-items: center;
    font-weight: 500;
    background-color: transparent;
    border: none;
    color: var(--prmary-txt);
    border-bottom: var(--dashed-border);
    cursor: pointer;
    transition: border-color .3s;
}
#faq-locations .dropdown button:hover{
    border-color: var(--blu-lgt);
}
#faq-locations .dropdown.active button{
    border-color: var(--blu-acc);
    padding: 0rem 2rem 0.5rem 2rem;
}
#faq-locations .dropdown button .plus{
    font-size: 2rem;
    font-weight: 800;
    color: var(--blu-drk);
    transition: color .3s;
}
#faq-locations .dropdown button:hover .plus{
    color: var(--blu-lgt);
}
#faq-locations .dropdown.active button .plus{
    color: var(--blu-acc);
}
#faq-locations .dropdown .content{
    padding: 0 2rem;
    font-size: 1rem;
    height: 0;
    overflow: hidden;
    transition: height .3s .3s, padding .3s .3s;
}
#faq-locations .dropdown.active .content{
    padding: 1.5rem 2rem 0rem 2rem;
    height: fit-content;
    transition: height .3s, padding .3s;
}
#faq-locations .dropdown .content *{
    opacity: 0;
    transition: opacity .3s;
    max-width: max-content;
}
#faq-locations .dropdown.active .content *{
    opacity: 1;
    transition: opacity .3s .3s;
}
#faq-locations .divider{
    margin: 9rem 0;
}

.mirrors-content {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    justify-items: center;
    gap: 2px; /* Further reduced gap between the image and the text */
}

.mirrors-graphic img {
    align-items: right;
    max-width: 100%; /* Ensures the image scales nicely */
    height: auto; /* Maintains the aspect ratio */
}

.mirrors-text-section {
    text-align: left; /* Left-align the text */
    max-width: 600px; /* Adjust the width to fit the desired space */
}

.mirrors-text-section h1 {
    font-size: 2em;
    color: #4A90E2; /* Adjust the color to match your design */
    margin-bottom: 10px; /* Adjust spacing between the header and paragraph */
}

.mirrors-text-section p {
    font-size: 1.2em;
    margin: 0;
    line-height: 1.5;
    width: 100%; /* Ensure the paragraph takes up the full width of the text section */
}

footer{
    padding: 8rem 7% 4rem calc(7rem + 7%);
    background-color: #090B0B;
}
#footer-company-info img{
    width: 18rem;
}
#footer-company-info .sttl{
    text-align: right;
    font-weight: 600;
    line-height: 2rem;
    margin: 0 0 1rem;
}
#footer-company-info .socials{
    margin-right: -1rem;
}
#footer-company-info .socials .link{
    width: 2.8rem;
    height: 3rem;
    margin: .5rem;
    transition: transform .3s;
}
#footer-company-info .socials .link .icon{
    height: 1.8rem;
    opacity: .6;
    width: auto;
    transition: opacity .3s;
}
#footer-company-info .socials .link:hover{
    transform: translateY(-.5rem);   
}
#footer-company-info .socials .link:hover .icon{
    opacity: 1;
}

footer .top .rgt{
    width: 50%;
    justify-content: space-between;
}
footer .top .rgt .column-flex{
    width: 30%;
    height: 10rem;
}
footer .top .rgt h4{
    color: #69A2FF;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 1rem 0 .3rem;
}
footer .top .rgt .link{
    font-size: 1rem;
    padding: .15rem 0;
    color: var(--scndry-txt) !important;
    transition: padding .3s;
}
footer .top .rgt .link:hover{
    padding-left: .5rem;
    color:#306aff !important;
}
footer .divider{
    width: 100%;
    height: 2px;
    background-color: #151719;
    margin: 3rem 0 2rem;
}
footer .btm .rgt img{
    height: 2.4rem;
    margin-left: .5rem;
}

.vortex-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.vortex-image-container {
    position: absolute;
    top: 3rem; /* Adjust based on your design */
    right: 6rem; /* Adjust based on your design */
    width: 720px; /* Adjust based on your design */
    max-width: 100%; /* Ensure the image is responsive */
}



#locations-intro ul{
    width: 20rem;
    margin-bottom: 3rem;
}
#locations-intro li{
    font-size: 1.2rem;
    padding: .5rem 0 .5rem 2.5rem;
}
#locations-intro li::before{
    width: 1.4rem;
    height: 1.4rem;
}
#locations-intro .btn-solid-acc{
    margin-right: 1.5rem;
    padding-right: 6rem;
}
#locations-intro .btn-solid-acc::after{
    width: 1.5rem;
    height: 1.5rem;
    right: 4rem;
    top: 50%;
    transform: translateY(-50%);
    background-image: url(media/icons/rocket-wht.svg);
}
#locations-intro .btn-solid-acc.alt::after{
    background-image: url(media/icons/telescope-blu-acc.svg);
}


@media screen and (orientation: portrait) {
    body{
        width: 100%;
        overflow-x: hidden;
    }
    .mob-column{
        flex-direction: column;
    }
    .mob-only{
        display: block;
    }
    .section{
        padding: 10rem 8%;
    }


    #top-navbar .rgt{
        display: none;
    }
    #top-navbar{
        padding: 3rem 8% 1rem;
    }
    #mob-nav-btn{
        width: 3rem;
        height: 2.4rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        background-color: transparent;
        border: none;
        align-items: flex-end;
    }
    #mob-nav-btn .bar{
        width: 3rem;
        height: .3rem;
        background-color: var(--blu-lgt);
    }
    #mob-nav-btn .bar.short{
        width: 2rem;
    }
    #lft-navbar{
        display: none;
    }


    #index-intro *{
        z-index: 1;
    }
    #index-intro #placeholder-globe{
        z-index: 0;
    }
    #index-intro-plans .card{
        width: 80%;
        height: 24rem;
        margin: 3rem 0;
    }
    #index-intro-plans .card .btn-solid-acc{
        width: calc(100% - 5rem);
    }
    #index-intro-plans .card .btn-solid-acc::after{
        right: 30%;
    }


    #about-us .widget-column, #features .widget-column{
        width: 100%;
        margin-top: 3rem;
    }
    #transparency .widget{
        width: 80%;
        margin: 0 0 3rem;
    }
    #transparency .btn-solid-acc{
        margin: 3rem 0 6rem;
    }
    #transparency-quote{
        margin-top: 3rem;
        align-self: center;
    }
    #about-us-graphic{
        width: 100%;
    }
    #about-us .widget-column .widget{
        width: 100%;
    }

    #locations-map{
        min-width: 100%;
        width: 100%;
    }


    #faq h2{
        text-align: center;
    }
    #faq .btn-solid-acc{
        margin-top: 1.5rem;
        width: 80%;
    }
    footer{
        padding: 8rem 10% 4rem;
    }
    #footer-company-info{
        align-items: center;
    }
    footer .top .rgt{
        width: 100%;
        align-items: center;
    }
    footer .top .rgt .column-flex{
        width: 100%;
        margin: 1.5rem 0;
        align-items: center;
    }
    footer .btm .rgt{
        margin-top: 1.5rem;
    }
}

.svg-icon {
    width: 20px; /* Adjust based on your SVG's size */
    height: 20px; /* Adjust based on your SVG's size */
    background-image: url('./rocket.svg');
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px; /* Adjust the spacing between the button and the icon */
}

/* This will style the main scrollbar */
::-webkit-scrollbar {
    width: 12px; /* or any other measurements */
}

/* This will style the track (or progress bar) of the scrollbar */
::-webkit-scrollbar-track {
    background: #0e0e0e; /* or any other color or gradient */
    border-radius: 10px; /* optional: for rounded corners */
}

/* This will style the handle of the scrollbar */
::-webkit-scrollbar-thumb {
    background: #306aff; /* or any other color or gradient */
    border-radius: 10px; /* optional: for rounded corners */
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #306aff; /* or any color you prefer when the mouse hovers over it */
}

