html, body {
  max-width: 100%;
  overflow-x: hidden;
}

:root {
    --green: #28a745;
    --orange: #ff9800;
    --orange-dark: #ff5722;
    --dark: #212529;
    --muted: #e0e0e0;
    --white: #fff;
    --danger: #dc3545;
    --blue: #007bff;
}

/* === Base === */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark);
}
a { text-decoration: none; }

/* === Topbar === */
.topbar {
    background:darkgoldenrod;
    color: #fff;
    padding-top: 75px;
    font-size: 14px;
}
.topbar a {
    font-weight: 700;
    color: #fff;
}

/* === Navbar === */
.navbar {
    background: linear-gradient(45deg, #ffc107, #ff9800); /* gradasi warna kuning-oranye */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}
.navbar a { color: white; }
.navbar-brand img { height: 40px; }

/* === Hero Carousel === */
.hero { position: relative; height: 100vh; }
.carousel-item {
    position: relative;
    height: 100vh;
    background-size: cover;
    background-position: center;
    color: #fff;
    overflow: hidden;
}
.carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}
.carousel-item .container { position: relative; z-index: 2; }

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 4px 15px rgba(0,0,0,0.6), 0 0 20px rgba(255,255,255,0.3);
}
.hero-subtitle {
    font-size: 1.3rem;
    color: #f1f1f1;
    max-width: 550px;
    text-shadow: 1px 2px 10px rgba(0,0,0,0.5);
}
.text-accent {
    color: #00ffb2;
    text-shadow: 0 0 8px rgba(0,255,178,0.8);
}

/* === Animasi Hero === */
.animate-slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUpFade 1.2s ease forwards;
}
.animate-slide-up.delay-1 { animation-delay: .3s; }
.animate-slide-up.delay-2 { animation-delay: .6s; }

@keyframes slideUpFade {
    0% { opacity:0; transform: translateY(40px);}
    100%{ opacity:1; transform: translateY(0);}
}

@media(max-width:768px){
    .hero-title { font-size:2.2rem; text-align:center;}
    .hero-subtitle { font-size:1rem; text-align:center;}
}

/* === Carousel Indicators & Controls === */
.carousel-indicators [data-bs-target] {
    width:12px; height:12px;
    margin:0 6px;
    border-radius:50%;
    background-color:rgba(255,255,255,0.5);
    border:none;
    transition:background-color .3s ease;
}
.carousel-indicators .active {
    background-color:#ffc107;
    transform:scale(1.2);
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background:none;
    width:48px; height:48px;
    border-radius:50%;
    background-color:rgba(255,255,255,0.3);
    display:flex;align-items:center;justify-content:center;
    font-size:1.5rem;color:#fff;
    transition:background-color .3s ease;
}
.carousel-control-prev-icon::before { content:'‹'; }
.carousel-control-next-icon::before { content:'›'; }
.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    background-color:rgba(255,255,255,0.6); color:#000;
}

