* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Times New Roman', Times, serif, sans-serif;
    background-color: #d6bb9d;
    color: #333;
  }
  
  .banner {
    height: 600px;
    margin: 60px 100px 60px 100px;
    background-image: url('images/beans_0.jpg');
    background-repeat: no-repeat;
    flex-direction: column;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 50px;
    font-weight: bold;
  }

  .banner .p1 {
    font-size: 25px;
    line-height: 1.6;
  }
  
  .menu {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    display: flex;
    gap: 10px;      
    padding: 50px 60px;
    flex-wrap: wrap;
    background-color: white;
  }
  
  .card {
    margin: 20px;
    width: 300px;
    height: 300px;
    position: relative;
  }
  
  .card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .card-button {
    position: absolute; 
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px 30px;
    background-color: rgb(195, 97, 35);
    color: 333;
    border: none;
    z-index: 1; 
    font-family: 'Times New Roman', Times, serif, sans-serif;
    font-size: 20px;
  }
  
  .card-button:hover {
    background-color: 333;
    color: white;
  }

@media (max-width: 768px) {
    .banner {
        height: 400px;
        margin: 80px 30px 40px 30px;
        font-size: 36px;
    }

    .banner .p1 {
        font-size: 18px;
    }

    .menu {
        padding: 30px 20px;
        gap: 15px;
    }

    .card {
        width: 250px;
        height: 250px;
        margin: 10px;
    }

    .card-button {
        padding: 15px 25px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .banner {
        height: 300px;
        margin: 100px 15px 30px 15px;
        font-size: 28px;
    }

    .banner .p1 {
        font-size: 16px;
    }

    .menu {
        padding: 20px 10px;
        gap: 10px;
    }

    .card {
        width: 90%;
        max-width: 280px;
        height: 200px;
        margin: 10px auto;
    }

    .card-button {
        padding: 12px 20px;
        font-size: 16px;
    }
}
