body {
    background-color: #FFF8E7;
    max-width: 100%;
    overflow-x: hidden;
}

html {
    scroll-padding-top: 5rem;
    scroll-behavior: smooth;
    max-width: 100%;
    overflow-x: hidden;
}

/* navbar */
.navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    font-style: italic;
    margin-top: auto;
}

.span,
.span2 {
    color: #FFD700;
}

/* jumbotron */
.jumbotron {
    background-image: url('../img/dalleresto.webp');
    /* Ganti dengan gambar hero kamu */
    background-size: cover;
    background-position: center;
    height: 100vh;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.jumbotron::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Overlay gelap */
    z-index: 1;
}

.jumbotron-content {
    position: relative;
    z-index: 2;
}

.jumbotron h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.jumbotron p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn {
    background-color: #e67e22;
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #cf711f;
}


/* about */
.about {
    padding: 3rem;
    min-height: 300px;
}

/* menu */
.menu h2,
.contact h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.menu p,
.contact p {
    text-align: center;
    max-width: 30rem;
    margin: auto;
    font-weight: 400;
    line-height: 1.6;
    color: black;
}

.menu .row {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.menu .row .card {
    margin: 0.5rem;
    padding-top: 0.8rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu .row .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card .card-text {
    text-align: left;
}

.card .menu-card-price {
    padding-top: 0.5rem;
}

.card .menu-card-rating {
    color: #FFD700;
    font-size: 1.2em;
    text-align: left;
}

.menu .card-img-top {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.menu .row .card .card-body .p {
    text-align: left;
}

.menu .row .card .btn {
    margin-top: 0.8rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    background-color: #b22222;
    color: #fff;
}

/* Contact section */
.contact {
    padding: 5rem 1rem;
    background-color: #FFF8E7;
}

.contact h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

/* .contact p {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: #555;
    font-weight: 300;
    line-height: 1.6;
} */

/* Layout Kontainer Map dan Form */
.contact .row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

/* Map Styling */
.contact .map {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Form Styling */
.contact form {
    width: 100%;
    max-width: 500px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Input, Textarea, dan Button dalam Form */
.contact form .form-label {
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
}

.contact form .form-control {
    border-radius: 4px;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    transition: border-color 0.3s;
}

.contact form .form-control:focus {
    border-color: #FFD700;
    box-shadow: 0 0 4px rgba(255, 215, 0, 0.3);
}

.contact form textarea {
    resize: none;
    min-height: 120px;
}

.contact form button {
    background-color: #b22222;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact form button:hover {
    background-color: #b92e2e;
}

/* footer */
.footer {
    background-color: #b22222;
    color: #fff;
    padding: 2rem 1rem;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.footer h4 {
    margin-bottom: 0.8rem;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer ul li a:hover {
    color: #ffd700;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0.2rem 0;
    font-size: 0.85rem;
}

.footer-bottom a {
    color: #fff;
    text-decoration: underline;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: #ffd700;
}

.footer-links ul {
    list-style: none;
    /* Hilangkan bullet default */
    padding-left: 1.5rem;
    /* Tambah ruang kiri agar gak nempel */
}

.footer-links ul li {
    position: relative;
    padding-left: 1.2rem;
    /* Ruang buat lingkaran */
    margin-bottom: 0.5rem;
}

.footer-links ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 0.5em;
    height: 0.5em;
    background-color: white;
    /* Warna lingkaran */
    border-radius: 50%;
}



/*laptop */
@media (min-width: 1024px) {
    .contact .row {
        flex-direction: row;
    }

    .contact .col-md-4,
    .contact .col-md-8 {
        flex: 1;
        max-width: 48%;
    }

    .contact .map {
        height: 570px;
    }
}

@media (max-width: 768px) {

    .menu h2,
    .contact h2,
    .about h2 {
        font-size: 1.3rem;
    }

    .about p,
    .menu p,
    .contact p {
        font-size: 0.9rem;
    }

    .menu-text {
        padding: 0 1.6rem;
    }

    .navbar-brand {
        font-size: 1.5rem;
    }
}

@media (max-width: 600px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-logo,
    .footer-links,
    .footer-contact {
        margin-bottom: 0.5rem;
    }

}


@media (max-width: 480px) {
    .jumbotron-content h1 {
        font-size: xx-large;
    }
}