/* ===================
   Global Styles
=================== */
body {
    background-color: #fff; /* Background putih bersih */
    font-family: 'Poppins', sans-serif; /* Default font untuk body */
}

/* Font untuk Heading */
h1, h2, h3 {
    font-family: 'Abril Fatface', cursive;
    color: #222;
}

/* Font untuk paragraf dan link */
p, span, small, a {
    font-family: 'Poppins', sans-serif;
}

/* Paragraphs */
p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}
.text-blue{
   color: #75C5F0 !important;
}
/* Links */
a {
    color: #75C5F0;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1f81b6;
    text-decoration: underline;
}

/* ===================
   Navbar
=================== */
.navbar {
    padding: 1rem 0;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #75C5F0;
}

/* ===================
   Banner
=================== */
.banner {
    height: 90vh;
    background-size: cover;
    background-position: center;
}

.banner .carousel-item {
    height: 90vh;
    min-height: 400px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.banner .carousel-item img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
/* Banner Image Style */
.banner .carousel-item img {
    object-fit: cover;
    object-position: center center;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out; /* Transition untuk zoom */
}

/* Efek Zoom In saat gambar aktif */
.banner .carousel-item.active img {
    transform: scale(1.1); /* Zoom in */
}

/* Pastikan gambar kembali normal saat tidak aktif */
.banner .carousel-item-next, .banner .carousel-item-prev, .carousel-item.active {
    transition: transform 0.5s ease-in-out;
}

/* Banner Text (kalau mau tambahkan tulisan di atas gambar) */
.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.banner-text h1 {
    font-size: 3rem;
    font-weight: 700;
}

.banner-text p {
    font-size: 1.2rem;
    font-weight: 300;
}

/* ===================
   Sections
=================== */
.bg-resto{
    background-color: #f8f9fa;
}
/* Section Titles */
section h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    position: relative;
}

section h2::after {
    content: '';
    width: 60px;
    height: 4px;
    background: #75C5F0;
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}
h2.restaurant-name::after {
    content: none !important;
}
/* ===================
   Restaurant Cards
=================== */
.restaurant-card {
    margin-bottom: 30px;
}

.card-title {
    font-size: 1.5rem;
    color: #333;
}

.card-text {
    color: #666;
}
.card-img, .card-img-bottom, .card-img-top {
    height: 250px !important;
    object-fit: cover !important;
}
/* Animations */
.restaurant-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

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

/* Card Body */
.card-body {
    padding: 20px;
    text-align: center;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
}



/* Food Type */
.restaurant-card .food-type {
    color: #0480c4;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}


/* Location */
.restaurant-card .location {
    color: #555;
    font-weight: 400;
    margin-bottom: 20px;
}

/* Animasi Fade-in */
.wow {
    visibility: hidden;
}

.wow.fadeInUp {
    visibility: visible;
    animation: fadeInUp 1s ease-in-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================
   Buttons
=================== */
.btn-primary {
    background-color: #75C5F0;
    border: none;
    padding: 10px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #1f81b6;
}

.btn-close {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    font-weight: bold;
    color: #75C5F0;
    opacity: 0.7;
    transition: all 0.3s ease;
  }
  
  .btn-close:hover {
    color: #1f81b6;
    opacity: 1;
    transform: scale(1.1);
    cursor: pointer;
  }
  
/* ===================
   Restaurant Detail Page
=================== */
/* Restaurant Detail Page */
.restaurant-detail {
    background-color: #f8f9fa;
}

.restaurant-image img {
    max-height: 400px;
    object-fit: cover;
}

.restaurant-name {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
}

.food-type, .location, .description {
    font-size: 1.2rem;
    color: #555;
}

.contact-info {
    background-color: #f1f1f1;
    padding: 15px;
    border-radius: 8px;
}

.contact-info h5 {
    font-size: 1.5rem;
    font-weight: bold;
}
/* Styling for the menu card */
.menu-card-img img {
    transition: transform 0.3s ease-in-out;
}

.menu-card-img img:hover {
    transform: scale(1.1); /* Zoom effect on hover */
}

.menu-thumbnails img {
    transition: opacity 0.3s ease-in-out;
}

.menu-thumbnails img:hover {
    opacity: 0.8; /* Slight fade effect on hover */
}

/* Card body styling */
.card-body {
    background-color: #f8f9fa;
    padding: 1.25rem;
    text-align: center;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
}

.card-text {
    font-size: 1rem;
    color: #555;
}

.card-footer {
    background-color: #f8f9fa;
}

/* Styling for the price */
.card-body p {
    font-weight: 600;
}

/* Styling untuk container menu */
.menu-item {
    display: flex;
    align-items: center;
    /* Memastikan teks dan gambar sejajar secara vertikal */
    justify-content: space-between;
    /* Memberi ruang antar teks dan gambar */
}
/* Styling untuk teks menu */
.menu-text {
max-width: 50%;
/* Menetapkan lebar teks supaya tidak terlalu panjang */
}
/* Styling untuk gambar carousel */
.menu-image {
width: 45%;
/* Menetapkan lebar gambar carousel */
max-width: 400px;
/* Menghindari gambar terlalu besar */
}
  /* Carousel image styling */
  .carousel-inner img {
    width: 100%;
    /* Memastikan gambar memenuhi ruang yang tersedia */
    height: auto;
    /* Menjaga proporsi gambar tetap sesuai */
    object-fit: contain;
    /* Menyesuaikan gambar ke dalam wadah tanpa distorsi */
}

/* Gaya tambahan untuk text dan judul */
.font-weight-bold {
    font-weight: 700;
}

/* Styling untuk carousel controls */
.blue {
    background-color: #007bff;
    /* Menyempurnakan kontrol dengan warna putih */
}


/* Responsive design */
@media (max-width: 768px) {
    .menu-item {
        flex-direction: row;
        text-align: left;
    }
    .navbar {
        padding: 1rem !important;
    }

}
    
/* ===================
   Footer
=================== */

footer a {
    font-weight: bold;
    text-decoration: none;
}

footer a:hover {
    color: #75C5F0; /* Warna hover yang kontras */
    text-decoration: underline;
}

footer p {
    color: #fff;
    font-size: 0.9rem;
}
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}
.sl-overlay {
    background: #031118 !important;
}
.sl-wrapper {
    color: white !important;
}
.sl-wrapper .sl-counter {
    color: white !important;
}
.sl-wrapper button {
    color: white !important;
}