/* Font setup */
    body {
      font-family: 'Lato', sans-serif;
    }

    h1, h2, h3, .cs-title {
      font-family: 'Playfair Display', serif;
    }
/* ========== Hero Section ========== */
@media only screen and (min-width: 0rem) {
    #hero-1785 {
      padding: clamp(12.5rem, 25.95vw, 18.75em) 1rem;
      overflow: hidden;
      position: relative;
      z-index: 1;
    }
  
    #hero-1785 .cs-container {
      width: 100%;
      max-width: 80rem;
      margin: auto;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 3rem;
    }
  
    #hero-1785 .cs-content {
      text-align: center;
      width: 100%;
      max-width: 46.875rem;
      z-index: 2;
      position: relative;
    }
  
    #hero-1785 .cs-topper {
      font-size: 1rem;
      color: #ffecec;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
  
    #hero-1785 .cs-title {
      font-size: clamp(3.0625rem, 6vw, 5.25rem);
      color: #ffffff;
      margin: 0.5rem 0;
    }
  
    #hero-1785 .cs-text {
      font-size: 1.25rem;
      color: #ffffff;
      margin-bottom: 2rem;
    }
  
    #hero-1785 .cs-button-group {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 0.5rem;
    }
  
    #hero-1785 .cs-button-solid {
      font-size: 1rem;
      font-weight: 700;
      line-height: clamp(2.875rem, 5.5vw, 3.5rem);
      text-align: center;
      text-decoration: none;
      min-width: 12.5rem;
      box-sizing: border-box;
      padding: 0 1.5rem;
      background-color: #e63946;
      color: #ffffff;
      border-radius: 0.25rem;
      display: inline-block;
      position: relative;
      z-index: 1;
      transition: background-color 0.3s ease;
    }
  
    #hero-1785 .cs-button-solid:hover {
      background-color: #b71c1c;
    }
  
    #hero-1785 .cs-graphic {
      width: 100%;
      min-width: 120rem;
      height: auto;
      object-fit: cover;
      position: absolute;
      bottom: 0;
      left: 50%;
      z-index: 0;
      transform: translateX(-50%);
    }
  
    #hero-1785 .cs-graphic-dark {
      display: none;
    }
  
    #hero-1785 .cs-background {
      width: 100%;
      height: 100%;
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      z-index: -2;
    }
  
    #hero-1785 .cs-background:before {
      content: "";
      width: 100%;
      height: 100%;
      background: #000;
      pointer-events: none;
      opacity: 0.7;
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 1;
    }
  
    #hero-1785 .cs-background img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
    }
  }
  
  /* ========== About Section ========== */
  #about {
    padding: 5rem 1.5rem;
    background-color: #ffffff;
    text-align: center;
  }
  
  .about-container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  #about h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
  }
  
  #about p {
    font-size: 1.2rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 2rem;
  }
  
  .about-button {
    display: inline-block;
    background-color: #e63946;
    color: #fff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.3s;
  }
  
  .about-button:hover {
    background-color: #b71c1c;
  }
  
  /* ========== Menu Section ========== */
  #menu {
    padding: 5rem 1.5rem;
    background-color: #f7f7f7;
    text-align: center;
  }
  
  .menu-container {
    max-width: 1000px;
    margin: 0 auto;
  }
  
  #menu h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 0.5rem;
  }
  
  .menu-intro {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
  }
  
  .menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }
  .menu-item {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .menu-item:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  
  .menu-item img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 1rem;
  }
  
  .menu-item h3 {
    font-size: 1.3rem;
    color: #e63946;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .menu-item .price {
    font-weight: bold;
    color: #333;
  }
  
  .menu-item p {
    color: #444;
    font-size: 1rem;
    line-height: 1.6;
  }
  
  /* ========== Events Section ========== */
  #events {
    padding: 5rem 1.5rem;
    background-color: #ffffff;
    text-align: center;
  }
  
  .events-container {
    max-width: 1000px;
    margin: 0 auto;
  }
  
  #events h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 0.5rem;
  }
  
  .events-intro {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
  }
  .events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }
  
  .event-item {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    text-align: left;
    margin-bottom: 2rem;
  }
  
  .event-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 1rem;
  }
  .event-item img {
    width: 100%;
    height: 250px; 
    object-fit: cover;
    border-radius: 8px;
  }
  /* ========== Contact Section ========== */
#contact {
  padding: 4rem 1.5rem;
  background-color: #f8f8f8;
  text-align: center;
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
}

.toggle-button-wrapper {
  text-align: center;
  margin-bottom: 1.5rem;
}

#toggle-form {
  background-color: #333;
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

#toggle-form:hover {
  background-color: #555;
  transform: scale(1.05);
}

#contact h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #333;
  font-family: 'Playfair Display', serif;
}

.contact-intro {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
  font-family: 'Lato', sans-serif;
}

.contact-info p {
  font-size: 1rem;
  color: #444;
  margin: 0.5rem 0;
}

.contact-form {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.contact-form button {
  background-color: #e63946;
  color: #fff;
  padding: 0.75rem;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: #b71c1c;
}
  /* ========== Navigation Bar ========== */
.navbar {
  background-color: #1e1e1e;
  color: #fff;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #e63946;
}