

/* Use javascript to attach links to socials, makes the code more scalable and maintainable */
/* Clean up comments and put content-div section css in another css folder */
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

html{
    scroll-behavior: smooth;
}



:root {

    --base-bg-color: black;
    --nav-elements-color: black;

    
}



.light-mode{
    transition: all 0.7s ease-in;
    /* --base-bg-color: #002B64; */
    --header-color: rgb(0, 0, 91);
    --header-shadow:0px 0px 30px rgba(0, 0, 0, 0.574);

    /* --logo-color: url(../assets/logo-light.png); */
    --logo-text-color: white;
    --nav-container-color: rgb(0, 0, 91);
    --nav-border-color: rgba(0, 0, 0, 0.573);
    --nav-elements-color: white;
    --bar-color: white;
}

.dark-mode{
    transition: all 0.7s ease-in;
    --base-bg-color: black;
    --header-color: rgb(0, 0, 91);
    --header-shadow:0px 0px 30px rgba(0, 0, 0, 0.574);
    /* --logo-color: url(../assets/logo-dark.png); */
    --logo-text-color: white;
    --nav-container-color: rgb(0, 0, 91);
    --nav-border-color: rgba(255, 255, 255, 0.71);
    --nav-elements-color: white;
    --bar-color: white;
}

/* Add color scheme to root and comment out the modes */

body{
    
    background-color: rgb(230, 197, 255);
    position: relative;

    
}

.trigger-point{
    z-index: -1;
    position: fixed;

    width: 100%;
    bottom: 40vh;
    height: 10vh;


}
/* 

.header-div{
    height: 90px;
    width: 100%;
    display: grid;
    align-items: center;
    justify-items: center;
    position: absolute;
    top: 0;
    z-index: 2;
    
    

}

.logo-div{
    height: 100px;
    width: 300px;
    display: grid;
    justify-items: center;
    align-items: center;
    padding: 0px 10px 0px 10px;
    border-radius: 15px;

    position: relative;
    
}


.logo-img{
    width: 200px;
    height: 100px;
    position: absolute;
    object-fit: cover;
}

.logo-text{
    color: var(--logo-text-color);
    font-size: 17px;
    font-weight: bold;
    font-family: CairoPlay, Arial, Helvetica, sans-serif;
    justify-self: start;
}

.nav-menu-div{
    display: grid;
    align-items: center;
}

.main-nav {
    display: grid;
    align-items: center;
    justify-items: center;
}

.scroll-message{
    display: none;
}

.main-nav > ol {
    list-style-type: none;
    display: grid;
    gap: 10px;
    grid-auto-flow: column;  
    align-items: center;
    justify-items: center;
    width: 810px;
    height: 45px;
    white-space: nowrap;
    padding: 0px 20px 0px 20px;
    

}

.main-nav li {
    cursor: pointer;
    width: 100px;
    font-size: 18px;
    display: grid;
    justify-items: center;
    align-items: center;
}

.main-nav li.active{
    border-bottom:1px solid var(--nav-elements-color);
    transition: none;
}

.main-nav li:hover {
    border-bottom:1px solid var(--nav-elements-color);
    transition: all 0.3s ease-in-out;
}

.main-nav a {
    text-decoration: none;
    appearance: none;
    color: var(--nav-elements-color);
    font-family: CairoPlay, Arial, Helvetica, sans-serif;
    font-weight: bold;
}


.main-nav a:link {
    color: var(--nav-elements-color);
    text-align: center;
    width: 100%;
}

.main-nav a:visited {
    color: var(--nav-elements-color)
}

.color-scheme-toggle {
    width: 100%;
    height: 100%;
    display: grid;
    justify-items: center;
    align-items: center;

    display: none;
    
}


.toggle-theme {
    appearance: none;
    border-radius: 100px;
    border: none;
    background: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.light-mode-toggle{
    transition: all 0.5s ease-in-out;
   
    background-size: cover;
}

.dark-mode-toggle{
    transition: all 0.5s ease-in-out;

    background-size: cover;
}

 */



