
body {
    font-family: 'Poppins', sans-serif;
    background-color: #F5F9FF;
}

.header-title{
    font-size: 24px;
    background: linear-gradient(100deg, #2BA5F7, #2366E0) !important;
    color: white;
    display: inline-block;
    padding: 10px 40px;
    border-radius: 50px;
    font-weight: bold;
}

/* Mobile */
@media (max-width: 480px) {
    .header-title{
        font-size: 14px;
        background: linear-gradient(100deg, #2BA5F7, #2366E0) !important;
        color: white;
        display: inline-block;
        padding: 10px 40px;
        border-radius: 50px;
        font-weight: bold;
    }
}

/* Tablet */
@media (min-width: 481px) and (max-width: 1024px) {
    .header-title{
        font-size: 18px;
        background: linear-gradient(100deg, #2BA5F7, #2366E0) !important;
        color: white;
        display: inline-block;
        padding: 10px 40px;
        border-radius: 50px;
        font-weight: bold;
    }
}


/* Navbar */
    header{
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .navbar {
        background: linear-gradient(100deg, #2BA5F7, #2366E0) !important; 
        padding: 10px 0;
    }

    .nav-link {
        color: white !important;
        margin-right: 15px;
    }

    .nav-link:hover {
        color: #ffa500 !important; 
        
    }

    .navbar-brand {
        display: flex;
        align-items: center; 
    }

    .navbar-brand .logo {
        width: 100%;
        max-width: 100px; 
        object-fit: cover;
        object-position: center;
    }

    .navbar-toggler {
        background-color: #FFB501; 
        border: none;
        margin-right: 10px;
    }

    .navbar-toggler:focus {
        outline: none; /* Menghapus outline saat tombol mendapatkan fokus */
        box-shadow: none; /* Menghapus efek bayangan jika ada */
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml;charset=UTF8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important; 
    }

    /* Tablet */
    @media (min-width: 481px) and (max-width: 1024px) {
        .navbar-brand .logo {
            width: 100%;
            max-width: 80px;
            margin-left: 20px;
        }
    }

    /* Mobile */
    @media (max-width: 480px) {
        .navbar-brand .logo {
            width: 100%;
            max-width: 70px;
            margin-left: 15px;
        }
    }

    
    .dropdown-menu {
        background-color: #fff; 
        border: 1px solid #dee2e6; 
        padding: 6px; 
        width: auto; 
        max-width: 300px; 
        margin: 0 auto; 
    }

    .dropdown-item {
        color: #343a40; 
        padding: 6px 6px; 
        margin-bottom: 5px; 
        white-space: nowrap; 
        
    }


    .dropdown-item:last-child {
        margin-bottom: 0; 
    }


    .dropdown-item:hover {
        background-color: #E6F1FF; 
        color: #0873FF; 
        border-radius: 8px;
    }

    .navbar-nav .active {
        color: #FFB501 !important; 
        font-weight: 500;
    }

    .btn-warning {
        background-color: #ffc107;
        color: white;
        font-weight: bold;
        margin-left: 50px; 
    }
    .location-btn {
        padding: 8px 20px;
        border-radius: 8px;
        align-items: center;  
    }

    .location-btn i {
        margin-right: 8px; 
    }

    @media (min-width: 481px) and (max-width: 1024px) {
        .navbar-nav {
            text-align: center;
        }

        .btn-warning {
            margin: 10px auto;
            margin-top: 10px; 
            width: 50%; 
            text-align: center;
            display: block; 
        }
    }

    @media (max-width: 480px) {
        .dropdown-menu {
            max-width: 50%; 
            margin: 0 auto; 
        }
        .navbar-nav {
            text-align: center;
            justify-content: center;
            display: flex;
        }

        .btn-warning {
            margin: 10px auto;
            margin-top: 10px; 
            width: 40%; 
            text-align: center;
            display: block; 
        }
    }


/* Navbar */


/* Carousel Hero */
    .carousel-box{
        padding: 0;
        position: relative;
        background: linear-gradient(100deg, #2BA5F7, #2366E0) !important; 
    }

    .carousel-content{
        padding: 40px 40px;
    }

    .item picture img{
        border-radius: 15px;
        max-height: 490px;
        object-fit: cover;
        object-position: center;
    }

    button.owl-prev, button.owl-next {
        width: 50px;
        height: 50px;
        border-radius: 50% !important;
        background-color: #FFB501 !important;
        color: white !important;
        position: absolute;
        top: 40%; 
        opacity: 1;
        justify-content: center !important;
        align-items: center !important;
        text-align: center;
        z-index: 10;
    }

    button.owl-prev:hover, button.owl-next:hover {
        background-color: #FF9C00 !important;
        opacity: 100%;
    }

    .owl-prev {
        left: -30px;
    }
    
    .owl-next {
        right: -30px;
    }

    .carousel-control-prev-icon, .carousel-control-next-icon{
        width: 50%;
        margin-top: 5px;
        position: relative;
    }

    .owl-dot.active span {
        background: #FFB501 !important; /* Warna kuning untuk dot yang aktif */
    }


    @media (min-width: 481px) and (max-width: 1024px) {

        .item {
            height: 220px; 
            overflow: hidden; 
        }

        .item picture img{
            width: 100%;
            height: 100%;
            max-height: 220px !important;
            object-fit: cover !important;
            object-position: center;
        }

        button.owl-prev, button.owl-next {
            width: 40px;
            height: 40px;
            border-radius: 50% !important;
            background-color: #FFB501 !important;
            color: white !important;
            position: absolute;
            top: 35%; 
            opacity: 1;
            justify-content: center !important;
            align-items: center !important;
            text-align: center;
            z-index: 10;
        }

        .carousel-control-prev-icon, .carousel-control-next-icon{
            width: 50%;
            margin-top: 4px !important;
            position: relative;
        }
        .carousel-content{
            padding: 40px 30px !important;
        }
    }

    @media (max-width: 480px) {
        .hero-carousel button.owl-prev, .hero-carousel button.owl-next {
            display: none !important;
        }

        .item picture img{
            width: 100%;
            height: 100%;
            max-height: 550px !important;
            object-fit: cover !important;
            object-position: center;
            border-radius: 10px;
        }

        .carousel-content{
            padding: 40px 40px;
        }     
    }

/* End Carousel Hero */


/* Menu */
    .menu-box{
        padding: 30px 30px;
        display: flex;
        flex-direction: column;
    }

    .menu-box .menu-header {
        text-align: center;

    }
    .menu-box .menu-header h1 {
        font-size: 24px;
        background: linear-gradient(100deg, #2BA5F7, #2366E0) !important;
        color: white;
        display: inline-block;
        padding: 10px 40px;
        border-radius: 50px;
    }

    .menu-tabs button {
        background-color: #ffcc00;
        border: none;
        padding: 10px 20px;
        margin: 0 5px;
        border-radius: 20px;
        color: white;
        font-weight: bold;
    }

    /* Nav Title */
      .nav-tabs{
            border: none;
            display: flex;
            flex-direction: row;
      }
      
      .nav-tabs .nav-link {
        background-color: transparent;
        color: #2366E0 !important;
        border-radius: 50px;
        transition: all 0.3s ease;
        padding: 10px 20px;
        display: inline-block;
      }
      
      .nav-tabs .nav-link.active {
        background-color: #FFB501;
        color: white !important;
        border-radius: 50px;
      }
      
      .nav-tabs .nav-link:not(.active) {
        background-color: transparent;
        color: #2366E0;
      }
      
      .nav-tabs .nav-link:not(.active):hover {
        color: white;
        background-color: rgba(0, 0, 255, 0.1); 
      }
      
    /* Nav Title */


    /* Carousel */
    #carouselBestSeller .item, #carouselNewMenu .item{
        display: flex;
        flex-direction: column;
        width: 100%;
        height: max-content;
        padding: 10px 0 30px 3px;
        gap: 20px;
        justify-content: center;
    }

    #carouselBestSeller.owl-carousel, #carouselNewMenu.owl-carousel{
        padding: 0 55px;
    }

    .card {
        border: none;
        box-shadow: 0 4px 5px rgba(0, 0, 0, 0.2);
        border-radius: 15px;
        background-color: #ffffff;
        transition: transform 0.2s;
        padding: 8px;
        margin: 0; 
    }

    .card:hover {
        transform: scale(1.05);
    }
    
    .card-title {
        font-size: 16px;
        font-weight: bold;
        color: #333;
        margin: 0;
        text-align: left;
    }

    .card img {
        width: 100%;
        max-height: 150px;
        object-fit: cover;
        object-position: center;
        margin: 0;
        border-radius: 8px;
    }

    .card-body {
        padding: 5px;
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .card-category {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .card-body p {
        margin: 5px 0;
        font-size: 14px;
        text-align: left; 
    }

    .stars {
        color: gold;
        margin-left: 5px; 
        font-size: 20px;
    }

    @media (min-width: 481px) and (max-width: 1024px){
          .stars {
            color: gold;
            margin-left: 5px; 
            font-size: 16px;
        }

        #carouselBestSeller.owl-carousel{
            padding: 0 45px;
        }

        #crouselNewMenu.owl-carousel{
            padding: 0 45px;
        }
    }

    @media (max-width: 480px){
        .stars {
            color: gold;
            margin-left: 0; 
            font-size: 14px;
        }

        #carouselBestSeller.owl-carousel{
            padding: 0 10px;
        }

        #carouselNewMenu.owl-carousel{
            padding: 0 10px;
        }

        #carouselBestSeller button.owl-prev,  #carouselBestSeller button.owl-next {
            display: none;
        }

        #carouselNewMenu button.owl-prev,  #carouselNewMenu button.owl-next {
            display: none;
        }

        #carouselBestSeller .owl-dot:nth-child(n+6) {
            display: none; 
        }

        #carouselNewMenu .owl-dot:nth-child(n+6) {
            display: none; 
        }
    }
  
