@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

.unique-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80vh;
  padding: 0 8%;
  background: linear-gradient(120deg, #fff7f2 40%, #ffe0d4 100%);
  /* font-family: 'Poppins', sans-serif; */
  overflow: hidden;
}

/* Text Section */
.banner-left {
  flex: 1;
  z-index: 2;
    margin-top: -50px;;

}

.tagline {
  font-size: 1rem;
  color: #ff4b2b;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

.banner-left h1 {
  font-size: 3.2rem;
  font-weight: 700;
  color: #2c2c2c;
  margin-top: 15px;
}

.banner-left h1 span {
  color: #ff4b2b;
}

.banner-left p {
  color: #444;
  font-size: 1.1rem;
  margin-top: 20px;
  line-height: 1.7;
  max-width: 520px;
      font-family: 'Nunito', sans-serif;
}

.banner-buttons {
  margin-top: 35px;
}

.banner-buttons a {
  text-decoration: none;
  padding: 14px 34px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-main {
  background: linear-gradient(45deg, #ff4b2b, #ff416c);
  color: #fff;
  margin-right: 15px;
}

.btn-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 75, 43, 0.4);
  color:white;
}

.btn-secondary {
  border: 2px solid #ff4b2b;
  color: #ff4b2b;
  background: transparent;
}

.btn-secondary:hover {
  background: #ff4b2b;
  color: #fff;
}

/* Image Section */
.banner-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  position: relative;
}

.food-circle {
  position: relative;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 60px rgba(255, 75, 43, 0.2);
  overflow: hidden;
  animation: float 3s ease-in-out infinite;
}

.food-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Floating Background Circles */
.floating-shapes::before,
.floating-shapes::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
}

.floating-shapes::before {
  width: 180px;
  height: 180px;
  background: #ffb5a7;
  top: 10%;
  left: -60px;
  animation: move1 8s ease-in-out infinite;
}

.floating-shapes::after {
  width: 220px;
  height: 220px;
  background: #ffe5d9;
  bottom: 10%;
  right: -80px;
  animation: move2 10s ease-in-out infinite;
}

/* Animation */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

@keyframes move1 {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-20px) translateX(10px); }
}

@keyframes move2 {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(25px) translateX(-10px); }
}

/* Responsive */
@media (max-width: 992px) {
  .unique-banner {
    flex-direction: column;
    text-align: center;
    padding: 60px 5%;
    height: auto;
  }
  .banner-right {
    margin-top: 40px;
  }
  .banner-left h1 {
    font-size: 2.5rem;
  }
  .food-circle {
    width: 320px;
    height: 320px;
  }
}




