
*{
      padding:0;
      margin:0;
      box-sizing:border-box;
      font-family: 'Pathway Gothic One', sans-serif;
      letter-spacing:0.2em;
    }
    body{
      font-family:monospace;
      overflow:hidden;
    }
    .container{
      position:relative;
      width:100%;
      background:url('barber.jpg') no-repeat;
      background-size:cover;
      display:flex;
      justify-content:center;
      align-items:center;
      text-align:center;
    }
    .container:before{
      content:"";
      position:absolute;
      top:0;
      right:0;
      width:100%;
      height:100%;
      background-color:#478c46;
    }
        .logo-top {
          display: block;
          margin: 30px auto 0 auto;
          max-width: 180px;
          height: auto;
          z-index: 10;
        }
        .logo {
        display: block;
        margin: 0 auto 40px auto;
        max-width: 200px;
        height: auto;
        z-index: 2;
      }
      .content{
  max-width:800px;
  width:100%;
  margin:0 auto;
  padding:0 20px;
  box-sizing:border-box;
  position:relative;
  z-index:1;
    }
    .content h1{
      font-size:45px;
      margin-bottom:10px;
      color:white;
      font-family: 'Kaushan Script', cursive;
    }
    .content h2{
      font-size:20px;
      color:white;
    }
    .content p{
      color:white;
      font-size:16px;
      margin-bottom:20px;
      padding:10px;
    }
    
    .menu-container{
      position:fixed;
      top:0;
      right:0;
      z-index:2;
    }
    .toggler{
      position:absolute;
      top:20px;
      right:20px;
      width:60px;
      height:60px;
      border-radius:50%;
      opacity:0;
      z-index:3;
      cursor:pointer;
    }
    .hamburger{
      position:absolute;
      top:20px;
      right:20px;
      width:60px;
      height:60px;
      border-radius:50%;
      background-color:#000000;
      display:flex;
      justify-content:center;
      align-items:center;
      z-index:2;
    }
    .hamburger>div{
      position:absolute;
      width:50%;
      height:3px;
      border-radius:1.5px;
      background-color:rgb(255, 255, 255);
      transition:0.4s;
    }
    .hamburger>div:before, .hamburger>div:after{
      content:"";
      position:absolute;
      width:100%;
      height:3px;
      border-radius:1.5px;
      background-color:rgb(255, 255, 255);
      transition:0.4s;
    }
    .hamburger>div:before{
      top:-10px;
    }
    .hamburger>div:after{
      top:10px;
    }
    .toggler:checked + .hamburger>div{
      transform:rotate(135deg);
    }
    .toggler:checked + .hamburger>div:after, .toggler:checked + .hamburger>div:before{
      transform:rotate(90deg);
      top:0;
    }
    .toggler:checked ~.menu{
      visibility:visible;
    }
    .toggler:checked~.menu >div{
      transform:translateX(-50%) translateY(-50%);
    }
    .toggler:checked ~.menu >div>div{
      opacity:1;
    }
    .menu{
      position:fixed;
      top:0;
      right:0;
      width:100%;
      height:100%;
      transition:0.6s;
      visibility:hidden;
      text-transform:uppercase;
    }
    .menu>div{
      position:absolute;
      width:1600px;
      height:1600px;
      border-radius:50%;
      top:50%;
      left:50%;
      transform:translateX(-150%) translateY(-50%);
      background-color:#3d474aa6;
      transition:0.6s;
      display:flex;
      justify-content:center;
      align-items:center;
    }
    .menu>div>div{
      max-width: 90vw;
      max-height:100%;
      display:flex;
      justify-content:center;
      align-items:center;
      text-align:center;
      opacity:0;
    }
    .menu>div>div>ul>li{
      list-style:none;
    }
    .menu>div>div>ul>li>a{
      text-decoration:none;
      margin:20px;
      display:inline-block;
      font-size:40px;
      transition:0.3s;
    }

        .nav-item.home a {
      color: #f2ab14; /* Blue */
    }

    .nav-item.flavors a {
      color: #ee1f1f; /* Orange */
    }

    .nav-item.events a {
      color: #416ae0; /* Purple */
    }

    .nav-item.contact a {
      color: #af3ae5; /* Red */
    }
    .menu>div>div>ul>li>a:hover{
      color:#b7d3de;
    }

    body {
      background-color: #478c46;
    }

    img {
      display: block;
      max-width:100% ;
      max-width:100%;
      position: relative;
      float: center;
      margin-left: auto;
      margin-right: auto;
    }


  .site-footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #222;
    color: #fff;
    text-align: center;
    padding: 12px 0;
    font-size: 15px;
    z-index: 10000;
  }
  
  footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #222;
  color: #fff;
  text-align: center;
  padding: 14px 0 10px 0;
  font-size: 16px;
  z-index: 10000;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.12);
}
  nav {
    display: none;
  }
   
 @media screen and (min-width: 650px) {
  .menu-container{
    display: none;
  }
    nav {
      display: block;
      position: relative;
      width: 100%;
      background: rgba(34,34,34,0.95);
      text-align: center;
      box-shadow: 0 2px 8px rgba(0,0,0,0.10);
      margin-top: 10px;
      z-index: 9998;
    }
    nav .nav-list {
      display: flex;
      flex-direction: row;
      justify-content: center;
      gap: 30px;
      padding: 14px 0;
      margin: 0 auto;
      list-style: none;
    }
}