/* BASIC RESET */

:root {
    --primary-color: #8b1e1d;
    --primary-hover: #a81a1d;
    --secondary-color: #f3e3c78c;
    --dark-color: #181818;
    --light-color: hsl(0, 0%, 100%);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    }
body{
    font-family: 'Lexend', sans-serif;
    background: #fafafa;
    overflow-x: hidden;
}

html, body {
    overflow-x: hidden !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

/* HEADER */
#header{
  width:100%;
  background:#f3e3c78c;
  padding:12px 0;
  position:fixed;
  top:0;
  z-index:999;
  backdrop-filter: blur(19px);
}

#header .container{
  width:90%;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo img{width:140px;}

.navbar ul{
  display:flex;
  gap:30px;
}

.navbar ul li a{
  color:var(--dark-color);
  text-decoration:none;
  font-weight:700;
  transition:.3s;
  font-size: 18px;
}

.navbar ul li a:hover{
  color:var(--primary-color);
}

.order-btn {
  position: relative;
  background: var(--primary-color);
  color: var(--light-color);
  padding: 10px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  overflow: hidden;
  transition: 0.4s ease-in-out;
}

.order-btn:hover {
  background: #a81a1d;
  box-shadow: 0 0 25px rgba(168, 26, 29, 0.6);
  transform: scale(1.05);
}


.order-right {
    display: block;
}
.mobile-menu-icon {
    display: none;
}
/* Mobile Responsive */
@media(max-width: 768px) {

    .navbar {
        position: fixed;
        top: 70px;
        right: 0;
        width: 75%;
        height: auto;
        display: none;
        background: #fff;
        padding: 20px;
        flex-direction: column;
        gap: 18px;
        border-radius: 0 0 0 12px;
        box-shadow: -4px 4px 20px rgba(0,0,0,0.2);
        z-index: 99999;
    }

    .navbar.active {
        display: flex;
    }

    .mobile-menu-icon {
        display: block;
        z-index: 100000;
    }
}



/* Smooth dropdown animation */
@keyframes slideDown {
    0% {opacity: 0; transform: translateY(-10px);}
    100% {opacity: 1; transform: translateY(0);}
}

/* ================= HERO SECTION ================= */
.rt-hero-section {
    padding-top: 160px;
    background: #fff5e6;
    position: relative;
}