/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: #c22a2e;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

    /* Dining Section */
    .dining-section {
      display:flex;
      justify-content:center;
      background-image: url(../img/bg.png);
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
    font-family: Poppins, sans-serif;
    color: rgb(255, 255, 255);
    background-position: center center;
    padding: 100px 20px 100px;
    }

    .dining-inner{
      width:100%;
      max-width:var(--container-width);
      display:grid;
      grid-template-columns: minmax(120px, var(--max-image-width)) 1fr minmax(120px, var(--max-image-width));
      gap:32px;
      align-items:center;
      margin:0 auto;
    }

    /* Images */
    .dining-image{
      width:100%;
      aspect-ratio: 3/4;
      object-fit:cover;
      border-radius:4px;
      box-shadow: 0 6px 18px rgba(0,0,0,0.08);
      display:block;
      margin:auto;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .dining-image:hover {
      transform: scale(1.05);
      box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

    /* Center Content */
    .dining-center{
      text-align:center;
      padding: 0 18px;
    }

    .dining-welcome{
      color:#c22a2e;
      letter-spacing:4px;
      font-size:13px;
      margin-bottom:12px;
      text-transform:uppercase;
    }

    .dining-title{
      /* font-family: Georgia, serif; */
      font-size:35px;
      line-height:1.05;
      margin:6px 0 18px;
      font-weight:500;
    }

    .dining-text{
      color:var(--muted);
      max-width:640px;
      margin:0 auto 28px;
      line-height:1.7;
font-family: 'Nunito', sans-serif;      font-size:16px;
    }

    .dining-btn{
      display:inline-block;
      background:#c22a2e;
      color:#fff;
      padding:12px 26px;
      border-radius:4px;
      text-decoration:none;
      font-weight:700;
      letter-spacing:0.6px;
      transition: background 0.3s ease, transform 0.2s ease;
      font-family: 'Nunito', sans-serif;
    }

    .dining-btn:hover {
          background:#c22a2e;
      color:#fff;
      transform: translateY(-3px);
    }

    /* Responsive Design */
    @media (max-width:900px){
      .dining-inner{
        grid-template-columns: 1fr;
        gap:18px;
      }
      .dining-image{ max-width:420px; width:60%; margin:0 auto; }
      .dining-title{ font-size:34px; }
    }

       :root{
      --accent:#a7c8cc;
      --text:#2b2b2b;
      --muted:#6b6b6b;
      --container-width:1100px;
      --max-image-width:240px;
       
    --primary: #FEA116;
    --light: #F1F8FF;
    --dark: #0F172B;
}
  

    *{box-sizing:border-box}
    body{
      /* font-family: "Georgia", "Times New Roman", serif; */
      color:var(--text);
      margin:0;
      background:#ffffff;
      -webkit-font-smoothing:antialiased;
      -moz-osx-font-smoothing:grayscale;
    }

 
    :root{
      --bg:#fdeed8;
      --text:#0f2b1f;
      --muted:#6b6b6b;
      --accent:#0b4f3a;
      --maxw:1100px;
    }

        .we {
  background-image: url(../img/bg-pattern.png); /* 👈 your background image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* gives a nice parallax effect */
  position: relative;
  z-index: 1;
   /* background:rgb(255 255 255 / 92%); */
  /* margin-top: -50px;; */
  
}

/* Optional: Add a soft overlay for better readability */
.we::before {
  content: "";
  position: absolute;
  inset: 0;
  background:rgb(255 255 255 / 92%);  
  z-index: -1;
}
    
        .container {
            max-width: 1200px;
            margin: 0 auto;
            
        }
        
        .section-header {
            text-align: center;
            /* margin-bottom: 60px; */
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            color: #c22a2e;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 15px;
        }
        
        .section-title {
            /* font-family: 'Playfair Display', serif; */
            /* font-size: 2.8rem; */
            font-weight: 700;
            color: #ffffff;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
                background: linear-gradient(90deg, #c22a2e, #c22a2e);
        }
        
        .dishes-grid {
            display: grid;
 grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .dish-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
        }
        
        .dish-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .dish-image {
            height: 220px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .dish-badge {
            position: absolute;
            top: 15px;
            right: 15px;
                background: #c22a2e;
    color: #ffffff;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            box-shadow: 0 4px 10px rgba(230, 167, 86, 0.3);
        }
        
        .dish-content {
            padding: 25px;
        }
        
        .dish-title {
            /* font-family: 'Playfair Display', serif; */
            font-size: 20px;
        text-align: center;
    font-weight: 700;
    margin-bottom: 15px;
    color: #c22a2e;
        }
        
        .dish-description {
            color: #000000;
            margin-bottom: 20px;
            line-height: 1.6;
            font-family: 'Nunito', sans-serif;
    text-align: justify;
        }
        
        .dish-rating {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .stars {
            color: #ffc107;
            margin-right: 10px;
        }
        
        .rating-text {
            color: #6c757d;
            font-size: 0.9rem;
        }
        
        .dish-pricing {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .price-container {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .current-price {
            font-size: 1.4rem;
            font-weight: 700;
            color: #e6a756;
        }
        
        .original-price {
            font-size: 1rem;
            color: #6c757d;
            text-decoration: line-through;
        }
        
        .order-btn {
            background: #e6a756;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .order-btn:hover {
            background: #d89540;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(230, 167, 86, 0.3);
        }
        
        /* Decorative elements */
        .floating-element {
            position: absolute;
            border-radius: 50%;
            background: rgba(230, 167, 86, 0.1);
            z-index: -1;
        }
        
        .floating-1 {
            width: 150px;
            height: 150px;
            top: 10%;
            left: 5%;
        }
        
        .floating-2 {
            width: 100px;
            height: 100px;
            bottom: 15%;
            right: 5%;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .section-title {
                font-size: 2.2rem;
            }
            
            .dishes-grid {
                grid-template-columns: 1fr;
            }
            
            .dish-pricing {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            .order-btn {
                width: 100%;
                justify-content: center;
            }
        }
        
        @media (max-width: 576px) {
            body {
                padding: 20px 15px;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .dish-content {
                padding: 20px;
            }
        }


        .ser1{
          background-image: url(../img/bg.png);
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
    font-family: Poppins, sans-serif;
    color: rgb(255, 255, 255);
    background-position: center center;
    padding: 20px 20px 50px;
        }


          .ser1::before{      
              content: "";
    position: absolute;
    backdrop-filter: blur(2px);
    inset: 0px;
    background: rgba(0, 0, 0, 0.88);
        }

.dish-btn {
    display: inline-block;
    padding: 10px 25px;
    background-color: #c0392b;
    color: #fff;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.dish-btn:hover {
    background-color: #e74c3c;
    color: white;
    transform: scale(1.05);
}




    header {
            text-align: center;
            margin-bottom: 50px;
            padding-top: 50px;
        }

       

        .tagline {
              font-size: 15px;
    color: #c22a2e;
    /* font-style: italic; */
    margin-top: 25px;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
        }

        .content-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .feature-card {
            background: white;
            border-radius: 15px;
            padding: 30px 25px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
            border-top: 5px solid #e74c3c;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.12);
        }

        .feature-icon {
            font-size: 3rem;
            color: #c22a2e;
            margin-bottom: 20px;
        }

        .feature-title {
            font-size: 20px;
            color: #c22a2e;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .feature-description {
            color: #555;
            font-size: 1.05rem;
        }

        .testimonial-section {
            background: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.08);
            margin-top: 30px;
            text-align: center;
            border-left: 5px solid #e67e22;
            border-right: 5px solid #e67e22;
        }

        .testimonial-title {
            font-size: 1.8rem;
            color: #2c3e50;
            margin-bottom: 25px;
        }

        .testimonial-text {
            font-size: 1.2rem;
            color: #555;
            font-style: italic;
            line-height: 1.8;
            max-width: 800px;
            margin: 0 auto 25px;
        }

        .testimonial-author {
            font-weight: 600;
            color: #e74c3c;
            font-size: 1.1rem;
        }

        .cta-section {
            text-align: center;
            margin: 50px 0;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(to right, #e74c3c, #e67e22);
            color: white;
            padding: 15px 40px;
            font-size: 1.2rem;
            font-weight: 600;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
            text-decoration: none;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(231, 76, 60, 0.6);
        }

        footer {
            text-align: center;
            margin-top: 50px;
            padding: 20px;
            color: #7f8c8d;
            font-size: 0.9rem;
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            
            .tagline {
                font-size: 1.5rem;
            }
            
            .content-section {
                grid-template-columns: 1fr;
            }
            
            .testimonial-section {
                padding: 25px;
            }
        }


            .gallery-img {
      width: 100%;
      border-radius: 10px;
      cursor: pointer;
    }


    .bg-lights{
      background-color: #c12a2e;
    }

    
/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #c22a2e !important;
    border-color:#c22a2e !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: var(--light) !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: #c22a2e;
    border-color: #c22a2e;
    color:white
}

.restaurant-about {
  position: relative;
  background: url('https://images.unsplash.com/photo-1600891964599-f61ba0e24092?auto=format&fit=crop&w=1600&q=80')
    center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
}

.restaurant-about .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
     background: rgb(255 255 255 / 91%);
  backdrop-filter: blur(2px);
  z-index: 1;
}

.restaurant-about .content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  color: #333;
}

.restaurant-about h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #c22a2e;
}

.restaurant-about p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.view-menu-btn {
  display: inline-block;
  background-color: #c22a2e;
  color: #fff;
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s ease;
}

.view-menu-btn:hover {
  background-color: #a81f22;
  color:white
}


    .wrap{
      max-width:var(--maxw);
      margin:0 auto;
      background:var(--bg);
      padding:36px;
      border-radius:8px;
      box-shadow:0 8px 30px rgba(10,10,10,0.08);
      display:flex;
      gap:28px;
      align-items:center;
      flex-wrap:wrap;
    }
    .left{
      flex:1 1 420px;
      min-width:300px;
    }
    .eyebrow{
      font-weight:700;
      color:var(--accent);
      margin-bottom:10px;
      font-size:18px;
    }
    h2{
      margin:0 0 14px 0;
      font-size:22px;
      line-height:1.05;
    }
    p.leads{
      margin:0 0 18px 0;
      color:var(--muted);
      text-align: justify;
    }
    .features{
      margin:0 0 22px 0;
      color:var(--muted);
        text-align: justify;
    }
    .cta{
      display:inline-block;
      padding:12px 20px;
      background:#802226;
      color:#fff;
      border-radius:8px;
      text-decoration:none;
      font-weight:600;
      box-shadow:0 6px 18px rgba(11,79,58,0.18);
    }

    .cta:hover{
 color:#fff;
    }

    .right{
      flex:0 0 420px;
      min-width:300px;
      display:flex;
      justify-content:center;
      align-items:center;
    }
    .video-wrap{
      width:100%;
      aspect-ratio:16/9;
      overflow:hidden;
      border-radius:10px;
      box-shadow:0 12px 30px rgba(11,79,58,0.12);
      border:6px solid rgba(255,255,255,0.6);
      background:#000;
    }
    iframe{
      width:100%;
      height:100%;
      border:0;
      display:block;
    }

    @media (max-width:880px){
      .wrap{ padding:20px; gap:18px; }
      .right, .left { flex-basis:100%; }
    }

    .btnxx{
          display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #666565;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    background-color:#7f2325;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    }