/* Header */

header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 248, 240, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  /* border-bottom: 1px solid rgba(139, 111, 71, 0.1); */
  animation: slideDown 0.6s ease-out;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.menu-items-inner {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.menu_price {
  color: #8b6f47;
  font-size: 15px;
  font-weight: 500;
  width: 60px;
  display: flex;
  justify-content: end;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

/* .logo {
  font-family: "Fraunces", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--deep-brown);
  font-style: italic;
  background-color: aqua;
  padding: 10px;
  letter-spacing: -0.5px;
} */

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  
  /*color: var(--warm-brown);*/
  color: #4a3b2f;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a::after,
.nav-links a.linkActive::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--terracotta);
  transition: width 0.3s ease;
}

.nav-links a.linkActive,
.nav-links a.linkActive::after {
  color: var(--terracotta);
}

.nav-links a:hover::after,
.nav-links a.linkActive::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--terracotta);
}

/* Hero Section */
.hero {
  margin-top: 90px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  padding: 30px 30px 10px 10px;
  align-items: center;
}

.hero-text h1 {
  font-family: "Fraunces", serif;
  font-size: 5.5rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--deep-brown);
  margin-bottom: 1.5rem;
  font-style: italic;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-text h1 span {
  display: block;
  color: var(--terracotta);
}

.hero-text p {
  font-size: 1.25rem;
  color: var(--warm-brown);
  margin-bottom: 2.5rem;
  max-width: 500px;
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

/* animation fadeInUp */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.btn {
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: var(--terracotta);
  color: white;
  box-shadow: 0 4px 20px rgba(212, 133, 90, 0.3);
}

.btn-primary:hover {
  background: var(--deep-brown);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(212, 133, 90, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--warm-brown);
  border: 2px solid var(--warm-brown);
}

.btn-secondary:hover {
  background: var(--warm-brown);
  color: white;
  transform: translateY(-2px);
}

.hero-image {
  padding: 20px;
  position: relative;
  animation: fadeIn 1s ease-out 0.4s backwards;
}

/* animation fadeIn */

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.image-frame {
  width: 90%;
  height: 550px;
  background: linear-gradient(135deg, var(--butter) 0%, var(--sage) 100%);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(139, 111, 71, 0.2);
  /* position: relative; */
  overflow: hidden;
}
.image-frame img {
  width: 100%;
  height: 100%;
}

/*.image-frame::before {*/
/*  content: "🥐";*/
/*  font-size: 8rem;*/
/*  opacity: 0.3;*/
/*  position: absolute;*/
/*  top: 50%;*/
/*  left: 50%;*/
/*  transform: translate(-50%, -50%);*/
/*}*/

.image-placeholder {
  text-align: center;
  z-index: 1;
}

.image-placeholder h3 {
  font-family: "Fraunces", serif;
  font-size: 2rem;
  color: var(--deep-brown);
  margin-bottom: 0.5rem;
}

.image-placeholder p {
  color: var(--warm-brown);
  font-size: 1.1rem;
}

/* Features Section */
.features {
  background: white;
  position: relative;
  /* margin-top: 30px; */
  /* padding-bottom: 50px; */
  /* background-color: black; */
}

.features-container {
  background-color: #fff;
}

.section-title {
  font-family: "Fraunces", serif;
  font-size: 3.5rem;
  text-align: center;
  color: var(--deep-brown);
  
  color: var(--signature-heading-color);
  margin-bottom: 4rem;
  font-style: italic;
  font-weight: 600;
  margin-top: 10px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  background: var(--cream);
  padding: 4rem 2rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--terracotta);
  box-shadow: 0 15px 40px rgba(212, 133, 90, 0.15);
}

.feature-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  display: block;
}

.feature-card h3 {
  font-family: "Fraunces", serif;
  font-size: 1.75rem;
  color: var(--deep-brown);
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--warm-brown);
  line-height: 1.7;
}

/* Menu Section */
.menu {
  /* padding: 6rem 5%; */
  background: linear-gradient(180deg, var(--cream) 0%, white 100%);
}
#menu {
  padding-bottom: 30px;
  margin-top: 10px;
}

.menu-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
  margin-top: 1rem;
}

