@import url('https://fonts.googleapis.com/css2?family=Poppins: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&family=Winky+Sans:ital,wght@0,300..900;1,300..900&display=swap');

:root {
    --body-background-color: rgb(26, 26, 26);
    --menu-bar-background-c0lor: rgba(0, 0, 0, 0.9);
    --nav-opacity: 1;
}

body{
    background-color: var(--body-background-color);
    padding-top: 125px; /*Empty space mimicking the header-menu
    so other div do not change position*/
    margin: 0;

    display: flex;
    flex-direction: column;
}

#header-menu{
    background-color: rgba(0, 0, 0, var(--nav-opacity, 0.9));
    width: 100%;
    
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    transition: background-color 0.3s ease;
}

.nav-list{
    list-style: none; /* remove list format style */

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

    padding: 10px;
}

.nav-items, .nav-items a{ /* apply same style to id that dont have a-tags also (contact) */
    color: rgba(255, 255, 255, var(--nav-opacity));
    width: fit-content; /* Pointer only change when over text*/
    cursor: pointer;

    text-decoration: none; /* remove underline for <a> */
    font-size: 20px;
    font-weight: bold;

    margin: 0 20px;

    transition: 150ms;
}

.nav-items:hover, .nav-items a:hover{
    color: orange;
}

/* ------------------- */

.drop-down{
    color: rgba(150, 150, 150, var(--nav-opacity));
    font-size: 50px;
    cursor: pointer;
    position: absolute;
    right: 2%;
    z-index: 2;
}

.drop-down:hover{
    color: rgb(255, 255, 255);
}

.dropdown-menu{
    background-color: rgba(53, 53, 53);
    color: white; 
    text-align: center;
    opacity: var(--nav-opacity);

    position: fixed;
    width: 5%;
    
    padding: 1%;
    right: 0;
    top: 9%;
    z-index: 3;
}

#login:hover, a:hover{
    color: white;
    text-decoration: underline;
}

#login a{
    list-style: none;
    font-size: 20px;
    color: white;
    cursor: pointer;
}

/* -------------------------------------------- */
.introduction-container{
    color:white;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch; /* make about and image container same hegiht */
    flex-wrap: wrap;
}

.intro-items{
    margin: 20px;
    padding: 60px;


    display: flex;
    box-sizing: border-box;

    transition: 200ms;
}

#image-area-container{
    background-color: rgb(43, 43, 43);
    border-radius: 20px;
    width: 45%;

    padding: 80px 40px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;   
}

#about-container{
    font-family: "Poppins", sans-seri;
    background-color: gray;
    border-radius: 20px;
    width: 45%;
    padding: 50px 40px;

    display:flex;
    flex-direction: column;
}

#image-area-container:hover, #about-container:hover {
    translate: 0 10px;
}

span{
    color: white;
    margin: 15px 0;
    font-family: "Poppins", sans-seri;
}

img{
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    /* box-shadow: [horizontal offset] [vertical offset] [blur radius] [spread radius] [color]; */
}

p {
    margin: 10px 0;
    font-size: 20px;
}

strong, .my-name {
    font-family: "Poppins", sans-seri;
    font-weight: bolder;
}


.site-purpose{
    background-color: rgb(92, 92, 92);
    text-align: center;

    margin: 60px auto 60px auto; /* top, left, bottom, right */
    padding: 50px 40px;
    height: auto;
    width: 70%;
    border-radius: 20px;

    display: flex;
    flex-direction: column;
    transition: 150ms;
}

.site-purpose:hover{
    translate: 0 10px;  
}


.contact-container{
    margin-bottom: 0;
    margin-top: 100px;

    background-color: rgb(255, 165, 0);
    font-family: "Poppins", sans-seri;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.nav-list2{
    padding: 20px 0;
    margin: 0;
    font-size: 15px;


    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
}
.nav-items2, .nav-items2 a{
    text-decoration: none;
    margin: 6px 0;
}

h1{
    font-family: "Poppins", sans-seri;
    font-size: 50px;
    color: orange;
    text-align: center;

    padding: 0 0 10px;
    margin: 0;
}

a{
    text-decoration: none;
}




