body {
    font-family: 'Playfair Display', serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #fff;
    box-shadow: 0 4px 2px -2px gray;
    color: black;
    overflow: hidden;
}


.nav-link.active {
    text-decoration: underline;
    font-weight: bold;
}

a {
    text-decoration: none;
    color: black !important;
}

.logo-img {
    width: 25%;
    padding: 0%;
    margin: 0%;
}

.card-img-top {
    transition: transform 0.3s ease;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

.btn-order:hover {
    background-color: #c89f2f;
    color: white;
}

.btn-order {
    border-radius: 10px;
    background-color: #D4AF37;
    color: white;
}

.card-img-top {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.container {
    padding-left: 15px;
    padding-right: 15px;
}

.row {
    margin-left: -15px;
    margin-right: -15px;
}

.card {
    background-color: #FFF1F2 !important;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.hero-section {
    height: 80vh;
    background: url('./images/main.png') center center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-section .text-white {
    z-index: 2;
}

.btn-warning {
    background-color: #dfd176;
    border: none;
    color: black;
    transition: all 0.3s ease-in-out;
}

.btn-warning:hover {
    background-color: #c4b21d;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(223, 209, 118, 0.5);
}

.modal-content {
    border-radius: 15px;
    background-color: #f9f9f9;
    border: 2px solid #FFF1F2;
}

.modal-header {
    background-color: #FFF1F2;
    color: black;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: bold;
}

.modal-body {
    font-size: 1.1rem;
    color: #333;
}

.modal-footer {
    border-top: 1px solid #FFF1F2;
}

.modal-footer .btn {
    background-color: #FFF1F2;
    color: black;
    font-weight: bold;
    border: none;
}

.modal-footer .btn:hover {
    background-color: #FFF1F2;
}

.modal-footer .btn-danger {
    background-color: #d9534f;
    border-color: #d9534f;
    color: white;
}

.modal-footer .btn-danger:hover {
    background-color: #c9302c;
}

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
    display: inline-block;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    border: none;
    width: 70px;
    height: 70px;
}

.bg-golddark {
    background-color: #fdf8ec;
}

.carousel-inner img {
    height: 500px;
    object-fit: cover;
    object-position: center;
}

.hover-shadow:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hover-shadow:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    transition: 0.3s ease;
}

footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .navbar-collapse {
        background-color: white;
        padding-bottom: 7rem;
    }

    .logo-navbar img {
        width: 50%;
        max-width: 100px;
    }

    .navbar-nav {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}