/* ========== import ========== */
@import url(https://fonts.googleapis.com/css2?family=Iosevka+Charon+Mono:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap);

/* ========== roots ========== */
:root{
    --white:#fff;
    
    --background-overlay: linear-gradient(
    to bottom,
    rgb(0, 0, 0),
    rgba(0, 0, 0, 0.322) );
    
    --card-bg:#000000ab;
    
    --gallary-card-bg-overlay: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.801),
    rgba(0, 0, 0, 0) );

    --body-font: "Iosevka Charon Mono", monospace;
    --font-weight: 400;
    --active-font-weight: 700;
    --p: 1.0625rem;
    --h5: 1.375rem;
    --h4: 1.875rem;
    --btn-font-size: 1.0625rem;
    --btn-padding: 12px;
    
    --hgap: clamp(20px, 5.291vw, 40px);
    --vgap: clamp(20px, 5.291vw, 40px);
    --box-padding: clamp(12px, 5.291vw, 40px);
    --mobile-paddding: 12px;
    --gallary-padding: clamp(8px, 5.291vw, 16px);

}

/* ========== BREAKPOINT: 756px and above ========== */

@media (min-width: 765px){
    .showOnMob{
        display: none;
    }
}
@media (max-width: 765px){
    .showOnDesktop{
        display: none;
    }
}
*, *::before, *::after{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}   
html{
    height: 100%;
    scroll-behavior: smooth;
}
body{
    min-height: 100vh;
    font-family: var(--body-font);
    line-height: 32px;
    text-decoration: none;
    color: var(--white);
    margin: 0;
}
.body{
    flex: 1;
    height: 100vh;
    justify-content: space-between;
    align-items: center;
}
ul, li, a {
    font-family: var(--body-font);
    text-decoration: none;
    cursor: pointer;
    list-style-type: none;
    color: #ffffffbe;
    font-weight: var(--font-weight);
    font-size: var(--p );
}
ul, li, a:hover {
    color: var(--white);
    font-weight: var(--active-font-weight);
}
ul, li, a.active {
    color: var(--white);
    font-weight: var(--active-font-weight);
}
h4{
    font-size: var(--h4);
    font-weight: 500;
}
h5{
    font-size: var(--h5);
    font-weight: 500;
}
p{
    font-size: var(--p);
    font-weight: 400;
}
.row{
    display: flex;
    flex-direction: row;
    gap: var(--vgap);
}
.column{
    display: flex;
    flex-direction: column;
    gap: var(--hgap);
}
.pad{
    padding: var(--mobile-paddding);
}@media (min-width: 765px){
    .pad{
    padding: var(--box-padding);
}
}
.mob-pad{
    padding: var(--mobile-paddding);
}@media (min-width: 765px){
    .mob-pad{
    padding: 0px;
}
}
.slider-background{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: 1.5s ease-in-out; 
    transform: 8s ease-out;
    transform: scale(1);
}

.slide.active {
    opacity: 1;
    transform: scale(1.05);
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background-overlay);
    z-index: 1;
}
.progress-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.8);
    width: 0%;
    z-index: 10;
    transition: 0.1s linear;
}
.center{
    align-content: center;
    justify-content: center;
    align-items: center;
}
.box-width{
    width: 100%;
    max-width: 760px;
}
.justify {
    width: 100%;
    justify-content: space-between;
}
.mobile-nav {
    background-color: var(--card-bg);
    border-radius: 0px 0px 16px 16px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 200;
            
            /* Start hidden above the viewport */
            transform: translateY(-100%);
            opacity: 0;
            pointer-events: none;
            transition: transform 0.5s ease, opacity 0.5s ease;
}
@media (min-width: 765px){
    .mobile-nav{
        display: none;
    }
}
.mobile-nav.active {   
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}
.mobile-nav ul li{
    width: 100%;
    padding: 8px;
    text-align: center;
    background-color: var(--card-bg)
}
.pointer{
    cursor: pointer;
}
.menu-icon, .close-btn{
    background-color: transparent;
    border: none;
    cursor: pointer;
}
main{
    width: 100%;
    justify-content: end;
}
@media (min-width: 765px){
    main{
        width: calc(100% - 4px);
    }
}
.welcome{
    width: 100%;
    align-items: end;
}
.welcome p{
    width: 100%;
    text-align: center;
}@media(min-width: 756px){
    .welcome p{
        width: 520px;
    }
}
.card{
    background-color: var(--card-bg);
    border-radius: 16px;
    align-items: center;
}
.textcenter{
    text-align: center;
}