/* End Menu */


/* Testimoni */

    .testimoni-carousel .owl-dot.active span {
        background: #45a8ff !important; /* Warna kuning untuk dot yang aktif */
    }

    .testimoni-box{
        background-color: white;
        justify-content: center;
        align-items: center;
        padding: 30px 40px;
    }


    .testimonial-wrapper .col-lg-4{
        flex: 0 1 calc(33.33% - 10px);
        padding: 0;
    }

    .testimoni-header{
        text-align: center;
        justify-content: center;
        align-items: center;
        padding: 20px 0;
    }

    .testimonial-card {
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        padding: 20px;
        margin: 15px;
        position: relative;
        display: flex;
        flex-direction: column;
    }
    
    .testimonial-card img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
    }

    .testimonial-title {
        background: linear-gradient(90deg, #2980f2, #45a8ff);
        color: white;
        border-radius: 30px;
        padding: 10px 30px;
        font-weight: bold;
        display: inline-block;
    }

    .testimonial-content {
        margin-top: 15px;
        font-size: 14px;
        color: #555;
    }

    .carousel-indicators {
        bottom: -30px;
    }

    .testimonial-wrapper {
        display: flex;
        justify-content: center;
    }

    .carousel-inner {
        text-align: center;
    }

    .row {
        justify-content: center;
    }

    /* Style for Google icon */
    .google-icon {
        position: absolute; /* Positioning the icon absolutely */
        top: 30px; /* Adjust as needed */
        right: 30px; /* Adjust as needed */
        width: 20px; /* Set width for the icon */
        height: 20px; /* Set height for the icon */
    }

    .testimoni-indicators [data-bs-target] {
        width: 32px;
        height: 4px;
        border-radius: 0;
        background-color: rgb(197, 197, 197);
        opacity: 80%;
    }

    .testimoni-indicators .active {
        background-color: #45a8ff;
        opacity: 100%;
    }

    @media (min-width: 481px) and (max-width: 1024px){
        .testimonial-wrapper .col-lg-4{
            flex: 0 1 calc(50% - 10px);
            padding: 0;
        }

        #testimonialCarousel .item{
            height: min-content;
        }
    }

    @media (max-width: 480px){
        .testimonial-wrapper .col-lg-4{
            flex: 0 1 calc(100% - 10px);
            padding: 0;
        }
    }
