/* Background Hero Section */
.hero-section {
    background: url('https://via.placeholder.com/1500x500') no-repeat center center;
    background-size: cover;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    padding: 50px 0;
}

/* Gradient Hero Section with a different color */
.hero-section-gradient {
    background: linear-gradient(to right, #6a11cb, #2575fc); /* Latar belakang gradien baru */
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    padding: 50px 0;
}

/* Styling for text inside the hero section */
.hero-text {
    text-align: center;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 50px;
    font-weight: bold;
}

.hero-text p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* Styling for Menu Section */
.menu-container {
    /* background: #f1f1f1; Warna latar belakang berbeza untuk container menu */
    padding: 50px 0;
    border-radius: 15px;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); */
}

.menu-container .row {
    justify-content: center;
    gap: 10px;
}

/* Styling for Menu Button */
.menu-item-button {
    height: 60px;
    /* margin: 15px; */
    width: 100%;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background-image: linear-gradient(to right, #0b0468, #008f64);
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.menu-item-button:hover {
    border: 3px solid #008f64;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

/* Extra padding for Menu Section */
.menu-item-col {
    /* margin-bottom: 30px; */
    border-radius: 10px;
    padding: 10px;
}

.menu-item-col .menu-item-description{
    text-align: center;
    margin: 15px;
    width: 100%;
    font-size: 1.2rem;
}

/* .menu-item-col:hover .menu-item-button {
} */

footer {
    margin-top: 50px;
}

footer a ,footer .web-title{
  color:#008f64;
  text-decoration: none;
  font-weight: bold;
}

/* Mobile-responsive adjustments */
@media (max-width: 768px) {
    .menu-item-button {
        width: 100%;
        font-size: 16px;
        margin: 10px 0;
    }

    .hero-text h1 {
        font-size: 35px;
    }

    .hero-text p {
        font-size: 16px;
        max-width: 90%;
    }

    /* Adjusting row layout for small screens */
    .menu-item-col {
        flex: 0 0 100%;
        max-width: 90%;
        text-align: center;
    }
}