/* common */
body::-webkit-scrollbar {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    display: none;
  }
.custom-header {
    font-size: 5rem;
    font-weight: bold;
    color: #8B4513;
    font-family: "Clicker Script";
}
.img-fixed {
    height: 200px;
    object-fit: cover;
}

/* common card */
.card {
    background-color: #FFF9F1;
}
.card-fixed {
    height: 400px !important;
    overflow: hidden;
    transition: transform 0.2s;
}
.card-body h3, .card-body h4 {
    font-family: "Playfair Display";
    font-weight: bold;
    color: #603809;
}
.card-title.pb-2 {
    font-family: "Playfair Display";
    font-weight: bold;
    padding-top: 1rem;
}
.card-text {
    font-family: "Playfair Display";
    font-size: 0.8rem;
    color: #603809;
    margin-top: 0 !important;
}
.shadow {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 6px 6px rgba(0, 0, 0, 0.3);
  }

.shadow:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3), 0 10px 10px rgba(0, 0, 0, 0.4);
}

.custom-link { /*See More*/
    color: #8B4513;
    font-family: "Playfair Display";
    font-weight: bold;
    font-style: italic;
    font-size: 2.5rem;
    text-decoration: none;
}
.custom-link:hover {
    color: #8B4513;
    text-decoration: underline;
}

.bg-brown {
    background-color: #F9C06A; /* Warna coklat */
}

.card-custom {
    max-height: 300px; /* Adjust as needed */
}

.card-body-custom {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

/* other styles for our-menu */
.bg-image {
    background-image: url('../../images/coffee-texture.jpg'); /* Sesuaikan path */
    background-color: #270c03;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    width: 100%;
    overflow: hidden;
}
.spin {
    animation: spin 10s infinite linear;
}
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
