@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
  }
  
  html {
    scroll-behavior: smooth;
  }

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 3%;
    width: 100%;
    background-color: #e7dfdf;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
  }
  
  .navbar .inner-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1440px;
  }
  
  .navbar .inner-navbar .brand a {
    font-size: larger;
    font-weight: bold;
    color: #111010;
    transition: 0.3s;
  }
  
  .navbar .inner-navbar .brand a:hover {
    color: #e74c3c;
  }
  
  .navbar-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.4rem;
  }
  
  .navbar-nav a {
    color: #131212;
  }
  
  .hamburger-menu {
    display: none;
  }

.container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.title {
    position: relative;
    background-color: #ff6b6b;
    color: white;
    padding: 50px;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
}

.card img {
    max-width: 100%;
    border-radius: 4px;
    margin-bottom: 15px;
}

.card h3 {
    color: #ff6b6b;
    font-size: 18px;
    margin-bottom: 10px;
}

.card p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.card .price {
    color: #333;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
}

.card button {
    background-color: #ff6b6b;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.card button:hover {
    background-color: #e55a5a;
    color: white;
}

.card a {
    color: white;
    text-decoration: none;
}

.card a:hover {
    color: white;
}

@media screen and (max-width: 768px) {
    .hamburger-menu {
      display: block;
    }
  
    #hamburger-button {
      color: #000;
      font-size: 24px;
      transition: 0.3s linear;
    }
  
    #hamburger-button:hover {
      color: #e91e63;
    }
  
    .navbar-nav {
      position: absolute;
      top: 100%;
      left: -100%;
      width: 20rem;
      height: 100vh;
      background-color: #e7dfdf;
      transition: 0.4s all;
      display: flex;
      flex-direction: column;
      justify-content: left;
      padding: 3rem 0;
    }
  
    .show-navbar {
      left: 0;
    }
  
    .navbar-nav a {
      font-size: 1.5rem;
    }
}    