﻿section {
    background-color: transparent; 
    
}
.navbar {
    padding: 10px 30px;
    background: linear-gradient(135deg, #0f4c5c, #006d77);
}

 
    .navbar .container {
        padding-left: 10px !important;
        padding-right: 20px !important;
    }


.navbar-brand {
    font-size: 28px !important;
    font-weight: 700;
}
.navbar-nav {
    margin-left: auto;
}


.navbar .navbar-nav {
    display: flex;
    gap: 30px;
    margin-left: auto;
}


.navbar .nav-link {
    font-size: 25px !important;
    font-weight: 600;
    color: white !important;
}
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #000;
}
    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: url('/image/bg.jpg') center/cover no-repeat;
        filter: blur(8px);
        transform: scale(1.1);
        z-index: 0;
    }

    
    .hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 1;
    }

    
    .hero .container-fluid,
    .hero .row,
    .hero .col-md-6 {
        position: relative;
        z-index: 2;
    }

      
        .hero .col-md-6:first-child {
            padding-left: 80px;
        }

.hero-img {
    max-width: 75%;
    display:block;
    margin:auto;
}
.btn-order-now {
    padding: 30px 50px;
    font-size: 40px !important;
    font-weight: 700;
    border-radius: 14px;
    background: #006d77 !important;
    color: white;
    border: none;
    display: inline-block;
    border-radius: 12px;
    transition: 0.3s ease;
}
    .btn-order-now:hover {
        transform: scale(1.08);
        box-shadow: 0 0 18px rgba(15, 76, 92, 0.6);
    }
.btn-teal {
    padding: 20px 35px;
    font-size: 18px;
    font-weight: 600;
}

    
    .hero h1 {
        font-size: 60px;
    }
    
    .slide1, .slide2, .slide3 {
        opacity: 0;
        transform: translateY(40px);
    }
    
    .slide1 {
        animation: slideUp 0.8s ease forwards;
    }
    
    .slide2 {
        animation: slideUp 0.8s ease forwards;
        animation-delay: 0.3s;
    }
    
    .slide3 {
        animation: slideUp 0.8s ease forwards;
        animation-delay: 0.6s;
    }
    
    @keyframes slideUp {
        to {
        opacity: 1;
        transform: translateY(0);
    }
}
.btn-warning:hover {
    transform: scale(1.05);
    transition: 0.3s;
}
    

/* IMAGE */
.hero-img {
    max-width: 100%;
  
}
.hero .col-md-6 {
    padding-left: 80px;
}

body {
    background-color: white !important;
    color: black !important;
    margin: 0;
}


@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}


.circle-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    transition: 0.4s ease;
    cursor: pointer;
}

   
    .circle-img:hover {
        transform: scale(1.1);
        box-shadow: 0 0 20px rgba(255, 165, 0, 0.6);
    }