.rt-hero-container {
    width: 100%;
    max-width: 1300px;
    padding: 0 5%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rt-hero-title {
    font-size: 55px;
    font-weight: 800;
    color: var(--dark-color);
}

.rt-hero-desc {
    font-size: 18px;
    color: var(--dark-color);
    margin: 20px 0;
    width: 100%;
}

.rt-btn {
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--light-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

.rt-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 20px rgba(140, 21, 23, 0.4);
}

.rt-btn:active {
    transform: translateY(0) scale(1);
}

@media(max-width: 900px) {
    .rt-hero-section {
        padding: 140px 0 50px;
    }
    .rt-hero-container {
        flex-direction: column;
        text-align: center;
        padding: 0;
        width: 100%;
    }
    .rt-hero-images {
        width: 100%;
    }
    .rt-main-food {
        width: 260px;
    }
}



/* Hero Images */
.rt-hero-images {
    position: relative;
    width: 50%;
}

.rt-main-food {
    width: 500px;
    animation: floatMain 4s ease-in-out infinite;
}

@keyframes floatMain {
    0% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
    100% { transform: translateY(0); }
}

/* Floating items */
.rt-item {
    position: absolute;
    width: 90px;
    animation: rotateItem 6s linear infinite;
}

.item1 { top: 20px; left: 362px; }
.item2 { bottom: 72px; right: 12px; width: 70px; }
.item3 { top: 81px; right: 448px; }

@keyframes rotateItem {
    0% { transform: rotate(0deg) translateY(0); }
    50% { transform: rotate(30deg) translateY(-10px); }
    100% { transform: rotate(0deg) translateY(0); }
}

@media(max-width: 768px) {
  .rt-item {
    width: 55px !important;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .item1 {
    top: 3px;
    left: 70px;
  }

  .item2 {
    left: 65px;
    bottom: 28px;
  }

  .item3 {
    top: 58px;
    left: 310px;
  }
}


/* ================= ABOUT SECTION================= */

.rt-about-new {
    padding: 50px 0;
    
    background-size: cover;
    background-position: center;
    color: var(--light-color);
}

.rt-about-new-container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.rt-about-new-left {
    width: 50%;
}

.rt-about-new-left h2 {
    font-size: 45px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.rt-about-new-left p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.rt-about-new-right {
    width: 50%;
}

.rt-about-new-right img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 18px #00000050;
}

/* Responsive */
@media(max-width: 900px) {
    .rt-about-new-container {
        flex-direction: column;
        text-align: center;
    }
    .rt-about-new-left, 
    .rt-about-new-right {
        width: 100%;
    }
}


/* ================= SPECIAL DISH ================= */
.rt-section-title {
    text-align: center;
    font-size: 40px;
    margin-bottom: 40px;
}

.rt-special {
    padding: 80px 0;
    text-align: center;
    background: url('../images/slider-banner.png') center/cover no-repeat;
    position: relative;
   
}

.rt-special-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.rt-card {
    width: 300px;
    background: #fff;
    padding: 15px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 12px #00000010;
    transition: 0.3s;
}

.rt-card:hover {
    transform: translateY(-8px);
}

.rt-card img {
    width: 100%;
    border-radius: 10px;
}


/* ===== TOP MENU SLIDER ===== */
.rt-menu {
    text-align: center;
    padding: 80px 0;
    background: #fff5e6;
}

.rt-section-title {
    font-size: 36px;
    margin-bottom: 40px;
    font-family: 'Playfair Display', serif;
}

.rt-slider {
    width: 90%;
    margin: auto;
    display: flex;
    gap: 25px;
    overflow-x: scroll; /* ← must be scroll */
    scroll-behavior: auto;
    padding: 20px 0;
    white-space: normal;/* <-- Important for infinite scroll */
}


.rt-slider::-webkit-scrollbar {
    display: none;
}

.rt-slide {
    flex: 0 0 auto;
    width: 260px;
    background: #ffffff;
    border-radius: 14px;
    text-align: center;
    padding: 15px;
    cursor: pointer;
    transition: .4s ease-in-out;
    position: relative;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

.rt-slide img {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    object-fit: cover;
    transition: .4s ease;
}

.rt-slide:hover {
    transform: scale(1.08) translateY(-6px);
    box-shadow: 0 12px 28px rgba(140,21,23,0.25);
}

.rt-slide:hover img {
    transform: scale(1.15);
}

.rt-slide h3 {
    margin-top: 12px;
    font-size: 20px;
    font-family: 'Lexend', sans-serif;
}


@media(max-width: 992px) {
    .rt-slide {
        width: 220px;
    }
}

@media(max-width: 768px) {
    .rt-slide {
        width: 200px;
    }
}

@media(max-width: 480px) {
    .rt-slider {
        width: 100%;
        gap: 15px;
    }
    .rt-slide {
        width: 160px;
        padding: 10px;
    }

    .rt-slide img {
        height: 140px;
    }

    .rt-section-title {
        font-size: 28px;
    }
}

/* ================= FOOTER ================= */
.rt-footer {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 20px 0;
    text-align: center;
}

/* ================= RESPONSIVE ================= */
@media(max-width: 900px) {
    .rt-hero-container {
        flex-direction: column;
        text-align: center;
    }
    .rt-hero-images {
        width: 100%;
        margin-top: 30px;
    }
    .rt-main-food {
        width: 300px;
    }
}

/* FLOAT + ROTATE ANIMATION */
@keyframes floatFood {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(-25px) rotate(6deg);
  }
}

/* RESPONSIVE */
@media(max-width: 768px){
  .food-img {
    width: 150px;
    opacity: 0.3;
  }
  .hero-center h1{
    font-size: 32px;
  }
}

/* Sidebar base */
.rt-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  background: #fff;
  box-shadow: -2px 0 5px rgba(0,0,0,0.2);
  transition: right 0.3s ease;
  z-index: 9999;
  padding: 20px;
   height: 100vh; /* Full viewport height */
  overflow-y: auto;
}

/* Sidebar active */
.rt-sidebar.active {
  right: 0;
}

/* Sidebar header */
.rt-sidebar-header {
  display: flex;
  justify-content: flex-end;
}

.rt-close {
  font-size: 22px;
  cursor: pointer;
}

/* Sidebar menu */
.rt-sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.rt-sidebar-menu li {
  margin: 15px 0;
}

.rt-sidebar-menu a {
  text-decoration: none;
  color: var(--dark-color);
  font-size: 16px;
  font-weight: 500;
}

/* Sidebar order button */
.rt-sidebar-order {
  margin-top: 20px;
}

.rt-sidebar-order .order-btn {
  display: block;
  text-align: center;
  background: var(--primary-color);
  color: var(--light-color);
  padding: 10px;
  border-radius: 5px;
}

.rt-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.rt-overlay.active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  .navbar {
    display: none;
  }


  .order-right {
    display: none;
  }
}

