
.delivery {

  display: flex;

  gap: 15px;

  justify-content: flex-end;

  margin: 0 20px;

}



.order-btn {

  display: flex;

  align-items: center;

  gap: 10px;

  padding: 8px 20px;

  border-radius: 25px;

  font-size: 16px;

  font-weight: bold;

  text-decoration: none;

  border: 1px solid transparent;

  background-color: #fff;

  transition: all 0.3s ease;

}



.order-btn img {

  height: 20px;

  width: auto;

}



.order-btn:hover {

  background-color: #000;

  color: #fff !important;

  transform: scale(1.05);

}



/* Swiggy button */

.swiggy-btn {

  color: #fc8019;

  border: 1px solid #fc8019;

  flex: 1 1 120px;

  text-align: center;

  padding: 8px 10px;

  border-radius: 25px;

  font-weight: bold;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 8px;

  transition: all 0.3s ease;

}



/* Zomato button */

.zomato-btn {

  color: #e23744;

  border: 1px solid #e23744;

  flex: 1 1 120px;

  text-align: center;

  padding: 8px 10px;

  border-radius: 25px;

  font-weight: bold;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 8px;

  transition: all 0.3s ease;

}



/* Hover effect */

.swiggy-btn:hover, .zomato-btn:hover {

  background-color: #000;

  color: #fff !important;

  transform: scale(1.05);

}



/* Mobile responsiveness */

@media (max-width: 768px) {

  .delivery {

    display: flex;

    flex-wrap: wrap;

    justify-content: center; 

    gap: 10px;

    margin: 10px 0;

  }

  .swiggy-btn, .zomato-btn {

    flex: 1 1 45%;

    font-size: 14px;

    padding: 8px 5px;

  }

  .swiggy-btn img, .zomato-btn img {

    height: 18px;

  }

}



/* Dropdown menu */

.navmenu .dropdown ul {

  display: none;

  position: absolute;

  background: #fff;

  padding: 10px 0;

  margin: 0;

  list-style: none;

  min-width: 180px;

  z-index: 10;

}



.navmenu .dropdown:hover > ul {

  display: block;

}



.navmenu .dropdown ul li a {

  padding: 10px 20px;

  display: block;

  color: #333;

}



.navmenu .dropdown ul li a:hover {

  background: #f5f5f5;

}

.navmenu .dropdown ul {

  display: none;

  position: absolute;

  background: white; 

  padding: 10px 0;

  margin: 0;

  list-style: none;

  min-width: 220px;

  z-index: 10;

}



.navmenu .dropdown ul li a {

  padding: 10px 20px;

  display: white;

  color: #7B0909; /* white text */

}