.menu-category {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  background: rgb(255, 255, 255);
  padding: 1.4rem 1rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  /* max-height: 935px; */
  overflow-y: auto;
  margin-top: 20px;
}
.Beverages-menu {
  max-height: 600px;
}

.menu-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(139, 111, 71, 0.12);
}

.category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  
  border-bottom: 1px solid var(--signature-heading-color);
  /*border-bottom: 2px solid var(--butter);*/
}

.category-icon {
  font-size: 2.7rem;
}

.category-header h3 {
  font-family: "Fraunces", serif;
  font-size: 2rem;
  /*color: var(--deep-brown);*/
  color: var(--signature-heading-color);
  font-style: italic;
}

.menu-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  /* background-color: #d4855a; */
  max-height: 900px;
  overflow-y: auto;
  padding: 10px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.item-name {
  font-weight: 600;
  color: var(--deep-brown);
  font-size: 1rem;
}

.item-description {
  color: var(--warm-brown);
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

/* Gallery Section */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.gallery-item {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--butter), var(--sage));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.gallery-item img {
  border-radius: 15px;
  width: 100%;
  height: 100%;
  object-fit: center;
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(139, 111, 71, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover::before {
  opacity: 1;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(139, 111, 71, 0.2);
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item:nth-child(5) {
  grid-column: span 2;
}

/* About Section */
.about {
  /* margin-top: 50px; */
  /* padding: 2rem 5px; */
  color: var(--cream);
  background: var(--deep-brown);
}

.about-container h2 {
  font-family: "Fraunces", serif;
  font-size: 3.5rem;
  margin-bottom: 2rem;
  color: var(--butter);
  /*color: var(--signature-heading-color);*/
  font-style: italic;
  text-align: center;
  font-weight: 600;
}

.about-container p {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 1000px;
  margin-bottom: 20px;
  margin: 0px auto 20px;
  color: rgba(255, 248, 240, 0.9);
  /* background-color: red; */
}

/* Contact Section */
.contact {
  /* padding: 1.5rem 5px; */
  /* margin-top: 15px; */
  background: var(--cream);
}

.contact-container {
  /* max-width: 1400px; */
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h2 {
  font-family: "Fraunces", serif;
  font-size: 3rem;
  /*color: var(--deep-brown);*/
  color: var(--signature-heading-color);
  margin-bottom: 2rem;
  font-style: italic;
  font-weight: 600;
}

.info-item {
  margin-bottom: 2rem;
}

.info-item h3 {
  font-family: "Fraunces", serif;
  color: var(--terracotta);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.info-item p {
  color: var(--warm-brown);
  font-size: 1.1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--terracotta);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.3rem;
  transition: all 0.3s ease;
}
.social-links a i {
  margin-top: 1px;
  margin-left: 1px;
}

.social-links a:hover {
  background: var(--deep-brown);
  transform: translateY(-5px);
}

.contact-form {
  background: white;
  /* background-color: violet; */
  padding: 30px 2rem;
  border-radius: 25px;
  box-shadow: 0 10px 40px rgba(139, 111, 71, 0.1);
}

.form-group {
  margin-bottom: 10px;
  width: 100%;
}

.form-group label {
  display: block;
  margin-bottom: 0.2rem;
  /*color: var(--deep-brown);*/
    color: var(--signature-heading-color);
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--butter);
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.form-group textarea {
  padding: 10px;
}

.form-group input {
  padding: 5px;
  padding-left: 6px;
  border-radius: 3px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--terracotta);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.Visit-Us {
  /* background-color: red; */
  margin-top: 4rem;
}

/* Footer */
footer {
  background: var(--deep-brown);
  color: var(--cream);
  padding: 1rem 5%;
  text-align: center;
}

footer p {
  font-size: 1rem;
  opacity: 0.8;
}

/* Scroll Animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Catering Section */
.catering {
  padding: 10px;
  background: linear-gradient(135deg, var(--butter) 0%, var(--cream) 100%);
}

.catering-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.catering-intro p {
  font-size: 1.2rem;
  color: var(--warm-brown);
  line-height: 1.8;
}

.catering-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.service-card {
  background: white;
  padding: 3rem 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(139, 111, 71, 0.1);
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--sage);
  box-shadow: 0 15px 50px rgba(139, 111, 71, 0.15);
}

.service-card h3 {
  font-family: "Fraunces", serif;
  font-size: 1.8rem;
  color: var(--deep-brown);
  margin: 1.5rem 0 1rem;
}

.service-card p {
  color: var(--warm-brown);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-card ul {
  list-style: none;
  text-align: left;
  margin-top: 1rem;
}

.service-card ul li {
  color: var(--warm-brown);
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.service-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: bold;
}

.catering-packages {
  margin-top: 3rem;
  background: white;
  padding: 3rem;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(139, 111, 71, 0.1);
}

.packages-title {
  font-family: "Fraunces", serif;
  font-size: 2.5rem;
  text-align: center;
  color: var(--deep-brown);
  margin-bottom: 3rem;
  font-style: italic;
  font-weight: 700;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.package-card {
  background: var(--cream);
  padding: 2.5rem;
  border-radius: 20px;
  border: 3px solid transparent;
  transition: all 0.3s ease;
}

.package-card:hover {
  border-color: var(--terracotta);
}

.package-card.featured {
  background: var(--terracotta);
  color: white;
  border-color: var(--deep-brown);
}

.package-card.featured h4,
.package-card.featured .package-price {
  color: white;
}

.package-card.featured ul li {
  color: rgba(255, 255, 255, 0.95);
}

.package-card h4 {
  font-family: "Fraunces", serif;
  font-size: 1.8rem;
  color: var(--deep-brown);
  margin-bottom: 1rem;
}

.package-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--terracotta);
  margin-bottom: 1.5rem;
}

.package-price span {
  font-size: 1rem;
  font-weight: 400;
}

/* Event Space Section */
.event-space {
  padding: 1rem;
  background: white;
}

.event-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.event-content h2 {
  font-family: "Fraunces", serif;
  font-size: 3.5rem;
  /*color: var(--deep-brown);*/
  
  color: var(--signature-heading-color);
  margin-bottom: 1rem;
  font-style: italic;
  font-weight: 600;
}

.event-content p {
  font-size: 1.2rem;
  color: var(--warm-brown);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.event-image-placeholder {
  width: 100%;
  height: 400px;
  /* background: linear-gradient(135deg, var(--sage) 0%, var(--butter) 100%); */
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  box-shadow: 0 15px 50px rgba(139, 111, 71, 0.15);
}
.event-image-placeholder img {
  width: 100%;
  height: 100%;
  border-radius: 25px;
}

.event-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
}

.event-feature {
  text-align: center;
  padding: 2rem;
  background: var(--cream);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.event-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(139, 111, 71, 0.1);
}

.event-feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.event-feature h4 {
  font-family: "Fraunces", serif;
  color: var(--deep-brown);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.event-feature p {
  color: var(--warm-brown);
  font-size: 0.95rem;
}

.event-types {
  background: var(--deep-brown);
  padding: 4rem;
  border-radius: 30px;
  color: var(--cream);
}

.event-types h3 {
  font-family: "Fraunces", serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--butter);
  font-style: italic;
  font-weight: 600;
}

.event-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.event-type {
  text-align: center;
  padding: 2rem;
}

.event-type-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.event-type h4 {
  font-family: "Fraunces", serif;
  font-size: 1.5rem;
  color: var(--butter);
  margin-bottom: 0.5rem;
}

.event-type p {
  color: rgba(255, 248, 240, 0.8);
  font-size: 0.95rem;
}

/* new Work Css */

.Logo {
  width: 90px;
  /* background-color: rgb(50, 153, 64); */
  /* padding: 10px; */
  cursor: pointer;
  /* height: 100px; */
}

.Logo img {
  width: 100%;
  height: auto;
}
.SetMarginPage {
  /* background-color: rebeccapurple; */
  /* padding: 10px; */
  margin-top: 90px;
}

.ReadMoreBtn {
  /* width: 100%; */
  margin-top: 55px;
  display: flex;
  justify-content: center;
  /* margin-bottom: 20px; */
}

.ReadMoreBtn button {
  padding: 10px 1rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.menusideBar {
  color: #8b6f47;
  font-size: 20px;
  cursor: pointer;
  display: none;
}

.SideBar {
  position: fixed;
  top: 0;
  /* left: 0px; */
  left: -310px;
  width: 310px;
  height: 100vh;
  background: #fff;
  color: #d4855a;
  padding: 20px;
  transition: 0.3s ease;
  z-index: 2000;
}

.SideBar ul {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.SideBar.active {
  left: 0;
}

.SideBar ul li {
  margin-bottom: 1px;
  /* margin-left: 10px; */
  /* background-color: red; */
  padding: 10px;
}

.sideBarActive {
  background-color: #dfdfdf;
  color: black;
}

.SideBar ul li a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  /* background-color: #8b6f47; */
}

.closeBtn {
  font-size: 16px;
  cursor: pointer;
  color: #000;
}

.menubarh1 {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  /* background-color: red; */
}

.menubarh1 h1 {
  color: #000;
  font-size: 20px;
  text-transform: capitalize;
  font-weight: 500;
}

.FreshlyBread {
  padding: 4rem 5%;
}

.formset-Group {
  /* background-color: #8b6f47; */
  padding: 2px;
  display: flex;
  width: 100%;
  gap: 10px;
  justify-content: space-between;
}

.MannaSpecial {
  height: fit-content !important;
}

.menu-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-height: 900px;
  overflow-y: auto;
  padding: 10px;

  /* Scrollbar styling for Firefox */
  scrollbar-width: thin;
  scrollbar-color: #7e684a #f0f0f0;
}

/* Scrollbar styling for Chrome, Edge, Safari */
.menu-items::-webkit-scrollbar {
  width: 8px;
}

.menu-items::-webkit-scrollbar-track {
  background: #8b6f47; /* track color */
  border-radius: 10px;
}

.menu-items::-webkit-scrollbar-thumb {
  background-color: #d4855a; /* thumb color */
  border-radius: 10px;
  border: 2px solid #f0f0f0; /* gives some space around thumb */
}

.menu-items::-webkit-scrollbar-thumb:hover {
  background-color: #b86d42; /* hover effect */
}

.certificate {
  /* background-color: red; */
  padding: 10px;
  margin-bottom: 30px;
  /* height: 70vh; */
  display: flex;
  margin-top: -15px;
  justify-content: center;
}

.certificate_image {
  /* background-color: #b86d42; */
  /* padding: 20px; */
  /*width: 650px;*/
  /*height: 850px;*/
    width: 100%;
  height: 100%;
}

.certificate_image img {
  width: 100%;
  height: 100%;
}

.feature-icon img {
  width: 80px;
  /* padding: 10px; */
  /*background-color: #7e684a;*/
}

.feature-icon {
  display: flex;
  justify-content: center;
}

/* thankyou Page */

.thankyou-wrapper {
  min-height: 85vh;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.thankyou-card h1 {
  font-family: "Fraunces", serif;
  font-size: 3.5rem;
  text-align: center;
  color: var(--deep-brown);
  margin-bottom: 4rem;
  font-style: italic;
  font-weight: 700;
}

/*certificate Area update*/

    .certificateArea {
      width: 100%;
      /* background-color: rebeccapurple; */
      padding: 20px;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 20px;
      margin-top: -10px;

      /* height: 50vh; */
    }

    .certificate_inner {
      width: 360px;
      /*height: 400px;*/
      gap: 80px;
      padding: 2rem 2%;
      background-color: rgb(255, 255, 255);
      border-radius: 10px;
      display: flex;
      align-items: center;
      flex-direction: column;
      justify-content: space-between;
      box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    }

    .Halal_certificate_img {
      width: 90px;
      height: auto;
    }
    .Halal_certificate_img img {
      width: 100%;
      height: 100%;
    }

    .certificate_inner h1 {
      font-family: "Fraunces", serif;
      font-size: 2.3rem;
      text-align: center;
      color: var(--deep-brown);
      font-style: italic;
      font-weight: 600;
      margin-top: -8px;
    }

    .certificate_inner button {
      padding: 7px 1.4rem;
      border-radius: 4px;
      display: flex;
      align-items: center;
      background: var(--terracotta);
      color: white;
      box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    }

    .certificate {
      display: none;
      margin-top: -40px;
    }