.footer-div{
    transition: all 0.5s ease-in-out;
    width: 100%;
    display: grid;
    justify-items: center;
    align-items: center;
    /* border-radius: 15px 15px 0px 0px; */
    background-color: rgb(68, 0, 68);
    /* box-shadow: var(--header-shadow); */
    margin-top: -20px;
    /* box-shadow: 0px -90px 100px rgb(69, 0, 101); */
    
}

.quicklinks-container a,
.bytemetrica-footer a {
    color: white;
    font-size: 12px;
    font-weight: 100;
    text-decoration: none;
    display: grid;
    justify-items: center;
    align-items: center;
    width: 70px;
    height: 20px;
    
}

.quicklinks-container a:hover,
.bytemetrica-footer a:hover{
    border-bottom: 1px solid var(--logo-text-color);
}

footer{
    display: grid;
    justify-items: center;
    padding-top: 30px;
    width: 100%;
    gap: 20px;

}

.footer-logo-link{
    text-decoration: none;
}

.footer-logo{
    display: grid;
    justify-items: center;
}

.footer-logo-img{
  
    height: 80px;
    width: 80px;
    /* background-size: cover; */
    background-color: rgb(230, 197, 255);
    border-radius: 45px;
    position: relative;
}

.footer-logo-img > img{
    height: 100px;
    width: 100px;
    background-size: cover;
    position: absolute;
    top: -9px;
    left: -12px;

    background-position: center;
}

.footer-logo-text{
    color: white;
    font-size: 17px;
    font-weight: bold;
    font-family: CairoPlay, Arial, Helvetica, sans-serif;
    justify-self: start;

   
}

.quicklinks-container{
    width: 100%;
    display: grid;
    justify-items: center;
    gap: 5px;
}

.quicklinks-title,
.socials-title{
    color: white;
    font-weight: bold;
    font-size: 13px;
}

.quicklinks-div{
    width: min(100%, 500px);
    display: grid;
    padding: 0px 80px;
    
}

.quicklinks-div > ol{
    display: grid;
    list-style-type: none;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    row-gap: 10px;
    justify-items: center;
}

.quicklinks-div li{
    display: grid;
    align-items: center;
    justify-items: center;
    width: 100%;
  
}

.quicklinks-div li:last-child{
    border-right: none;
}

.socials-container{
    display: grid;
    gap: 10px;
    justify-items: center;
}

.socials-div{
    display: grid;
    gap: 20px;
    grid-auto-flow: column;
    
}

.socials-div a,
.socials-div a:hover{
    height: 25px;
    width: 25px;
    border: none;
}

.facebook-logo,
.instagram-logo,
.tiktok-logo,
.linkedin-logo{
    height: 25px;
    width: 25px;
    background-size: cover;
    cursor: pointer;
}


.footer-bottom,
.footer-bottom a{
    display: grid;
    grid-auto-flow: column;
    color: white;

    font-size: 12px;
    width: 100%;
    justify-items: center;
    align-items: center;
}

.footer-bottom a:hover{
    border: none;

}




.fourth-footer{
    position: relative;
    width: 100%;
    display: grid;
    align-items: center;
    justify-items: center;
    gap: 10px;
}

.bytemetrica-footer{
    width: 100%;
    display: grid;
    justify-items: center;
    align-items: end;
    text-align: center;
    white-space: nowrap;

}

.bytemetrica-footer a{
    height: 20px;
    width: fit-content;
}

.back-to-top-div{
    
    cursor: pointer;
    display: grid;
    color: white;
    font-size: 23px;
    height: 40px;
    width: 40px;
    align-items: center;
    justify-items: center;
    border-radius: 50px;
    border: 1px solid rgb(230, 197, 255);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
   
    
}

.footer-bottom{
    height: 40px;
    padding: 0px 30px 5px 30px;
    text-align: center;
    display: grid;
    align-items: end;
}