* {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

header {
      width: 100%;
      height: 75px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 10%;
      position: relative;
      z-index: 5;
      background-color: black;
    }

    .logo {
      color: #d5c19a;
      font-family: "Cormorant Garamond", serif;
      font-size: 22px;
      letter-spacing: 6px;
      font-weight: 500;
    }

    nav {
      display: flex;
      align-items: center;
      gap: 28px;
    }

    nav a {
      text-decoration: none;
      color: #bdb8ae;
      font-size: 8px;
      letter-spacing: 1px;
      transition: color 0.3s ease;
      font-size: medium;
    }

    nav a:hover,
    nav a.active {
      color: gold;
    }

    .body {
      font-family: Georgia, serif;
      background: #f8f1e5;
      background-image: url(Visiting\ Starbucks\ Reserve\ in\ \ SODO\ •\ Pacific\ Northwest\ Fulfilled.jpg);
      color: #333;
      line-height: 1.6;
      /* background-size: cover; */
      background-position: center;
      /* background-repeat: no-repeat; */
    }

    .menu {
      max-width: 1000px;
      margin: 40px auto;
      padding: 40px;
      background-color: black;
      box-shadow: 0 5px 25px rgba(0,0,0,0.15);
      border-radius: 12px;
    }

    .header {
      text-align: center;
      border-bottom: 3px solid #b8860b;
      padding-bottom: 25px;
      margin-bottom: 30px;
    }

    .header h1 {
      color: #8b0000;
      font-size: 42px;
      letter-spacing: 2px;
    }

    .header p {
      color: #777;
      font-style: italic;
      font-size: 18px;
    }

    .section {
      margin-bottom: 35px;
    }

    .section h2 {
      color: #8b0000;
      text-align: center;
      font-size: 26px;
      margin-bottom: 20px;
      padding-bottom: 8px;
      border-bottom: 1px solid #ddd;
    }

    .item {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      padding: 12px 0;
      border-bottom: 1px dotted #ccc;
    }

    .item-name {
      font-weight: bold;
      color: white;
    }

    .description {
      display: block;
      font-size: 14px;
      color: #777;
      font-weight: normal;
    }

    .price {
      color: #8b0000;
      font-weight: bold;
      white-space: nowrap;
    }

    .swallow {
      text-align: center;
      background: #fff8e7;
      padding: 15px;
      border-radius: 8px;
      margin-top: 15px;
    }

    .footer {
      text-align: center;
      border-top: 3px solid #b8860b;
      padding-top: 25px;
      margin-top: 30px;
    }

    .footer h3 {
      color: #8b0000;
      margin-bottom: 8px;
    }

    .footer p {
      color: #777;
    }

   .end{
      border-top: 1px solid #191817;
      background: #050505;
      padding: 25px 5% 15px;
    }

    .footer-top {
      max-width: 1100px;
      margin: auto;
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr 1fr;
      gap: 30px;
      align-items: start;
    }

    .footer-logo {
      color: #d2bd94;
      font-family: "Cormorant Garamond", serif;
      font-size: 21px;
      letter-spacing: 5px;
    }

    .footer-tagline {
      color: #77736c;
      font-size: 5px;
      margin-top: 2px;
      letter-spacing: 0.7px;
    }
    

    @media (max-width: 600px) {
      .menu {
        margin: 10px;
        padding: 20px;
      }

      .header h1 {
        font-size: 30px;
      }

      .item {
        font-size: 14px;
      }
    }

@media (max-width: 500px) {
   .nav{
    display: block;
   }
}