/* =============== SPECIAL OFFERS SECTION =============== */
.rt-offer-section {
    position: relative;
    padding: 90px 20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll; /* IMPORTANT for mobile */
    min-height: 320px; /* Ensures image appears */
    text-align: center;
    color: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .rt-offer-section {
        background-size: cover !important;
        background-position: center !important;
        min-height: 380px; /* more visible on mobile */
    }
}
.rt-offer-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    backdrop-filter: brightness(0.4);
}

.rt-offer-content {
    position: relative;
    max-width: 800px;
    margin: auto;
    z-index: 2;
}

.rt-offer-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.rt-sub-text {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 500;
}

.rt-desc {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.rt-offer-btn {
    background: var(--primary-color);
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s;
}

.rt-offer-btn:hover {
    background: var(--secondary-color);
}


/* =============== CUSTOMER TESTIMONIALS SECTION  =============== */
/* MAIN WRAPPER */
.rt-testimonials { 
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Background image */
.rt-testimonials::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/testimonial-banner.png") center/cover no-repeat;
    z-index: 1;
}

/* Dark overlay */
.rt-testimonials::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
}

/* Content wrapper */
.rt-test-container {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

/* LEFT BOX */
.rt-test-left {
    width: 50%;
    margin-left: 80px;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    position: relative;
}

/* PROFILE DOTS */
.rt-profile-dots {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.rt-dot {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: 0.3s;
}

.rt-dot.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.rt-dot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* SLIDES */
.rt-test-slide {
    display: none;
    animation: fadeSlide 0.5s ease-in-out;
}

.rt-test-slide.active {
    display: block;
}

@keyframes fadeSlide {
    from {opacity: 0; transform: translateY(10px);}
    to {opacity: 1; transform: translateY(0);}
}

/* RIGHT STATS */
.rt-test-right {
    width: 40%;
    background: var(--primary-color);
    padding: 30px;
    border-radius: 15px;
    color: #fff;
}

.rt-stat-item {
    padding: 25px 0;
    border-bottom: 1px solid var(--secondary-color);
}

.rt-stat-item:last-child {
    border-bottom: none;
}

.rt-stat-item i {
    font-size: 28px;
    margin-bottom: 10px;
}

.rt-stat-item h3 {
    font-size: 32px;
}

/* FLYING FOOD */
.rt-flying-food {
    width: 170px;
    position: absolute;
    right: -34px;
    top: -65px;
    opacity: 0.9;
    animation: flyFood 6s infinite ease-in-out;
}

@keyframes flyFood {
    0%   { transform: translateX(0) translateY(0) rotate(0deg); }
    50%  { transform: translateX(-20px) translateY(15px) rotate(8deg); }
    100% { transform: translateX(0) translateY(0) rotate(0deg); }
}


/* =========== RESPONSIVE =========== */

/* TABLET FIX */
@media (max-width: 992px) {
    .rt-test-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        padding: 0 20px;
    }

    .rt-test-left {
        width: 100%;
        margin-left: 0;
    }

    .rt-test-right {
        width: 100%;
    }

    .rt-flying-food {
        width: 120px;
        right: -10px;
        top: -40px;
    }
}

/* MOBILE FIX */
@media (max-width: 600px) {
    .rt-test-left {
        padding: 25px;
    }

    .rt-test-right {
        padding: 20px;
    }

    .rt-dot {
        width: 50px;
        height: 50px;
    }

    .rt-flying-food {
        width: 90px;
        right: 0px;
        top: -25px;
    }

    .rt-stat-item h3 {
        font-size: 26px;
    }

    .rt-test-container {
        gap: 20px;
    }
}


/*======about page======*/


/* ======================= ABOUT US HERO STRIP (IMAGE) ======================= */
.rt-hero-about {
    width: 100%;
    height: 65vh;
    background: url("../images/about-banner.png") center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.rt-hero-about::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45); /* dark overlay for text visibility */
}

