@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

    *::before,
    *::after {
        box-sizing: border-box;
    }


html {
    font-family: "Noto Sans", serif;
    font-size: 14px;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 150;
    color: #34495e;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

.pageNavigation a:active{
    color:red !important;
}
.clicked {
    color: red !important;
}
/*
    logo
*/
.logo-container {
    display:flex;
    transition: transform 0.3s ease-in-out;
    justify-content: center;
}

.logo-container:hover {
    transform: scale(1.30);
    cursor:crosshair;
}

/*Body*/
body {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f1f2f6;
}

.body-container {
    display: flex;
    flex-direction: column;
    position:relative;
    width: 75%;   
}
.cartoon {
    margin-right:2rem;
    width:50px;
    border-radius: 20%;
    border: 2px solid white;
    object-fit: cover;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}
/* Common Navigation */
.main-nav {
    margin-top: 1.4rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 50px;
}
.main-nav .wide-nav > ul {
    display: flex;
    flex-wrap:nowrap;
    padding: 0;
    margin: 0;
    list-style: none;
    justify-content: center;
}
.main-nav .wide-nav .logo {
  height: 1.7rem; 
  width: auto;
}
.main-nav .wide-nav> ul li{
    display: inline-block;
}
.main-nav .wide-nav> ul li a{
    display:block;
    transition: transform 0.3s ease-in-out;
    text-decoration:none;
    color: #34495e;
    font-size:1.5rem;
    font-weight:200;
}
.main-nav .wide-nav ul li:not(:first-child) {
    margin-left: clamp(1rem, 5vw, 2.1rem);
}
.main-nav .wide-nav> ul li a:hover {
    color: #ffb142;
    transform: scale(1.05);
    cursor:pointer;
 }

.social-icons{
    display:flex;
    flex-wrap:nowrap;
}
/* Hamburger */

.hamburger {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 0.03rem solid #ffb142;
    padding: 8px 6px 8px 6px;
    border-radius: 5px;
    gap: 4px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}
.hamburger:hover {
    gap:5px;
}
.hamburger-nav {
    display: block;
    width: 30px;
    height: 2px;
    background-color: #ffb142;
    transition: all 0.3s ease-in-out;
}



/* Button contact */
button {
    background-color: #f1f2f6;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 7px;
    width: 100px;
    height: 40px;
    align-content: center;
    font-size: 0.9rem;
    border: 1px solid #ffb142;
    cursor: pointer;
    color: #ffb142;
    transition: transform 0.4s ease-in-out;
}

button:hover {
    background-color: #ffb142;
    color: whitesmoke;
    transform: scale(1.1);
}

/* Class main wrapper*/
.main-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    align-items: center; 
}

/* Mobile verison */
.mobileMenu {
    position: fixed;
    top:0;
    z-index: 1000;
    opacity: 0.8;
    background-color: #ccae62;
    display: none;
    flex-direction: column;
    align-items:center;
    width: 100%;
    height:100%;
    align-content:center;
}
.mobileMenu ul {
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-content:center;
    list-style: none;
    text-decoration: none;
    width:100%;
 }
.mobileMenu ul li {
    color: white;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-content:center;
    height:100px;
    text-align:center;
}
.mobileMenu ul li a {
    display: block;
    width: 100%;
    text-decoration: none;
    color: white;
    font-weight: 300;
    font-size: 2rem;
    height:100%;
    padding: 2rem;
}
.mobileMenu ul li:hover {
 background-color:#ffda79;
 cursor:pointer;
}

#menuModalCloseBtn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 30px;
    height: 30px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #ffb142;
    border: 1px solid #ffb142;
}

@media (max-width: 768px) {
    .main-nav .wide-nav{
        display: none;
    }
    button {
        font-size: 0.6rem;
    }
}

/* Footer */

.footer {
    display: flex;
    justify-content: center;
    flex-direction: column;
    background-color: #d1ccc0;
    height: 170px;
    font-size: 1.3rem;
    background-color: #ccae62;
    align-content: space-between;
    align-items: center;
    font-weight: 400;
}
.footer{
 margin-top: 2rem
}
.footer div{

}

.footer div:not(:first-child) {
    margin-top: clamp(0.2rem, 5vw, 0.5rem);
}
.footer div ul {
    list-style: none;
 }

.footer div ul li {
    list-style: none;
    display: inline-block;
    text-decoration: none;
 }
.foot-button {
    color: #84817a;
    border: 1px solid #84817a;
}
.foot-button:hover {
    color: #84817a;
    background-color: white;
}

@media (max-width: 768px) {

    .body-container {
        display: flex;
        flex-direction: column;
        position: relative;
        width: 100%;
    }
    .hamburger {
        display: flex;
    }

    .main-nav {
        margin-left: 0;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        gap: 50%;
    }

    .logo-container {
        margin: 0;
        padding: 0;
    }

    .mobileMenu {
        display: none;
        position:fixed;
    }
}