.review-section {
    background: white !important;
    padding: 60px 0;
    color: white;
}
.menu-filters {
    display: flex;
    justify-content: center;
    gap: 100px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.menu-btn {
    
    font-size: 20px;
    padding: 10px 22px;
    border-radius: 30px;
    background: #0f4c5c;
    color: white;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s ease;
    border: 2px solid transparent;
    display: inline-block;
}

    .menu-btn:hover {
        background: #006d77;
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    }

    .menu-btn.active {
        background: white;
        color: #0f4c5c !important;
        border: 2px solid #0f4c5c;
    }
.btn-teal {
    background: linear-gradient(135deg, #006d77, #0f4c5c, #003f47);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 8px 16px;
    transition: 0.3s;
}
.btn-add-cart {
    background: #83c5be;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 8px;
    transition: 0.3s;
    box-shadow: 0 0 10px rgba(15, 76, 92, 0.4);
}

    .btn-add-cart:hover {
        background: #006d77;
        transform: scale(1.05);
        box-shadow: 0 0 25px rgba(15, 76, 92, 0.8);
    }


.btn-teal:hover {
    background: linear-gradient(135deg, #006d77, #0f4c5c, #003f47);
    transform: scale(1.05);
}

.menu-section {
    background: white !important;
    padding: 60px 0;
}
    .menu-section .row {
        background: white !important;
        padding: 30px;
        border-radius: 20px;
    }
    .menu-section .card {
        background: linear-gradient(45deg, #0f4c5c, #006d77) !important;
        color: white !important;
    }


.card {
    background: white !important;
    border-radius: 15px;
    color: black;
}
.btn {
    border-radius: 8px;
}
.text-dark {
    color: white !important;
}
.container {
    background: transparent !important;
}
.row {
    row-gap: 20px;
}

.card {
    background: linear-gradient(45deg, #0f4c5c, #006d77) !important;
    border-radius: 15px;
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px;
    gap: 10px;
}

    .card img {
        width: 100%;
        height: 200px; 
        object-fit: cover; 
        border-radius: 12px;
    }


    
    .card h5 {
        margin-top: 18px;
        font-weight: bold;
        margin-top: 10px;
    }

    .card p {
        margin-bottom: 5px;
        font-size: 14px;
    }
    .card:hover {
        transform: translateY(-5px);
        transition: 0.3s;
    }
.form-select {
    background-color: white !important;
    color: black !important;
}

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

    .fade-up.show {
        opacity: 1;
        transform: translateY(0);
    }
#cart-count {
    font-size: 12px;
    padding: 5px 7px;
}
form {
    max-width: 500px;
    margin: auto;
}
.review-card {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 15px;
    transition: 0.3s;
    backdrop-filter: blur(5px);
}

    .review-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 25px rgba(255, 165, 0, 0.5);
    }
select {
    background: #222;
    color: white;
    border: none;
}
.form-select {
    background: #222;
    color: white;
    border: none;
}

.btn-light {
    background: #333;
    color: white;
}
.qty-box {
    width: 35px;
    text-align: center;
    background: #222;
    border-radius: 5px;
    padding: 3px 0;
}
.qty-container {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

    .qty-container button {
        width: 35px;
        height: 35px;
        border-radius: 8px;
        border: 1px solid #555;
        background: white;
        color: #0f4c5c;
        font-size: 18px;
        cursor: pointer;
    }

    .qty-container span {
        width: 40px;
        height: 35px;
        background: white;
        color: #0f4c5c;
        border: 1px solid #e0e0e0;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
    }
.cart-title {
    text-align: center;
    margin-top: 30px;
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(45deg, #0f2027, #2c5364);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.menu-title {
    text-align: center;
    margin: 40px 0;
    font-size: 38px;
    font-weight: 700;
    background: linear-gradient(45deg, #0f2027, #2c5364);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.contact-title {
    text-align: center;
    margin: 40px 0;
    font-size: 38px;
    font-weight: 700;
    background: linear-gradient(45deg, #0f2027, #2c5364);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.contact-info {
    background: #fff;
    padding: 50px 0;
}
.menu-bg {
    background: #fff; 
    min-height: 100vh;
    padding: 30px;
}

.info-box {
    background: #0f4c5c;
    padding: 25px;
    border-radius: 15px;
    transition: 0.3s;
}

    .info-box h5 {
        color: #ff7a00;
        margin-bottom: 10px;
    }

    .info-box p {
        color: #ccc;
        margin: 0;
    }

    
    .info-box:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 25px rgba(255,122,0,0.4);
    }
.contact-info + footer {
    margin-top: 0;
}


.checkout-section {
    width: 100% !important;
    max-width: 1200px !important;
    margin: 40px auto;
    display: flex;
    gap: 30px;
    padding: 40px;
}
.checkout-form {
    width: 100%;
}
    .checkout-form .form-group {
        width: 100%;
    }

    .checkout-form .form-control {
        width: 100%;
        height: 45px;
    }
.order-summary-box {
    width: 100%;
    background: #f9f9f9;
    padding: 25px;
    border-radius: 15px;
    min-height: 180px;
}


.checkout-title {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #0f2027, #2c5364);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.checkout-left {
    flex: 2 !important;
    min-width: 0;
}
.checkout-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #0f4c5c;
}

.order-summary-box {
    flex: 1 !important;
   
}


.form-group {
    margin-bottom: 15px;
}

    .form-group label {
        color: #ccc;
        font-size: 14px;
        margin-bottom: 5px;
        display: block;
    }


.form-control {
    height: 50px;
    font-size: 16px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    color: black;
    border-radius: 10px;
    padding: 10px;
}
textarea.form-control {
    height: 90px;
    resize: none;
}

    .form-control:focus {
        border-color: #0f4c5c;
        box-shadow: 0 0 5px rgba(15,76,92,0.3);
    }

#contact-form .form-control {
    background-color: #fff;
    color: #000;
}

  
    #contact-form .form-control:focus {
        background-color: #fff;
        color: #000;
        outline: none;
        box-shadow: none;
    }
.order-summary-box {
    flex: 1;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #eee;
}
.order-summary-box p {
    margin: 3px 0;
}

.order-summary-box h3 {
    margin-bottom: 15px;
    color: #0f4c5c;
}

.order-summary-box h4 {
    margin-top: 20px;
    color: #0f4c5c;
}


.btn-warning {
    background: linear-gradient(45deg, #0f2027, #2c5364);
    border: none;
    font-weight: 600;
    border-radius: 10px;
    padding: 12px;
}

    .btn-warning:hover {
        transform: scale(1.05);
    }
.btn-add-cart {
    width: 100%;
    margin-top: 10px;
    padding: 10px 12px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    background: #008c99;
    color: white;
    cursor: pointer;
    transition: 0.25s ease;
}
    .btn-add-cart:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
    }
#summary-total {
    font-size: 22px;
    font-weight: bold;
    color: #0f4c5c;
}
.btn-warning {
    background: linear-gradient(45deg, #0f4c5c, #006d77);
    border: none;
    color: white;
    border-radius: 10px;
    padding: 12px;
}

.checkout-form {
    width: 100%;
}

    .checkout-form .form-control {
        height: 52px !important;
        font-size: 16px;
    }
    .checkout-form h4 {
        font-size: 20px;
        margin-bottom: 15px;
    }

.popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
    z-index: 999;
}
#order-summary {
    text-align: left;
    margin-top: 10px;
    max-height: 150px;
    overflow-y: auto;
}
.order-summary-box {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #eee;
    height: 100%;
}

    #order-summary p {
        margin: 5px 0;
        border-bottom: 1px solid #333;
        padding-bottom: 5px;
    }
.popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.popup-content {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    color: white;
    width: 300px;
    animation: scaleUp 0.4s ease;
}

/* ANIMATION */
@keyframes scaleUp {
    from {
        transform: scale(0.7);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}
@media (max-width: 768px) {
    .cart-layout {
        flex-direction: column;
    }

    .cart-left,
    .cart-right {
        flex: 1;
    }
}



.cart-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    padding: 20px;
}

.cart-left {
    flex: 2;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.cart-right {
    flex: 1.4;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.cart-left table {
    width: 100%;
    margin-bottom: 0;
}
.table th, .table td {
    vertical-align: middle !important;
    text-align: center;
}


.cart-left img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
}


@media (max-width: 768px) {
    .cart-layout {
        flex-direction: column;
    }
}
footer {
    background: linear-gradient(135deg, #0f4c5c, #006d77);
    border-top: 1px solid #222;
    font-size: 14px;
}