.navmenu .dropdown ul li a:hover {

  background:white; /* darker red on hover */

  color: #fff;

}





 .banner {
    background: #7B0909;
    text-align: center;
    padding: 150px 20px;
        padding: 175px 20px;
            padding-bottom: 42px;


    color: #fff;
    width: 100%;
  }
  .banner h1 {
    font-size: 56px;
    margin: 0;
    font-weight: bold;
  }

  .welcome {
    background: #fafafa;
    text-align: center;
    padding: 80px 20px;
  }
  .welcome h2 {
    font-size: 34px;
    font-weight: bold;
    margin-bottom: 20px;
    color:#7B0909;
  }
  .welcome p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: #333;
  }

  .image-box {
    height: 100%;
    min-height: 300px;
  }
  .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .content-section {
    background-color: #7B0909;
    color: #fff;
    padding: 40px 20px;
  }
  .content-section h1 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
  }
  .content-section p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 0;
  }

  .uagb-block-01firnda {
    background: url("<?php echo URL_BASE_THEME ?>assets/img/about6.jpg") no-repeat center center/cover;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    padding: 40px;
  }
  .uagb-block-01firnda::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1;
  }
  .uagb-block-01firnda .uagb-container-inner-blocks-wrap {
    position: relative;
    max-width: 800px;
    z-index: 2;
  }

  .uagb-ifb-title-prefix {
    font-size: 18px;
    color: #7B0909;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  .uagb-ifb-title {
    font-size: 42px;
    font-weight: 700;
    margin: 10px 0;
  }
  .uagb-ifb-desc {
    font-size: 18px;
    margin: 15px auto 25px;
    line-height: 1.6;
  }

  .uagb-button__link {
    background: #7B0909;
    color: #fff !important;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 50px;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
    display: inline-block;
  }
  .uagb-button__link:hover {
    background: #e6b800;
    transform: translateY(-2px);
  }

  @media(max-width: 768px) {
    .banner h1 { font-size: 36px; }
    .welcome h2 { font-size: 26px; }
    .uagb-ifb-title { font-size: 32px; }
  }

  .custom-btn {
    background-color: #fff;
    color: #7B0909;
    border: 2px solid #000;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
  }

  .custom-btn:hover {
    background-color: #000;
    color: #fff;
  }
  /* Contact Form Card */
    .contactFormCard {
      background: #7B0909 ;
      padding: 25px;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,.08);
    }

    .contactFormCard h3 {
      margin-bottom: 20px;
      font-weight: 600;
      color: white;
    }

    .contactFormCard .frmInput,
    .contactFormCard .frmTxtArea {
      width: 100%;
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: 12px;
      margin-bottom: 15px;
      font-size: 15px;
      transition: border 0.3s ease, box-shadow 0.3s ease;
    }

    .contactFormCard .frmInput:focus,
    .contactFormCard .frmTxtArea:focus {
      border-color: #198754;
      box-shadow: 0 0 6px rgba(25,135,84,0.3);
      outline: none;
    }

    .contactFormCard .btn-success {
      background: brown;
      border-radius: 8px;
      padding: 12px 20px;
      border: none;
      font-size: 15px;
      font-weight: 600;
      transition: background 0.3s ease;
    }

    .contactFormCard .btn-success:hover {
      background: #7B0909;
    }

   
    

    /* Content Wrapper Background */
    .contentWrapper {
      background: #fff; /* ðŸ”¹ full white background */
      padding: 50px 0;
    }
    .blog-section {
  padding: 60px 0;
  background: #f9f7f4;
  text-align: center;
}
.blog-title {
  font-size: 32px;
  margin-bottom: 30px;
  font-family: 'Georgia', serif;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}
.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: left;
}
.blog-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.blog-content {
  padding: 20px;
}
.blog-category {
  display: inline-block;
  background: #7B0909;
  color: #fff;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.blog-content h3 {
  font-size: 20px;
  margin: 10px 0;
}
.blog-content p {
  font-size: 14px;
  color: #444;
}
.read-more {
  display: inline-block;
  margin-top: 10px;
  font-weight: bold;
  color: #7B0909;
  text-decoration: none;
}
.blog-date {
  margin-top: 12px;
  font-size: 12px;
  color: #777;
}
/* Welcome */
    .welcome {
      background: #fafafa;
      text-align: center;
      padding: 80px 20px;
    }
    .welcome h2 {
      font-size: 34px;
      font-weight: bold;
      margin-bottom: 20px;
      color:#7B0909;
    }
    .welcome p {
      font-size: 18px;
      max-width: 800px;
      margin: 0 auto;
      line-height: 1.8;
      color: #333;
    }

    /* Philosophy Section (Image + Card) */
/* Philosophy Section (Image + Card) */
.philosophy {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px; /* smaller padding */
  position: relative;
  flex-wrap: wrap;
  max-width: 1100px; /* limit section width */
  margin: 0 auto; /* center */
}

.philosophy-img {
  flex: 1;
  min-width: 280px;
  max-width: 400px; /* restrict image size */
  position: relative;
  z-index: 0;
}

.philosophy-img img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}