.rt-hero-content {
    position: relative;
    z-index: 2;
}

.rt-hero-content h1 {
    color: #fff;
    font-size: 55px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.rt-hero-content p {
    color: #f8f8f8;
    font-size: 18px;
    letter-spacing: 1px;
}

/* Responsive */
@media(max-width: 768px) {
    .rt-hero-about {
        height: 45vh;
    }
    .rt-hero-content h1 {
        font-size: 34px;
    }
}

/* ---------------- WHO WE ARE ---------------- */
.rt-about-banner {
    position: relative;
    padding: 120px 0;
    background: url("../images/banner-2.png") center/cover no-repeat;
    color: #fff;
    margin-top: 90px;
}

/* Dark Overlay for readability */
.rt-about-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.rt-about-content {
    position: relative;
    max-width: 550px;
    margin-left: 5%;
    z-index: 2;
}

.rt-about-content h2 {
    font-size: 40px;
    margin-bottom: 15px;
}

.rt-about-content p {
    font-size: 18px;
    line-height: 1.7;
}

.rt-check-list {
    margin-top: 20px;
    padding: 0;
    list-style: none;
}

.rt-check-list li {
    margin-bottom: 10px;
    font-size: 17px;
}

.rt-check-list i {
    color: #ff9f3f;
    margin-right: 10px;
}

/* Responsive */
@media(max-width: 768px) {
    .rt-about-content {
        max-width: 90%;
        margin: auto;
        text-align: center;
    }

    .rt-about-content h2 {
        font-size: 30px;
    }
}


/* ---------------- WHAT WE ARE ABOUT ---------------- */
.rt-what-about {
    padding: 80px 0;
    background: #fff8ef;
}

.rt-center-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 40px;
}

.rt-about-box-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.rt-about-box {
    background: var(--light);
    padding: 30px;
    text-align: center;
    border-radius: 16px;
    border: 2px solid #c18e5b;
    box-shadow: 0 5px 18px rgba(0,0,0,0.05);
    transition: 0.3s ease-in-out;
}

.rt-about-box i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.rt-about-box:hover {
    transform: translateY(-8px);
}

/* ---------------- OUR CHEFS ---------------- */
.rt-chefs {
    padding: 80px 0;
}

.rt-chef-grid {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.rt-chef-card {
    text-align: center;
    padding: 20px;
    background: var(--light);
    border-radius: 16px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.07);
    transition: 0.3s;
}

.rt-chef-card:hover {
    transform: translateY(-6px);
}

.rt-chef-card img {
    width: 100%;
    border-radius: 14px;
    margin-bottom: 10px;
}

.rt-chef-card h3 {
    font-weight: 700;
}