.menu-tabs .nav-link {
  border: none;
  background: #f8f8f8;
  color: #444;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 10px;
  margin: 0 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.menu-tabs .nav-link .tab-icon {
  font-size: 1.4rem;
}

.menu-tabs .nav-link:hover {
  background: #ffe5ec;
  color: #e6004c;
}

.menu-tabs .nav-link.active {
  background: #e6004c;
  color: #fff;
  box-shadow: 0 4px 12px rgba(230, 0, 76, 0.3);
}

.menu-title {
  font-weight: 700;
  font-size: 2rem;
  color: #222;
}

.menu-list li {
  margin-bottom: 1.2rem;
}

.menu-list h5 {
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  color: #111;
  font-size: 1.1rem;
}

.menu-list h5 .price {
  color: #e6004c;
  font-weight: 700;
}
.menu-list li p::after {
  content: "";
  display: block;
  border-bottom: 4px dotted #ccc;
  margin-top: 0.5rem;   /* jarak antara teks dan titik */
}
.menu-list p {
  font-size: 0.9rem;
  color: #666;
  margin: 0.2rem 0 0 0;
}

.img-fluid.rounded-circle {
  border: 8px solid #fff;
  object-fit: cover;
}

/* Background & main section */
.reserve-section {
  background: #f8f9fa; /* background luar */
}

.reserve-box {
  background: #f7324c url('https://static.vecteezy.com/system/resources/previews/012/186/625/large_2x/fast-food-seamless-outline-pattern-design-free-vector.jpg') repeat; 
  background-size: contain;
  background-blend-mode: multiply;  /* atau overlay, soft-light, sesuai selera */
  border-radius: 20px;
}

/* Title & underline */
.reserve-text h2 {
  font-size: 2.5rem;
  line-height: 1.2;
}
.reserve-text .underlined {
  border-bottom: 4px solid #ffdd00;
  padding-bottom: 2px;
}

/* Form controls */
.form-control,
.form-select {
  border: none;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  box-shadow: none;
}

/* Submit button */
.reserve-btn {
  background: #ffdd00;
  color: #000;
  border-radius: 12px;
  position: relative;
  transition: all 0.3s ease;
}

.reserve-btn::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 2px solid #ffdd00;
  border-radius: 14px;
  opacity: 0.8;
}

.reserve-btn:hover {
  background: #ffc107;
}

/* Responsive */
@media (max-width: 767px) {
  .reserve-text h2 {
    font-size: 2rem;
  }
}
/* Section background */
.experts-section {
  background: #fff;
}

/* Underline below heading */
.underline {
  width: 70px;
  height: 4px;
  background: #ffce00;
  border-radius: 2px;
  margin-top: 8px;
}

