*{
    box-sizing: border-box;
    margin:0;
    padding: 0px;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.navbar {
    width: 100%;
    background: #464644;
    height: 4rem;
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar__container{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 4rem;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.mobile-menu-toggle {
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001; /* Make sure it's on top of the menu overlay */
}

.mobile-menu-toggle:hover .bar {
    background-color: #f8f3ce5d;
    transition: all 0.3s ease-in-out;
}

.mobile-menu-toggle .bar {
    width: 30px;
    height: 3px;
    background-color: white;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}


#navbar__logo{
    background-color: white;
    background-image: white;
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    display: flex;
    align-items: center;
    cursor:pointer;
    text-decoration: none;
    font-size: 2rem;
    padding: 0 auto;
    margin-left: 20px;
}

.navbar__menu{
    display: flex;
    justify-content: flex-end;
    width: 100%;
    align-items: flex-end;
    list-style: none;
}
.navbar__item{
    
    height:80px;
}

.navbar__links{
    color:rgb(158, 35, 35);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-decoration: none;
    padding: 0 1rem;
    height: 100%;
}

.pages__menu__mobile{
    position: fixed; /* Positions the menu relative to the viewport */
    top: 0;
    left: 0;
    width: 65%; /* The width of your side menu */
    height: 100vh; /* Make it take up the full viewport height */
    
    /* This is the key to positioning the menu off-screen */
    transform: translateX(-100%);
    transition: transform 0.4s ease-in-out; /* Animates the slide-in/out effect */

    background-color: #464644; /* A background color for the menu */
    z-index: 1000;
    
    /* Other mobile menu layout styles */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 5rem;
    list-style: none;

    
}

.close-menu-btn {
    position: absolute; /* Positions the button relative to the menu container */
    top: 1rem;
    left: 1rem;
    background: transparent;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 1001; /* Ensure it's on top of the menu items */
}

.close-menu-btn2 {
    position: absolute; /* Positions the button relative to the menu container */
    top: 1rem;
    left: 1rem;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001; /* Ensure it's on top of the menu items */
}


.close-menu-btn:hover {
    color: #f8f3ce5d;
    /* transition: cubic-bezier(0.075, 0.82, 0.165, 1); */
    
  }

.welcome-text{
    position: absolute; /* Positions the button relative to the menu container */
    top: 1rem;
    left: 3rem;
    background: transparent;
    border: none;
    color: white;
    font-size: 2.3rem;
    cursor: pointer;
    background-image: white;
    background-color:white;
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    display: flex;
    align-items: center;
    cursor:pointer;
    text-decoration: none;
    z-index: 1001; /* Ensure it's on top of the menu items */
}

.pages__menu__mobile.active {
    transform: translateX(0);
}

.pages__items{
    height: auto;
    width: 100%;
    align-items: left;
}

.pages__links{
    color:#F8F3CE;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
    padding: 1.5rem 2rem;
    font-size: 1rem;
    height: 100%;
    border-top: 0.5px solid #cccccc34;
    border-bottom: 0.5px solid #cccccc34;

}


.pages{
    background: #7A7A73;
    height: 60px;
    display: none; /*Keep eye on */
    justify-content: center;
    align-items: center;
    font-size: 1.0rem;
    position: sticky;
    top: 0;
    z-index: 999;
}

.pages__container{
    display: flex; /*Keep eye on */
    justify-content: space-between;
    height: 60px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
}

.pages__menu{
    display: flex;
    align-items: center;
    list-style: none;
    text-align: center;
}

.pages__items__desk{
    height: auto;
    width: 100%;
    align-items: left;
}

.pages__links__desk{
    color:#F8F3CE;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
    padding: 1.5rem 2rem;
    font-size: 1rem;
    height: 100%;

}


.navbar__links:hover {
    color:#f7e667;
    transition: all 0.3s ease;
}
.pages__links:hover{
    color: #f7e667;
    transition: cubic-bezier(0.075, 0.82, 0.165, 1);
}

/* Styles for the mobile menu when it is active (toggled open) */

.pages__menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px; /* Position below the pages bar */
    width: 100%;
    background-color: #7A7A73;
}

.welcome__container{
    display: flex; 
    justify-content: space-between;
    height: 200px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;

}
.about__metae7 {
    max-width: 600px;
    margin: 2rem auto;
    padding: 1rem;
    background-color: #3ac36a;
    color: #57564F;
    border-radius: 8px;
    font-family: Arial, sans-serif;
  }
  
  .about__metae7 h2 {
    margin-bottom: 0.5rem;
  }
  
  .about__metae7 p {
    line-height: 1.6;
  }

@media screen and (min-width: 768px) {
    .navbar {
        height:5rem;
    }
    
    .navbar__container{
        height: 5rem;
        padding: 0 20px;
    }
    
    #navbar__logo{
        font-size: 2.3rem;
    }
    
    .pages {
        display: flex; 
        flex-direction: row;
    }
    
    /*DISABLE MENU*/
    .mobile-menu-toggle {
        display: none; 
    }
    .pages__menu__mobile{
        display: none;
    }
}

/* Adjust container padding for mobile */
@media screen and (max-width: 768px) {

}
