* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --main-bg-color: #ce1212;
  --main-color: #eee;
  --color-secondary: #37373f;
  --color-white: #ffffff;
  --color-black: #212529;
  --hero-p-color: #4f4f5a;
}

body {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Amatic SC", sans-serif;
  font-weight: 700;
}

.text-inter {
  font-family: "Amatic SC", sans-serif;
  font-weight: 400;
}

.container {
  padding-left: 12px;
  padding-right: 12px;
  margin: auto;
}

ul {
  list-style: none;
}

.section-padding {
  padding-top: 90px;
  padding-bottom: 90px;
}

nav {
  height: 90px;
}

nav .container {
  display: flex;
  justify-content: space-around;
  height: 100%;
  align-items: center;
}

nav .container ul {
  display: flex;
  padding: 5px 15px;
  animation-duration: 0.3s;
}

nav a {
  text-decoration: none;
  color: var(--color-black);
  padding: 10px;
}

nav .logo {
  font-size: 30px;
  font-weight: bold;
  font-family: sans-serif;
}

nav .logo span {
  color: #ce1212;
  border-radius: 50%;
  font-size: 30px;
  margin-left: -10px;
}

.darkModebtn i {
  font-size: 45 px;
}

.hero {
  display: flex;
  background-color: var(--main-color);
  height: 100vh;
}

.hero .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.hero_content {
  width: 40%;
}

.hero_img {
  width: 40%;
}

.hero_img img {
  width: 100%;
}

.hero_content h2 {
  font-size: 65px;
  color: var(--color-secondary);
}

.hero_content p {
  font-size: 16px;
  color: var(--hero-p-color);
  margin-block: 20px;
}

.hero_anchors a {
  text-decoration: none;
}