/* End Testimoni */


/* Maps */
    .maps-box{
        padding: 30px 40px;
    }

    .maps-header{
        padding: 10px 20px;
        justify-content: center;
        text-align: center;
    }

    .search-container {
        position: relative;
    }

    #searchInput {
        width: 200px; /* Tentukan lebar sesuai kebutuhan */
        padding: 8px;
        margin-right: 10px;
        font-size: 14px;
    }
    #searchButton{
        font-size: 14px;
    }

    @media (max-width: 480px){
        .maps-box{
            padding: 30px 20px;
        }
    }
/* End Maps */

/* Chat Customer */
.chat-container {
    position: fixed;
    bottom: 80px; /* Margin from the bottom */
    right: 20px; /* Margin from the right */
    width: 300px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    display: none; /* Hide by default */
    background-color: white;
    z-index: 1000; /* Make sure it's on top */
}

.chat-header {
    background-color: #2BA5F7;
    color: white;
    padding: 10px;
    border-radius: 8px 8px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-body {
    padding: 10px;
    max-height: 400px;
    overflow-y: auto; /* Enable scrolling */
}

.messages {
    margin-bottom: 10px;
}

.chat-button {
    position: fixed;
    bottom: 20px; /* Margin from the bottom */
    right: 20px; /* Margin from the right */
    border: none;
    background-color: #FFB501;
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    z-index: 1000; /* Make sure it's on top */
}

/* End Chat Customer */



/* Footer */
    .footer {
        background: linear-gradient(100deg, #2BA5F7, #2366E0) !important; 
        color: white;
        padding: 60px 0;
        font-size: 0.8rem; /* Ukuran font yang nyaman */
    }

    .footer-link{
        color: white;
        text-decoration: none;
    }
    .list-unstyled li{
        padding: 5px 0;
    }

    .kontak-kami p{
        margin: 0;
        padding: 5px 0;
    }

    .kontak-kami i, .icon-address{
        font-size: 16px;
        padding-right: 5px;
        align-items: center;
    }
    .footer .logo {
        width: 100%;
        max-width: 130px;
        object-fit: cover;
        object-position: center;
    }
    
    .footer .social-icons a {
        color: #f8f9fa;
        font-size: 1.5rem;
        transition: color 0.3s;
    }

    .footer .social-icons a:hover {
        color: #FFB501; 
    }

    .footer .footer-heading {
        font-size: 1.1rem;
        font-weight: bold;
        margin-bottom: 15px;
    }

    .member-logo-grid{
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
    }
    .member-logo {
        width: 100px;
        max-width: 50px;
        padding: 0;
        border-radius: 10%;
    }

    .footer-link:hover {
        color: #FFB501;
        text-decoration: none;
    }
  
    @media (min-width: 769px) {
        .member-logo-grid{
            display: flex;
            gap: 5px;
            justify-content: start;
            margin-bottom: 20px;
        }
        .kontak-kami{
            margin-bottom: 20px;
        }
        .member-logo {
            width: 100px;
            max-width: 45px;
            padding: 0;
            border-radius: 10%;
        }

        .footer .logo {
            width: 100%;
            max-width: 110px;
            object-fit: cover;
            object-position: center;
        }
    }

    @media (max-width: 768px) {
        .footer-heading {
        font-size: 1.2rem; /* Adjust heading size for small screens */
        }
        .member-logo-grid{
            display: flex;
            gap: 5px;
            justify-content: center;
            margin-bottom: 20px;
        }

        .member-logo {
            width: 100px;
            max-width: 70px;
            padding: 0;
            border-radius: 10%;
        }

        .icon-address{
            display: none;
        }

        .footer .logo {
            width: 100%;
            max-width: 140px;
            object-fit: cover;
            object-position: center;
        }
    }
/* End Footer */