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

body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f4f4f4;
}

/* header {
    background: #FFB847;
    color:  #333333;
    padding: 1rem;
    text-align: center;
} */
/* 
nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color:  #333333;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background 0.3s;
}

nav ul li a:hover {
    background: white;
} */

main {
    flex: 1;
    padding: 20px;
    text-align: center;
}

footer {
    background: black;
    color: white;
    text-align: center;
    padding: 1rem;
    width: 100%;
}

/* .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    color:  #333333;
    flex-wrap: wrap;
    height:10vh;
}

.logo {
    height:100%;
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav ul li {
    display: inline;
}

.nav ul li a {
    color:  #333333;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background 0.3s;
}

.nav ul li a:hover {
    background: white;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }

    .nav ul {
        
        padding-top: 10px;
    }

    .nav ul li {
        margin-bottom: 10px;
    }
}

.logo img {
    height: 60px;
    max-width: 100%;
} */

.nav_items a {
    /* font-family: "Teko", Sans-serif; */
    font-size: 19px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: black;
    padding-left: 3px;
    padding-right: 3px;
    padding-top: 15px;
    padding-bottom: 15px;
    text-decoration: none;
    margin-right:30px;
}

.nav_items a:hover {
    border-bottom:white 1px solid;
    color:white;
}

.nav_items{
    display: flex;
    justify-content: center;
    width:32%;
}

.navbar_large{
    display:none;
}

.navbar_small{
    
    display:flex;
    justify-content:space-between;
    align-items:center;
    color:black;
    width:100%;
    padding-top:5px;
    padding-bottom:5px;
    
}

.logo{
    height:50px;
}

.menu_options {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease;
    opacity: 0;
    background-color:#FFB847;
}

.menu_options.expanded {
    max-height: 500px; /* Adjust based on content */
    opacity: 1;
    background-color:#FFB847;
}

.menu{
    width: 90%;
    /* border:solid 1px lightgrey; */
}

.menu_section{
    width:40%;
    margin-bottom: 20px;
}

.cursor{
    transition: opacity 0.5s ease;
    opacity: 0;
    font-size:20px;
    font-weight: 400;
}

.cursor.shown{
    opacity:1;
}

@media only screen and (min-width: 768px) {
    .navbar_large{
        position: fixed;
        top: 0;
        left:0;
        display:flex;
        justify-content:space-around;
        align-items:center;
        width:100%;
        padding-top:20px;
        padding-bottom:20px;
        z-index:9;
    }
    .navbar_small{
        display:none;
    }
    .content {
        white-space: nowrap;
    }

    .dark_background{
        background-color: #FFB847 !important;
    }
    .logo{
        height:100px !important;
    }
}

.material-symbols-outlined {
    font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24
  }
  
  .hidden{
      display:none !important;
  }
  

  .dark_background{
      background-color:#FFB847;
  }
  

  @keyframes fadeInAnimation {
      0% {
          opacity: 0;
      }
      100% {
          opacity: 1;
      }
  }


    @keyframes bounce { 
      from { 
          transform: translate3d(0, 0, 0); 
      } 
      to { 
          transform: translate3d(0, 30px, 0); 
      } 
  }   
  
  @-webkit-keyframes bounce { 
      from { 
          -webkit-transform: translate3d(0, 0, 0); 
          transform: translate3d(0, 0, 0); 
      } 
      to { 
          -webkit-transform: translate3d(0, 30px, 0); 
          transform: translate3d(0, 30px, 0); 
      } 
  
      
  } 

  .small-menu-item{
    text-decoration:none;
    width:100%;
    background-color:#FFB847;
    display:flex;
    justify-content: center;
    align-items:center;
    border-bottom:solid 1px lightgrey;
    padding:10px;
  }

  .formatted_text {
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: black;

    text-decoration: none;
  }

  .header-content{
    height:80vh;
    
  }