.philosophy-card {
  flex: 1;
  max-width: 500px; /* restrict text box width */
  background: #fff;
  padding: 30px; /* smaller padding */
  margin-left: -60px; /* lighter overlap */
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  position: relative;
  z-index: 1;
}

.philosophy-card h3 {
  font-size: 22px; /* reduced */
  font-weight: bold;
  margin-bottom: 12px;
  color: #7B0909;
}

.philosophy-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

/* Responsive */
@media (max-width: 900px) {
  .philosophy {
    flex-direction: column;
    max-width: 95%;
  }
  .philosophy-card {
    margin-left: 0;
    margin-top: -30px;
    max-width: 100%;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .philosophy {
    flex-direction: column;
  }
  .philosophy-card {
    margin-left: 0;
    margin-top: -40px; /* overlap upwards */
  }
}


    /* =========================
   WHO WE SERVE + WHY CHOOSE
========================= */
.red-section {
  background: #fff; /* white background */
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr; /* two columns */
  gap: 40px;
  align-items: start;
}

.red-section h3 {
  font-size: 24px;
  font-weight: 700;
  color: #7B0909; /* Dark Maroon Heading */
  margin-bottom: 15px;
}


.red-section p {
  font-size: 16px;
  line-height: 1.8;
  color: #000; /* black text */
}

/* Card-style effect */
.red-section > div {
  background: #fafafa;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.red-section > div:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Responsive mobile view */
@media (max-width: 768px) {
  .red-section {
    grid-template-columns: 1fr; /* stack */
    gap: 20px;
  }
}
.afc-wrapper {
    display:flex;
    justify-content:center;
    gap:40px;
    flex-wrap:wrap;
}

/* ================= FLORAL INVITATION CARD ================= */

.floral-card {
    width: 300px;
    padding: 40px 30px;
    text-align: center;
    border-radius: 22px;
    border: 3px solid #d4a857; /* Gold border */
    background: #fff8ef;
    background-image: url('<?php echo $theme_uri; ?>/assets/floral-bg.png');
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: .3s;
}

.floral-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}

.floral-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: #8a5b2f;
}

.floral-card .subtitle {
    font-size: 15px;
    color: #555;
    margin-top: 5px;
    margin-bottom: 18px;
}

.invite-btn {
    display: inline-block;
    padding: 10px 22px;
    background: #d4a857;
    color: #fff;
    border-radius: 30px;
    font-size: 15px;
    transition: .3s;
}

.invite-btn:hover {
    background: #b38832;
}

/* ================= POPUP ================= */

.food-popup {
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.5);
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.popup-content {
    width:90%;
    max-width:500px;
    background:#fff;
    padding:25px;
    border-radius:12px;
    max-height:80vh;
    overflow:auto;
    animation:fadeIn .3s;
}

@keyframes fadeIn {
    from{opacity:0; transform:scale(0.9);}
    to{opacity:1; transform:scale(1);}
}

.close-btn {
    float:right;
    font-size:28px;
    cursor:pointer;
    color:#b91d26;
}

.popup-list li {
    font-size:16px;
    margin-bottom:6px;
    color:#333;}
    .menu-section {
    padding: 50px 0;
    background: #fafafa;
    color: #000000;
  }
  .menu-box {
    background: #fff;
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid #333;
    border-radius: 4px;
    color: #000000;
  }
  .menu-box h4 {
    font-family: 'Georgia', serif;
    font-size: 22px;
    margin-bottom: 20px;
    color: #7B0909;
  }
  .menu-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #000000;
  }
  .menu-box ul li {
    font-size: 18px;
    padding: 6px 0;
    border-bottom: 1px dotted #000;
    margin-bottom: 6px;
    color: #000000;
  }
  .menu-box ul li:last-child { border-bottom: none; }
  .banner {
    background: #7B0909; /* Dark red banner background */
    text-align: center;
    padding: 150px 20px;
    color: #fff;
    width: 100%;
  }