
/* Global Reset and Typography */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-family: 'Georgia', serif;
  font-size: 11pt;
  margin: 0;
  padding: 0;
  background-image: url("https://www.dbshideaway.com/public/images/small-cooper-with-cocktail-and-plane-light.png");
  background-repeat: no-repeat;
  background-position-y: 20px;
  background-position-x: center;
  height: 100dvh;
  -webkit-overflow-scrolling: touch;
}
  
  main {
    padding: 20px;
    text-align: center;
    margin-top: 325px;
  }
  
  input, select, button {
    font-family: inherit;
    font-size: 1rem;
  }
  
  /* Nav Styles */
  nav {
    background-color: rgba(0, 0, 0, 0);
    color: #000000;
    padding: 15px 10px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
  }

  nav img {
    height: 40px;
    position: absolute;
    top: 5px;
    left: 5px;
    z-index: 1001;
  }

  .nav-links {
    display: flex;
    gap: 10px;
    margin-left: auto;
  }

  .nav-links a {
    color: #000000;
    text-decoration: none;
  }

  .nav-links a:hover {
    text-decoration: underline;
  }
  .menu-icon {
    display: none;
    cursor: pointer;
    font-size: 24px;
  }
  @media (max-width: 768px) {
    .menu-icon {
      display: block;
      position: fixed;
      right: 20px;
      top: 15px;
      z-index: 1002;
    }
    .nav-links {
      display: none;
    }
    body {
      background-size: 100%;
    }

    main.menu-main {
      margin-top: 100px;
    }
  }
  
  /* Side Navigation */
  .sidenav {
    height: 100vh;
    width: 0;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
  }
  .sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
    text-align: right;
  }
  .sidenav a:hover {
    color: #f1f1f1;
  }
  .sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 10px;
    font-size: 36px;
    margin-left: 60px;
  }
  
  /* Cocktail Grid & Cards */
  .cocktail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    margin-top: 20px;
  }
  .cocktail-card {
    background-color: white;
    padding: 16px;
    border-radius: 8px;
    text-align: center;
    white-space: pre-line;
  }

  .pagination {
    text-align: center;
    margin-top: 20px;
  }
  .pagination button {
    padding: 8px 16px;
    margin: 0 8px;
    font-family: inherit;
    font-size: 1rem;
    cursor: pointer;
  }
  

