@font-face {
    font-family: 'Gilroy-Medium'; 
    src: url('../../fonts/Gilroy-Medium.ttf') ; 
  }
  @font-face {
    font-family: 'Gilroy-Bold'; 
    src: url('../../fonts/Gilroy-Bold.ttf') ; 
  }




  .card-link {
    display: block; /* Ensures the entire card is clickable */
    text-decoration: none; /* Removes the underline from the link */
}

.card-drinks {
    width: 600px;
    height: 500px;
    border-radius: 38px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    position: relative;
    margin: 15px auto;
    overflow: hidden; /* Ensures the gradient stays within the card */
    cursor: pointer; /* Indicates that the card is clickable */
}

@media (max-width: 768px) {
    .card-drinks {
        width: 365px;
        height: 270px;
        border-radius: 38px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
        position: relative;
        margin: 15px auto;
        overflow: hidden; 
        cursor: pointer; 
    }
  }

.image-drinks {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1; /* Keeps it beneath the gradient and text */
    border-radius: 10px;
    pointer-events: none;
}

.card-drinks::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(78, 60, 46, 0.00) 23.8%, #372B21 100%);
    z-index: 2; /* Sits above the image but below the text */
    border-radius: 10px;
    pointer-events: none; /* Ensures it doesn't interfere with interactions */
}

.text-container-drinks {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);

    color: #fff;
    z-index: 3; /* Ensures text stays on top */
}

.text-container-drinks h1 {
    font-size: 30px !important; 
    color: var(--white, #FFF);
    font-family: 'Gilroy-Bold', sans-serif !important;
    font-size: 100px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}
@media (max-width: 768px) {
    .text-container-drinks {
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
    
        color: #fff;
        z-index: 3; /* Ensures text stays on top */
    }
    .text-container-drinks h1 {
        font-size: 30px !important; 
        color: var(--white, #FFF);
        font-family: 'Gilroy-Bold', sans-serif !important;
        font-size: 55px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }
  }