.rt-menu-btn-wrap {
    text-align: center;
    margin-top: 35px;
}

.rt-menu-btn {
    background: var(--primary-color);
    color: var(--light-color);
    padding: 14px 34px;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s;
}

.rt-menu-btn:hover {
    background: var(--primary-hover);
}



/* ---------------- Responsive Design ---------------- */
@media(max-width: 900px){
    .rt-about-wrap {
        flex-direction: column;
        text-align: center;
    }
    .rt-about-img,
    .rt-about-info {
        width: 100%;
    }
}

@media(max-width: 600px){
    .rt-hero-content h1 {
        font-size: 40px;
    }
}

/* ================= TIMELINE SECTION ================= */
.rt-timeline {
    width: 100%;
    padding: 100px 0;
    background: url("../images/timeline-banner-1.png") center/cover no-repeat;
    position: relative;
}

/* Dark Overlay */
.rt-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    z-index: 1;
}

.rt-timeline-line {
    width: 4px;
    background: #dca74f;
    position: absolute;
    left: 50%;
    top: 155px;
    bottom: 40px;
    transform: translateX(-50%);
    z-index: 3;
}

.rt-timeline-item {
    width: 50%;
    padding: 20px 40px;
    position: relative;
    z-index: 3;
}

.rt-timeline-item.left {
    left: 0;
    text-align: right;
}

.rt-timeline-item.right {
    left: 50%;
    text-align: left;
}

.rt-timeline-content {
    background: #ffffff;
    padding: 18px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    border-left: 4px solid #dca74f;
    position: relative;
    z-index: 5;
}

.rt-timeline-item.left .rt-timeline-content {
    border-left: none;
    border-right: 4px solid #dca74f;
}

.rt-timeline-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.rt-timeline-content p {
    font-size: 14px;
    margin-top: 5px;
    line-height: 1.5;
    color: #444;
}

.rt-year {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 6px 12px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 14px;
    position: relative;
    z-index: 6;
}

/* Connecting Dots */
.rt-timeline-item::before {
    content: "";
    width: 15px;
    height: 15px;
    background: #dca74f;
    border-radius: 50%;
    position: absolute;
    top: 25px;
    right: -7px;
    z-index: 4;
}

.rt-timeline-item.right::before {
    left: -7px;
}

/* Responsive */
@media(max-width: 768px) {
    .rt-timeline-line {
        left: 8px;
    }

    .rt-timeline-item {
        width: 100%;
        left: 0 !important;
        text-align: left;
        padding-left: 50px;
    }

    .rt-timeline-item::before {
        left: 20px !important;
    }

    .rt-timeline-content {
        width: 90%;
    }
}

/* ========= HERO MENU PAGE SECTION ===========*/
.rt-hero-menu {
    position: relative;
    width: 100%;
    height: 380px;
    background: url("../images/menu-banner.png") center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 90px;
}

/* DARK OVERLAY */
.rt-hero-menu::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55); /* Adjust darkness here */
    z-index: 1;
}

.rt-hero-menucontent {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 700px;
    padding: 0 20px;
}

.rt-hero-menucontent h1 {
    font-size: 50px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
}

.rt-hero-menucontent p {
    font-size: 20px;
    font-weight: 500;
    font-family: 'Lexend', sans-serif;
}

/* Responsive */
@media(max-width: 768px) {
    .rt-hero-menu {
        height: 300px;
    }

    .rt-hero-menucontent h1 {
        font-size: 32px;
    }

    .rt-hero-menucontent p {
        font-size: 16px;
    }
}

.menu-title {
    text-align: center;
    font-size: 42px;
    margin: 40px 0 20px;
    font-weight: 700;
    color: var(--primary-color);
}
/* 2 Column Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 35px;
}

@media(max-width: 768px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }
}

/* CATEGORY BOX BASIC STYLE */
.category-box {
    position: relative;
    padding: 25px;
    border-radius: 14px;
    color: #fff;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

/* DARK OVERLAY */
.category-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: 1;
}