.hero_anchors {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.hero_anchors a:first-child {
  background-color: var(--main-bg-color);
  color: var(--color-white);
  padding: 10px 25px;
  border-radius: 100vh;
  border-top-left-radius: 0vh;
  transition: 0.3s;
}

.hero_anchors a:first-child:hover {
  filter: brightness(1.07);
}

.hero_anchors a:last-child {
  color: var(--color-black);
  font-weight: 600;
  color: var(--color-black);
  transition: 0.3s;
}

.hero_anchors a:last-child:hover {
  color: var(--main-bg-color);
}

.hero_anchors i {
  width: 55px;
  height: 55px;
  background: linear-gradient(
    to right,
    var(--main-bg-color) 0% 50%,
    transparent 50% 100%
  );
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.hero_anchors i::before {
  z-index: 1;
}

.hero_anchors i::after {
  content: "";
  width: 40px;
  height: 40px;
  background-color: white;
  position: absolute;
  border-radius: 50%;
}

.hero_img img:hover {
  animation: image_plat_animate 0.5s infinite;
}

@keyframes image_plat_animate {
  0% {
    transform: translate(1px, 1px) rotate(0deg);
  }
  10% {
    transform: translate(-1px, -2px) rotate(-1deg);
  }
  20% {
    transform: translate(-3px, 0px) rotate(1deg);
  }
  30% {
    transform: translate(3px, 2px) rotate(0deg);
  }
  40% {
    transform: translate(1px, -1px) rotate(1deg);
  }
  50% {
    transform: translate(-1px, 2px) rotate(-1deg);
  }
  60% {
    transform: translate(-3px, 1px) rotate(0deg);
  }
  70% {
    transform: translate(3px, 1px) rotate(-1deg);
  }
  80% {
    transform: translate(-1px, -1px) rotate(1deg);
  }
  90% {
    transform: translate(1px, 2px) rotate(0deg);
  }
  100% {
    transform: translate(1px, -2px) rotate(-1deg);
  }
}
.chefs_sec {
  margin: auto;
  padding: 40px 0;
  width: 90%;
  max-width: 1200px;
  transition: transform 0.3s ease;
}

.chefs_sec figure:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.chefs_sec .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.chefs_sec .container > div {
  box-sizing: border-box;
  width: 100%;
  padding: 10px;
}

@media (min-width: 768px) {
  .chefs_sec .container > div {
    width: 48%;
  }
}

@media (min-width: 992px) {
  .chefs_sec .container > div {
    width: 31%;
  }
}

.chefs_card img {
  width: 100%;
  padding: 20px;
  display: block;
  object-fit: cover;
}

.chefs_sec figure {
  margin: 0;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.chefs_sec figcaption {
  padding: 25px 15px 15px;
  text-align: center;
}

.chefs_sec figcaption h4 {
  font-family: sans-serif;
  padding: 2px;
  font-size: 18px;
  margin: 0;
}

.chefs_sec figcaption h5 {
  font-family: "Roboto", sans-serif;
  color: rgb(127, 127, 144);
  margin: 0;
}

.chefs_sec figcaption p {
  font-family: "Amatic SC", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  padding: 10px 0 0;
  margin: 0;
}

.prof {
  margin-top: 30px;
  margin-bottom: 50px;
  text-align: center;
}

.prof h4 {
  font-size: 14px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: rgb(127, 127, 144);
}

.prof h2 {
  font-weight: 400;
  font-size: 50px;
  color: rgb(33, 37, 41);
  margin: 10px 0;
}

.prof span {
  color: #ce1212;
  font-family: "Amatic SC", sans-serif;
}

.gallery_sec {
  padding: 40px 0;
  width: 60%;
  margin: auto;
  padding-left: 20px;
}

.gallery_sec .gallery_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.gallery_sec .gallery_grid > div {
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .gallery_sec .gallery_grid > div {
    width: 48%;
  }
}

@media (min-width: 992px) {
  .gallery_sec .gallery_grid > div {
    width: 31%;
  }
}

.gallery_sec img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.gallery_sec figure {
  position: relative;
  overflow: hidden;
  border: 5px solid white;
  margin: 0;
}

.gallery_sec figure:hover figcaption {
  transform: translateY(0);
}

.gallery_sec figcaption {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 10px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  transform: translateY(100%);
  transition: 0.3s transform;
}

.gallery_sec h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  font-family: sans-serif;
}

.gallery_sec p {
  color: #ddd;
  font-size: 16px;
  font-weight: 400;
  font-family: sans-serif;
}

.main_title h4 {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  text-align: center;
  font-size: 14px;
  color: rgb(127, 127, 144);
}

.main_title h2 {
  font-weight: 400;
  text-align: center;
  font-size: 50px;
  color: rgb(33, 37, 41);
}

.main_title span {
  color: #ce1212;
  font-weight: 400;
  text-align: center;
  font-size: 50px;
  font-family: "Amatic SC", sans-serif;
}

.contactUs_main_title h4 {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  text-align: center;
  font-size: 14px;
  color: rgb(127, 127, 144);
}

.contactUs_main_title h2 {
  font-weight: 400;
  text-align: center;
  font-size: 50px;
}

.contactUs_main_title span {
  color: #ce1212;
  font-weight: 400;
  text-align: center;
  font-size: 50px;
  font-family: "Amatic SC", sans-serif;
}

.contact-section {
  padding: 40px;
  background: #f9f9f9;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
  margin-bottom: 30px;
}

.info-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.info-card {
  flex: 1 1 calc(50% - 10px);
  background: #fff;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border-left: 8px solid #ce1212;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.info-card i.icon {
  font-size: 24px;
  color: #ce1212;
  background: #f5f5f5;
  border-radius: 50%;
  padding: 10px;
}

.info-card h4 {
  margin-bottom: 5px;
  font-size: 18px;
}

.info-card p {
  color: #333;
  font-size: 14px;
}

.contact-form {
  background: #fff;
  padding: 30px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.contact-form .form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact-form .form-row input {
  flex: 1;
}

.contact-form textarea {
  height: 150px;
  resize: vertical;
  margin-bottom: 20px;
}

.contact-form button {
  background-color: #ce1212;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  display: block;
  margin: auto;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: #a70f0f;
}

@media (max-width: 768px) {
  .info-card {
    flex: 1 1 100%;
  }

  .contact-form .form-row {
    flex-direction: column;
  }
}
