:root {
  --forest-green: #06402b;
  --light-forest-green: #075237;
  --dark-grey: #212121;
  --cream: #f5f5dc;
  --light-cream: #fafaf0;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-grey);
}

/* Navigation */
.navbar {
  background-color: var(--forest-green) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.navbar-brand {
  font-size: 1.5rem;
  color: white !important;
}

.nav-link {
  color: var(--cream) !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

/*  .nav-link:hover,
.nav-link.active {
  color: var(--cream) !important;
}
    */
.nav-link:hover {
  background: var(--cream) !important;
  color: var(--forest-green) !important;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--forest-green) 0%, var(--dark-grey) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("https://placehold.co/800x1200") center / cover;
  opacity: 0.1;
  z-index: 1;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  background: #075726;
  /*    background: rgba(6, 64, 43, 0.8); */
}

.hero-overlay-about {
  position: relative;
  z-index: 2;
  background: rgba(7, 87, 38, .5);
}

.about-hero {
  background: linear-gradient(135deg, var(--dark-grey) 0%, var(--forest-green) 100%);
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/Inside01.jpg") center / cover;
  /*    background: url("https://placehold.co/600x1200") center / cover;  */
  opacity: 1;
  z-index: 1;
}

.aboutIcons {
  background-color: var(--forest-green) !important;
}

/* Buttons */
.btn-primary {
  background-color: var(--forest-green);
  border-color: var(--forest-green);
  font-weight: 600;
  padding: 12px 30px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #054a32;
  border-color: #054a32;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(6, 64, 43, 0.3);
}

.btn-outline-light:hover {
  background-color: var(--cream);
  border-color: var(--cream);
  color: var(--forest-green);
}

.btn-primary-light {
  background-color: var(--cream);
  border-color: var(--forest-green);
  font-weight: 600;
  padding: 12px 30px;
  transition: all 0.3s ease;
}

.btn-primary-light:hover {
  background-color: #CFCFBA;
  border-color: #054a32;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(6, 64, 43, 0.3);
}


/* Text Colors */
.text-primary {
  color: var(--forest-green) !important;
}

/* Menu Section */
#menu {
  background-color: var(--light-cream);
}
.page_title {
    padding: 30px 0px;
}
.page_title h1 {
    color: #c0392b;
    font-weight: 700;
    line-height: 2;
    margin-bottom: 0;
    position: relative;
    text-transform: capitalize;
}
.page_title h1::before {
    background: #c0392b;
    width: 70px;
    height: 2px;
    position: absolute;
    content: '';
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.page_title h1::after {
    position: absolute;
    content: '';
    background: #fbc531;
    width: 30px;
    height: 2px;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
}
/*Menu starts*/
.menu_tab {
    margin: 0 auto;
    justify-content: center;
}
.nav-item {
    display: inline-block;
    text-align: center;
    margin-top: 10px;
}
.nav-tabs .nav-link{
    transition: .3s;
}
.nav-tabs .nav-link.active {
    background: #c0392b;
    color: #fff;
    font-weight: 700;
    border: 1px solid #c0392b;
    text-transform: capitalize;
}
.nav-link {
    color: #000;
}
.nav-tabs .nav-link:hover {
    background: #c0392b;
    color: #fff;
    border: 1px solid #c0392b;
}
.single_menu {
    position: relative;
    margin-bottom: 75px;
    transition: .3s;
    min-height: 100px;
}
/*
.single_menu:hover img{
    -webkit-clip-path: polygon(0% 0%, 100% 0, 100% 50%, 100% 100%, 0% 100%);
clip-path: polygon(0% 0%, 100% 0, 100% 50%, 100% 100%, 0% 100%);

}
*/
.single_menu img {
    width: 110px;
    position: absolute;
    height: 110px;
	/*
    -webkit-clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
    clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
	*/
    transition: .3s;
    /* border: 1px solid #ddd; */
    border-radius: 5px;
}
.menu_content { padding-left: 140px; }
.menu_content h4 {
		font-size: 20px;
    font-weight: bold;
    border-bottom: 1px dashed #c0392b;
    line-height: 2;
    text-transform: capitalize;
}
.menu_content h4 span {
    font-size: 25px;
    font-weight: 800;
    float: right;
    font-style: italic;
    color: #c0392b;
}
.menu_content p {
    font-weight: 200;
    font-size: 16px;
    letter-spacing: 1px;
}
.menu_btn.btn.btn-danger {
    margin: 0 auto;
    display: block;
    width: 140px;
}
/*Menu ends*/

.nav-pills .nav-link {
  color: var(--dark-grey);
  background-color: var(--light-forest-green); /* transparent; */
  border: 2px solid var(--forest-green);
  margin: 0 5px;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 150px;
}

.nav-pills .nav-link:hover {
  background-color: var(--forest-green);
  color: white;
}

.nav-pills .nav-link.active {
  background-color: var(--forest-green);
  border-color: var(--forest-green);
  color: white;
}

#myTab .nav-link {
  color: var(--dark-grey);
  background-color: var(--light-forest-green); /* transparent; */
  border: 2px solid var(--forest-green);
  margin: 0 5px;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 150px;
}

#myTab .nav-link:hover {
  background-color: var(--forest-green);
  color: white;
}

#myTab .nav-link.active {
  background-color: var(--forest-green);
  border-color: var(--forest-green);
  color: white;
}

.nav-icon {
    height: 50px;
}

.menu-item {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.menu-item img {
  float: left;
  width: 100px;
  max-width: 100px;
  height: 100px;
  margin-right: 20px;
  border-radius: 5px;
}

.menu-item h4 {
  padding-top: 10px;
  font-size: 20px;
  font-weight: 700;
  color: #2a2a2a;
  margin-bottom: 10px;
  margin-right: 100px;
}

.menu-item p {
  margin-right: 100px;
  width: 400px;
}

.menu-item .price h6 {
  margin-right: 10px;
  position: absolute;
  top: 15px;
  right: 0;
  width: 70px;
  height: 70px;
  background-color: #075726;
  display: inline-block;
  text-align: center;
  line-height: 70px;
  border-radius: 3px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.price {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--forest-green);
  white-space: nowrap;
}

/* Cards */
.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

/* Order Section */
#order {
  background-color: var(--light-cream);
}

.btn-outline-danger:hover {
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-outline-success:hover {
  background-color: #28a745;
  border-color: #28a745;
}

.btn-oline-orange: {
  background-color: #fff;
  border: thin solid #fd7e14 !important;
}

.btn-oline-orange:hover {
  background-color: #fd7e14;
  border-color: #733909;
  color: #fff !important;
}

/* Footer */
footer {
  background-color: var(--dark-grey) !important;
}

footer a {
  transition: color 0.3s ease;
  text-decoration: none;
}

footer a:hover {
  color: var(--cream) !important;
}

.footerLink {
    color: #fff;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tab-pane {
  animation: fadeInUp 0.5s ease;
}

/* Responsive Design */
@media only screen and (min-width: 1000px) {
  .menu-item p {
      /*  border: thin solid blue;  */
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .nav-pills .nav-link {
    margin: 5px 0;
    display: block;
  }

  .menu-item {
    margin-bottom: 20px;
  }

  .d-flex.gap-3 {
    flex-direction: column;
    gap: 1rem !important;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading Animation */
.tab-content {
  min-height: 400px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--light-cream);
}

::-webkit-scrollbar-thumb {
  background: var(--forest-green);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #054a32;
}