/* Expert Card */
.expert-card {
  background: #fff;
  border-radius: 50%;
  padding-top: 320px; 
  width: 280px;
  height: 280px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Expert image placed above circle */
.expert-img {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
}
.expert-img img {
  max-width: 100%;
}

/* Info inside circle */
.expert-info {
  padding: 0 20px;
}

.tab-pane img
{
  max-width: 400px;
}
/* Social icons */
.social-icons a {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  color: #555;
  font-size: 1.2rem;
  border-radius: 50%;
  margin: 0 5px;
  transition: all 0.3s ease;
}
.social-icons a:hover {
  background: #ffce00;
  color: #000;
}


/* Responsive tweaks */
@media (max-width: 767px) {
  .expert-card {
    width: 240px;
    height: 240px;
    padding-top: 150px;
  }
  .expert-img {
    width: 170px;
    top: -70px;
  }
}

/* === Banner Section === */
.banner-section {
  padding: 60px 0;
  /* urutan: layer warna/gradasi di depan → layer gambar di belakang */
  background: 
    linear-gradient(135deg, #6a11cb 0%, #2575fc 100%),
    url('https://static.vecteezy.com/system/resources/previews/012/186/625/large_2x/fast-food-seamless-outline-pattern-design-free-vector.jpg');
  
  background-repeat: repeat;       /* ulangi pola */
  background-size: contain;        /* agar pattern tidak terlalu besar */
  background-blend-mode: multiply; /* bisa juga: overlay / soft-light / screen / darken */
  
  color: #fff;
  position: relative;
}

.banner-section::after {
    content:"";
    position:absolute; top:0;left:0;width:100%;height:100%;
    background:rgba(0,0,0,0.15);
}
.banner-section .container { position:relative; z-index:1; }
.banner-section h2 {
    text-align:center;
    font-weight:700;
    font-size:2.8rem;
    margin-bottom:50px;
    text-shadow:2px 2px 5px rgba(0,0,0,0.3);
}
@media(max-width:768px){ .banner-section h2 {font-size:2rem;} }

.promo-banner {
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
}
.promo-item {
    background:rgba(255,255,255,0.15);
    backdrop-filter:blur(12px);
    border-radius:18px;
    padding:20px;
    width:300px;
    text-align:center;
    transition:.3s;
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
    border:1px solid rgba(255,255,255,0.2);
}
.promo-item:hover {
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,0.25);
}
.promo-item img {
    width:100%;
    height:180px;
    object-fit:cover;
    border-radius:15px;
    margin-bottom:15px;
    transition:transform .3s;
}
.promo-item:hover img { transform:scale(1.05); }
.promo-badge {
    display:inline-block;
    background:linear-gradient(45deg,#ff6b6b,#ff3d00);
    padding:6px 16px;
    color:#fff; font-weight:600; font-size:.85rem;
    border-radius:20px; margin-bottom:12px;
    box-shadow:0 3px 8px rgba(0,0,0,0.2);
}
.btn-promo {
    display:inline-block;
    background:linear-gradient(45deg,#ffeb3b,#f39c12);
    color:#333; font-weight:600;
    padding:10px 22px; border-radius:25px;
    text-decoration:none;
    box-shadow:0 4px 12px rgba(0,0,0,0.2);
    transition:.3s;
}
.btn-promo:hover {
    background:linear-gradient(45deg,#ffd600,#ff9800);
    color:#222; transform:translateY(-2px);
}

/* === Product Card === */
.product-card {
    position:relative;
    overflow:hidden;
    border-radius:10px;
    box-shadow:0 4px 12px rgba(0,0,0,0.1);
}
.product-card .overlay {
    position:absolute;top:0;left:0;
    width:100%;height:100%;
    background:rgba(46,0,79,0.5);
    display:flex;align-items:center;justify-content:center;
    opacity:0; transition:.3s;
}
.product-card:hover .overlay { opacity:1; }
.product-card img {
    width:100%;height:200px;object-fit:contain;
    background:#f0f0f0;
}
.product-body { padding:1rem; }
.product-title { font-size:1rem;font-weight:400; margin-bottom:.25rem;}
.product-price { font-weight:bold; color:rgba(46,0,79,1); margin-bottom:.75rem;}
.btn-primary {
    color:#fff; background:orange;
    border:none; border-radius:10px; max-width:140px;
}

/* === Recipe & Ad Banner === */
.recipe-card {
    background:#fff9e6;
    border:none;border-radius:15px;
    padding:10px;text-align:center;
    margin-bottom:20px;
}
.recipe-card img {
    max-width:100%; max-height:200px; border-radius:10px;
}
.recipe-card .price { font-weight:bold; color:#f4a261;}
.ad-banner {
    background:#ffcc00;
    border-radius:15px;
    padding:20px;
    text-align:center;
    color:#fff;
}
.ad-banner h2 { font-size:2rem;color:#ff0000; }
.ad-banner p { font-size:1.2rem; }

/* === Testimonial === */
.testimonial-section { background:#f8f9fa; padding:50px 0; text-align:center;}
.testimonial-card {
    background:#fff;
    border-radius:15px;
    padding:20px;
    margin-bottom:20px;
    box-shadow:0 4px 8px rgba(0,0,0,0.1);
}
.testimonial-card img {
    width:80px;height:80px;border-radius:50%;margin-bottom:15px;
}
.testimonial-card .rating { color:#ffca08; margin-bottom:10px;}
.testimonial-card .name { font-weight:bold; color:#333;}
.testimonial-card .quote { font-style:italic; color:#666;}

.gold { color:#d4af37; font-size:12px; }
.text-gradient {
    background:linear-gradient(135deg,#4e00c2,#ec008c);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* overlay dekoratif */
.overlay-element {
  position: absolute;
  z-index: 1;                    /* di bawah kartu, di atas background */
  opacity: 0.15;
  pointer-events: none;
}

.overlay-element overlay-1 {
    top: 30%;
    left: 5%;
    width: 500px;
    height: auto;
}