.category-box > * {
    position: relative;
    z-index: 2;
}

/* TITLES */
.category-title {
    font-size: 24px;
    font-weight: 700;
    border-bottom: 2px solid #ff9900;
    margin-bottom: 18px;
    padding-bottom: 5px;
}

/* MENU ITEMS */
.menu-item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed #aaa;
    padding: 10px 0;
}

.menu-item:last-child {
    border-bottom: none;
}

.item-name {
    font-size: 17px;
    font-weight: 600;
}
.item-ingredients {
    font-size: 13px;
    opacity: 0.75;
}
.item-price {
    color: #ffb84d;
    font-size: 18px;
    font-weight: 600;
}

/* ============================
   4 DUMMY BACKGROUND IMAGES
=============================== */

.beverages-bg {
    background-image: url("https://images.unsplash.com/photo-1509042239860-f550ce710b93");
}

.starters-bg {
    background-image: url("https://images.unsplash.com/photo-1543353071-873f17a7a088");
}

.maincourse-bg {
    background-image: url("https://images.unsplash.com/photo-1600891964599-f61ba0e24092");
}

.desserts-bg {
    background-image: url("https://images.pexels.com/photos/3026809/pexels-photo-3026809.jpeg");
}

.order-strip-line {
    position: relative;
    padding: 100px 0;
    width: 100%;
    background: url("../images/order-banner.avif") center/cover no-repeat fixed;
}

/* Dark Overlay */
.order-strip-line::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 75%); /* adjust darker if needed */
    z-index: 1;
}

.order-line-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}

.order-line-btn {
    background: #ffbb00;
    padding: 10px 28px;
    border-radius: 50px;
    color: #000;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.order-line-btn:hover {
    background: #ffa200;
}

/* Responsive */
@media (max-width: 600px) {
    .order-line-container {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

.rt-book-section { 
    width: 100%;
    position: relative;
    padding: 80px 0;
    background: url("https://images.unsplash.com/photo-1528605248644-14dd04022da1") center/cover no-repeat;
}

.rt-book-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
}

/* Main Container */
.rt-book-container {
    position: relative;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    padding: 20px;
    color: #fff;
}

.rt-book-left img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* Right Box */
.rt-book-right {
    background: rgba(255,255,255,0.12);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(6px);
}

.rt-book-right h2 {
    font-size: 40px;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.rt-book-right p {
    margin-bottom: 25px;
    color: #ddd;
}

/* Form */
.rt-form-group {
    margin-bottom: 15px;
}

.rt-form-group label {
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
    color: #fff;
    font-size: 15px;
}

.rt-form-group input,
.rt-form-group select,
.rt-form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: none;
    outline: none;
    font-size: 15px;
}

textarea {
    height: 100px;
    resize: none;
}

.rt-btn-submit {
    width: 100%;
    padding: 14px 0;
    border-radius: 50px;
    background: var(--primary-color);
    color: #fff;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.rt-btn-submit:hover {
    background: var(--primary-hover);
}

/* ==========================
   RESPONSIVE DESIGN 
========================== */

/* Tablet */
@media(max-width: 900px){
    .rt-book-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .rt-book-right {
        padding: 25px;
    }
    .rt-book-right h2 {
        font-size: 32px;
    }
}

/* Mobile */
@media(max-width: 600px){
    .rt-book-section {
        padding: 60px 0;
    }

    .rt-book-container {
        padding: 15px;
        gap: 25px;
    }

    .rt-book-right {
        padding: 20px;
        border-radius: 15px;
    }

    .rt-book-left img {
        border-radius: 15px;
    }

    .rt-book-right h2 {
        font-size: 26px;
        line-height: 1.3;
    }

    .rt-book-right p {
        font-size: 14px;
    }

    .rt-form-group input,
    .rt-form-group select,
    .rt-form-group textarea {
        font-size: 14px;
        padding: 10px 12px;
    }

    .rt-btn-submit {
        font-size: 16px;
        padding: 12px 0;
    }
}

