/* start global rules*/
:root {
  --primary-color: #213e60;
  --secondary-color: #e68c3a;
  --background-color: #f4f2ef;
  --text-color: #f4f2ef;
  --warning-color: #ffcd00;
  --danger-color: #dc3545;
  --success-color: #28a745;
  --text-4xl: 3.5rem;
  --text-3xl: 3rem;
  --text-2xl: 2.5rem;
  --text-xl: 2rem;
  --text-lg: 1.5rem;
  --text-regular: 1.25rem;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 50px;
}
body {
  font-family: "Roboto", sans-serif;
}
h1 {
  font-size: 3rem;
}
h2 {
  font-size: 2.5rem;
}
h3 {
  font-size: 2rem;
}
h4 {
  font-size: 1.5rem;
}
h5 {
  font-size: 1.25rem;
}
h6 {
  font-size: 1rem;
}
p {
  font-size: 1rem;
}
.main-color {
  background-color: var(--primary-color) !important;
}
.main-text-color {
  color: var(--primary-color) !important;
}
.sec-color {
  color: var(--secondary-color) !important;
}
.main-btn {
  color: var(--text-color) !important;
  background-color: var(--secondary-color);
  transition: 0.5s ease;
  font-size: 1rem;
}
.main-btn:hover {
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color) !important;
}
.sec-btn {
  color: var(--secondary-color) !important;
  border: 1px solid var(--secondary-color);
  transition: 0.5s ease;
  font-size: 1rem;
}
.sec-btn:hover {
  background-color: var(--secondary-color);
  color: var(--text-color) !important;
}
.top-padding {
  padding: 85px 0 1.5rem;
}
.full-height {
  min-height: 80vh;
}
/* end global rules*/
/* start nav */
nav {
  background-color: var(--background-color);
  z-index: 99999999999;
}
.nav-ul {
  align-items: center;
}
@media (max-width: 992px) {
  .nav-ul {
    align-items: flex-start;
  }
}
nav a {
  color: var(--primary-color) !important;
}
nav .container > a {
  font-size: 1.5rem;
}
nav .container > button {
  border-color: var(--primary-color);
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30' width='30' height='30'%3E%3Cpath stroke='%23213e60' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
nav .container ul a {
  font-size: 1rem;
  transition: 0.5s ease;
}
nav ul li:nth-child(-n + 4) a:hover {
  color: var(--secondary-color) !important;
}
/* end nav */
/* start hero */
.hero {
  background: url("../img/hero.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 100vh;
}
.layer {
  background: rgba(0, 0, 0, 0.6);
  color: var(--text-color);
}
.layer a {
  color: var(--text-color);
  background-color: var(--secondary-color);
  transition: 0.5s ease;
}
.layer a:hover {
  border: 1px solid var(--secondary-color);
}
/* end hero */
/* start about */
.about {
  background-color: #fff;
}

.feature-box {
  background: var(--background-color);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.feature-box i {
  color: var(--secondary-color);
}

/* end about */
/* start Our Special Dishes */
.card {
  border: none;
  transition: transform 0.3s ease-in-out;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
}
.card:hover {
  transform: scale(1.05);
}
.card img {
  height: 200px;
  object-fit: cover;
}
.card-body {
  padding: 20px;
  position: relative;
}
.card-body::before {
  content: "";
  position: absolute;
  top: -29px;
  left: 0;
  border-width: 15px;
  border-style: solid;
  border-color: transparent transparent #fff #fff;
  width: 0;
  height: 0;
}
.card-title {
  font-size: 1.5rem;
  font-weight: bold;
}
.price {
  font-size: 1.25rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
}
/* Sign Pages */
.sign-section {
  height: 100vh;
  background-color: var(--background-color);
}
/* Left Side - Form */
.sign-form {
  width: 40%;
  height: 100vh;
  background-color: #fff;
  padding: 50px;
}
/* Right Side - Image */
.sign-image {
  width: 60%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.sign-image h2 {
  font-size: 5rem;
  font-weight: bolder;
  -webkit-text-fill-color: white;
  -webkit-text-stroke: 2px var(--secondary-color);
  animation-duration: 1.5s;
}
.sign-image::before {
  content: "";
  position: absolute;
  width: 300%;
  height: 65%;
  background-image: linear-gradient(to bottom, #85b1e0, #2063c2);
  left: 45%;
  top: 60%;
  transform: translateX(-50%) skew(0, -10deg);
  border-radius: 50%;
  animation: waving 8s linear infinite alternate;
  overflow: hidden;
}
.sign-image::after {
  content: "";
  position: absolute;
  width: 300%;
  height: 65%;
  background-image: linear-gradient(to bottom, #85b1e0, var(--primary-color));
  left: 50%;
  top: 65%;
  transform: translateX(-60%) skew(0, 10deg);
  border-radius: 50%;
  animation: waving-rev 7s 1s linear infinite alternate;
  overflow: hidden;
}
@keyframes waving {
  from {
    transform: translateX(-50%) skew(0, -10deg);
  }
  to {
    transform: translateX(-30%) skew(10deg, 0);
  }
}
@keyframes waving-rev {
  from {
    transform: translateX(-60%) skew(0, 10deg);
  }
  to {
    transform: translateX(-30%) skew(-10deg, 0);
  }
}
@media (max-width: 1180px) {
  .sign-form {
    width: 50%;
  }
  .sign-image {
    width: 50%;
  }
}
@media (max-width: 992px) {
  .sign-form {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
  }
  .sign-form .container {
    border: 2px solid #ccc;
    border-radius: 1rem 0 1rem 0;
    padding: 1rem;
    box-shadow: #e4e3e3 0px 0px 10px;
  }
  .sign-image {
    display: none !important;
  }
}
@media (max-width: 775px) {
  .sign-form {
    width: 95%;
  }
  .sign-form h2 {
    font-size: 2rem;
  }
}
.sign-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* end Sign Pages */
/* Start Menu */
.menu-section .filter-buttons {
  left: 50%;
  transform: translateX(-50%);
}
.menu-section .filter-buttons button {
  color: var(--primary-color);
  border-color: var(--primary-color);
}
.menu-section .filter-buttons button.active {
  background-color: var(--primary-color);
  color: var(--text-color) !important;
  border-color: var(--primary-color);
}
.menu-section .filter-buttons button:hover {
  background-color: var(--primary-color);
  color: var(--text-color) !important;
}
/* End Menu */
/* help page */
.accordion-button {
  background-color: var(--background-color);
  color: var(--primary-color);
}
.accordion-button:hover {
  background-color: var(--secondary-color);
  color: var(--text-color);
}
.accordion-body {
  text-align: left;
  font-size: 1.1rem;
}
.contact-form {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
}
.contact-form label {
  display: block;
  padding-left: 1rem;
  font-weight: bold;
  color: var(--primary-color);
  text-align: left;
}
.contact-form button {
  background-color: var(--primary-color);
  border: none;
  padding: 10px 20px;
}
.contact-form button:hover {
  background-color: var(--secondary-color);
}
/* end help page */
/* start terms */
.terms-content h4 {
  color: var(--primary-color);
  margin-top: 20px;
}
.terms-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  padding-left: 1rem;
}
.terms-content a {
  color: var(--secondary-color);
  text-decoration: none;
}
.terms-content a:hover {
  text-decoration: underline;
}
/* end terms */
/* start privacy page */
.privacy-policy h4 {
  color: var(--primary-color);
}
.privacy-policy p {
  font-size: 1.1rem;
  line-height: 1.6;
  padding-left: 1rem;
}
.privacy-policy .container a {
  color: var(--secondary-color);
}
/* end privacy page */
/* start contact page */
.main-bg-color:hover {
  background-color: #062c52;
  color: white;
}
.contact-hero {
  color: white;
  text-align: center;
  padding-bottom: 80px;
}
.contact-form-container {
  background-color: white;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 30px;
  margin-top: -60px;
  z-index: 2;
  position: relative;
}
.form-control:focus {
  border-color: var(--main-color);
  box-shadow: none;
}
.form-label {
  font-weight: 600;
}
.contact-info h5 {
  color: var(--main-color);
}
.contact-info a {
  text-decoration: none;
  color: #333;
}
.contact-info a:hover {
  text-decoration: underline;
}
/* end contact page */
/* start about page */
.about-content {
  padding: 60px 20px;
}
.about-section {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
}
/* end about page */
/* start cart */
.cart-table {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.alert-fixed {
  position: fixed;
  top: 80px;
  right: 20px;
  z-index: 9999;
}
/* end cart */
/* start footer */
footer a {
  color: var(--text-color);
}
footer a:hover {
  color: var(--secondary-color);
}
/* end footer */
