
html {
    scroll-behavior: smooth;
  }
  
body {
    font-family: 'Poppins', sans-serif;
    background-color: #fff0f5;
    color: #2d2d2d;
  }
  
  .header {
    padding: 1rem;
    background-color: #fff0f5;
    text-align: center;
    position: relative;
  }
  
  .logo {
    font-size: 2.5rem;
  }
  
  .great-vibes {
    font-family: 'Great Vibes', cursive;
  }
  
  .playfair {
    font-family: 'Playfair Display', serif;
  }
  
  .mobile-nav button {
    background: none;
    border: none;
    font-size: 2rem;
    position: absolute;
    top: 1rem;
    right: 1rem;
    cursor: pointer;
  }
  
  #mobile-menu {
    display: none;
    flex-direction: column;
    background-color: #f8d3e3;
    position: absolute;
    top: 3.5rem;
    right: 1rem;
    padding: 1rem;
    border-radius: 8px;
  }
  
  #mobile-menu li {
    margin: 0.5rem 0;
  }
  
  #mobile-menu li a {
    text-decoration: none;
    color: #2d2d2d;
  }
  
  #mobile-menu.show {
    display: flex;
  }
  
  .hero {
    text-align: center;
    padding: 2rem;
    background-color: #fde4ec;
  }
  
  .pegasus {
    max-width: 150px;
  }
  
  .title {
    font-size: 6rem;
    margin: 1rem 0 0;
    font-family: 'Great Vibes', cursive;
  }
  
  .subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  
  .read-more {
    padding: 1rem 2.5rem;
    background-color: #d88ea6;
    color: white;
    font-weight: bold;
    border: none;
    cursor: pointer;
    border-radius: 5px;
  }

  button:hover {
    background-color: #f8b0c6;
  }
  
  .gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
  }
  
  .gallery img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
  }
  
  .menu-section {
    padding: 2rem;
    background-color: #ecc6d9;
    text-align: center;
  }
  
  .menu-title {
    font-size: 4rem;
    margin-bottom: 1rem;
  }
  
  .menu-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .menu-item {
    background-color: #fce4ec;
    padding: 1rem;
    border-radius: 10px;
    width: 250px;
  }
  
  .menu-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 0.5rem;
  }
  
  .menu-text {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .menu-text p {
    background: #ffe3ef;
    border: 2px solid #f8bad1;
    padding: 1rem;
    border-radius: 12px;
    width: 300px;
  }
  
  .price-section {
    background-color: #fad1e4;
    padding: 2rem;
    text-align: center;
  }
  
  .price-title {
    font-size: 4rem;
    margin-bottom: 1rem;
  }
  
  .price-list {
    display: flex;
    justify-content: center;
  }
  
  .price-item {
    background: #f9b6cf;
    border-radius: 20px;
    padding: 2rem;
    width: 80%;
    max-width: 600px;
    text-align: left;
  }
  
  .price-item p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
  }

  footer {
    background-color: #d88ea6;
    color: white;
    padding: 20px;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

footer .footer-links {

    justify-content: center;
    margin-top: 10px;
}

footer .footer-links a {
    margin: 0 15px;
}

footer .footer-links img {
    width: 40px;
    height: 40px;
}
  
  @media screen and (max-width: 768px) {
    .gallery img,
    .menu-item img {
      width: 100%;
      height: auto;
    }
    .menu-grid,
    .menu-text {
      flex-direction: column;
      align-items: center;
    }
    .price-item {
      width: 100%;
    }
    .price-title {
      font-size: 3rem;
      margin-bottom: 1rem;
    }
    .menu-title {
      font-size: 3rem;
      margin-bottom: 1rem;
    }
    .menu-item {
      width: 350px;
    }
    
    .menu-text {
      display: flex;
      justify-content: space-around;
      gap: 1rem;
      flex-wrap: wrap;
    }
  }