/*-------  #ABOUT  -------*/

main {
  padding-top: 10%;
}

@media (max-width: 700px) {
  main {
    padding-top: 20%;
  }
}

@keyframes bounce-bg {
  0%,
  100% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(-10px);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
  80% {
    transform: translateY(0);
  }
}

/* our story */
.section-title {
  font-size: var(--fontSize-headline-1);
  color: var(--text-ternary);
  font-family: var(--fontFamily-nunito);
  font-weight: var(--weight-regular);
  line-height: var(--lineHeight-2);
  margin-block-end: 40px;
  text-align: left;
}
.about .section-title {
  margin-left: 5%;
}
.about .section-text {
  margin-block: 15px 30px;
  text-align: left;
}

.about .container {
  min-width: 100%;

  display: grid;
  gap: 10%;
}

/* .about-banner {
  position: relative;
  margin-block-end: 120px;
  margin-left: 15%;
  width: 100%;
  height: 150%;
  margin-top:7%;
  
} */
/* 
.about-banner img {
    min-width: 100%;
border-top-left-radius: 0;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 40px;
} */

.about-banner {
  min-width: 100%;
  height: auto;
  gap: 10px;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 30px auto;
}
.big-img {
  grid-column: 1 / -1;
  width: 100%;
  height: auto;
}
.about-banner img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-top-left-radius: 0;
  border-top-right-radius: 30px;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 0;
}

/* Our Restaurants Section */

/* .restaurants-section {
  background: #f8fafc;
  padding: 5rem 0 6rem 0;
  margin-bottom: 5rem;
} */

.section-subtitle {
  text-align: center;
  margin-bottom: 5%;
}

.restaurant-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  /* display: flex; */
  /* flex-direction: column; */
  /* gap: 4rem; */
  margin-bottom: 5%;
}

.restaurant {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

/* background decoration */
.restaurant-bg {
  position: relative;
  overflow: hidden;
}

.restaurant-bg::before {
  content: "";
  position: absolute;
  top: 20px;
  left: -20px;
  right: 0;
  bottom: 0;
  background: url("../images/shape-6-lighter.png") no-repeat left top;
  background-size: 70% auto;
  z-index: 0;

  /* animation: bounce-bg 2s infinite; */
}

.restaurant-2 {
  flex-direction: row-reverse;
}

.restaurant-info {
  flex: 1 1 350px;
  min-width: 300px;
}

.restaurant-title {
  color: var(--text-ternary);
  font-family: var(--fontFamily-nunito);
  font-weight: var(--weight-regular);
  line-height: var(--lineHeight-2);
}

.restaurant-desc {
  margin-block: 16px 40px;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
}

.restaurant-image {
  flex: 1 1 350px;
  min-width: 260px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.restaurant-image img {
  width: 100%;
  max-width: 700px;
  height: 400px;
  object-fit: cover;
  box-shadow: 0 6px 32px rgba(25, 153, 107, 0.1),
    0 1.5px 6px rgba(0, 0, 0, 0.04);
  background: #fff;
  border-top-left-radius: 0;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 40px;
}

@media (max-width: 1024px) {
  .restaurant-row {
    gap: 2rem;
  }
  .restaurant-image img {
    max-width: 320px;
    height: 200px;
  }
}

@media (max-width: 768px) {
  .restaurant-row,
  .restaurant-row.reverse {
    flex-direction: column;
    align-items: flex-start;
  }
  .restaurant-image img {
    max-width: 100%;
    height: 180px;
  }
}

@media (max-width: 480px) {
  .restaurant-container {
    padding: 0 0.5rem;
  }
  .restaurant-title {
    text-align: center;
  }
  .restaurant-desc {
    font-size: 1rem;
  }
  .restaurant-image img {
    height: 120px;
  }
}

/* our taste */

.taste-subtitle {
  text-align: left;
}

.special-dish-content {
  padding-block: 70px;
}

.special-dish .abs-img {
  margin-inline: auto;
  margin-block-end: 12px;
}

.special-dish .section-text {
  margin-block: 16px 40px;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  text-align: left;
}

.special-dish-content .wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-block-end: 40px;
}
.taste-banner {
  max-width: 900px;
  height: auto;
  gap: 10px;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 30px auto;
}
.taste-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-top-left-radius: 0;
  border-top-right-radius: 30px;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 0;
}
.big {
  width: 300px;
  height: 320px;
}
.special-dish-content .del {
  text-decoration: none;
  color: var(--davys-grey);
}

.special-dish-content .span {
  color: var(--text-ternary);
}

.special-dish .btn {
  margin-inline: auto;
}

/* background decoration */
.special-dish-bg {
  position: relative;
  overflow: hidden;
}
.special-dish-bg::before {
  content: "";
  position: absolute;
  transform: scaleX(-1);
  top: 15px;
  left: -500px;
  right: 0;
  bottom: 0;
  background: url("../images/shape-2-lighter.png") no-repeat left top;
  background-size: 60% auto;
  z-index: -10;
  /* animation: bounce-bg 2s infinite; */
}

@media (max-width: 600px) {
  .big {
    width: 100%;
    height: 250px;
  }
}

/* .special-dish-banner-img {
  margin-inline: auto;
  height: 60rem;
  width: 100%;
  background-position: center;
  border-top-left-radius: 40px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 40px;
  border-bottom-left-radius: 0px;
} */

/* stats cards */

/* .about-cards{
display:flex;
flex-wrap: wrap;
justify-content: center;
gap: 30px;
margin-bottom: 10%;
background: linear-gradient(135deg, #f8fafc 70%, #e6f4ea 100%);
padding: 3rem 1rem 3rem 1rem;
border-radius: 2rem;
}
.about-card {
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  background-color: #fff;
  color: var(--text-primary, #222); 
  padding: 60px;
  border-radius: 1.5rem; 
  height:300px;
  border: 1.5px solid #e6e6e6; 
  box-shadow: 0 4px 24px rgba(25, 153, 107, 0.06), 0 1.5px 6px rgba(0,0,0,0.03);
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}
.card_icon{
  font-size: 7rem;
  color: var(--text-primary, #222); 
  margin-bottom: 30%;
}
.about-card h1{
  font-size:7rem;
color: var(--text-primary, #222); 
  margin-bottom: 20%;
font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.about-card:hover{
  background-color: #f8fafc;
  border-color: #d3a971;
  box-shadow: 0 8px 32px rgba(25, 153, 107, 0.12), 0 2px 8px rgba(0,0,0,0.06);
  transform: translateY(-6px) scale(1.025);
}
#about-team{
  text-align: center;
} */

/*meet our chefs section */

/* .chefs-section{
  margin-top: 7%;
  padding: 0 2rem;
  background: linear-gradient(135deg, #f8fafc 60%, #e6f4ea 100%);
}

.chefs-container{
  padding-top: 2%;
  padding-bottom: 1%;
}

.chef-title{
  text-align: center;
  margin-bottom: 3rem;
  font-size: 3.5rem;
  letter-spacing: 1px;
}

.chefs {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
  margin: 0 auto 10%;
}

.chef-card {
  background: white;
  border-radius: 1.5rem;
  box-shadow: 0 6px 32px rgba(25, 153, 107, 0.08), 0 1.5px 6px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.5rem 2rem 2rem 2rem;
  min-width: 260px;
  max-width: 320px;
  width: 100%;
  transition: transform 0.25s cubic-bezier(.4,2,.6,1), box-shadow 0.25s;
  position: relative;
  overflow: hidden;
  border: 1.5px solid #e6e6e6;
}

.chef-card:hover {
  transform: translateY(-12px) scale(1.035);
  box-shadow: 0 12px 36px rgba(25, 153, 107, 0.16), 0 2px 8px rgba(0,0,0,0.08);
  border-color: var(--border-color);
}

.chef-card img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--border-color);
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 12px rgba(25, 153, 107, 0.08);
  background: #f8fafc;
  transition: border-color 0.2s;
}

.chef-card:hover img {
  border-color: #d3a971;
}

.chef-name {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
  font-family: var(--fontFamily-great_vibes);
  letter-spacing: 0.5px;
}

.chef-role {
  font-size: 1.2rem;
  color: #d3a971;
  font-weight: 600;
  margin-bottom: 0.8rem;
  letter-spacing: 0.2px;
}

.chef-desc {
  font-size: 1.3rem;
  color: var(--text-secondary);
  text-align: center;
  margin-top: 0.5rem;
  line-height: 1.5;
} */

/* @media (max-width: 1024px) {
  .chefs {
    gap: 2rem;
  }
  .chef-card {
    min-width: 220px;
    max-width: 100%;
    padding: 2rem 1.2rem 1.5rem 1.2rem;
  }
}

@media (max-width: 768px) {
  .chefs {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  .chef-card {
    width: 100%;
    max-width: 350px;
    min-width: 0;
    padding: 1.5rem 1rem 1.2rem 1rem;
  }
  .chef-title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .chefs-section {
    padding: 0 0.5rem;
  }
  .chef-card {
    padding: 1.2rem 0.5rem;
  }
} */

/* our Works */

.process-section {
  background: linear-gradient(120deg, #e6f4ea 60%, #f8fafc 100%);
  padding: 5rem 0 6rem 0;
  margin: 0 0 5rem 0;
}

.process-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.process-title {
  margin-bottom: 2.5rem;
  font-size: 2.8rem;
  letter-spacing: 1px;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
  align-items: stretch;
}

.process-step {
  background: #fff;
  border-top-left-radius: 0;
  border-top-right-radius: 30px;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 0;

  box-shadow: 0 6px 32px rgba(25, 153, 107, 0.08),
    0 1.5px 6px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.5rem 2rem 2rem 2rem;
  min-width: 220px;
  max-width: 300px;
  width: 100%;
  transition: transform 0.25s cubic-bezier(0.4, 2, 0.6, 1), box-shadow 0.25s;
  border: 1.5px solid #e6e6e6;
  text-align: center;
  position: relative;
}

.process-step:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 36px rgba(25, 153, 107, 0.16),
    0 2px 8px rgba(0, 0, 0, 0.08);
  border-color: var(--border-color);
}

.process-icon {
  font-size: 4rem;
  color: var(--text-primary);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-ternary);
  margin-bottom: 0.7rem;
  letter-spacing: 0.5px;
}

.process-step-desc {
  font-size: 1.5rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .process-steps {
    gap: 2rem;
  }
  .process-step {
    min-width: 180px;
    max-width: 100%;
    padding: 2rem 1.2rem 1.5rem 1.2rem;
  }
}

@media (max-width: 768px) {
  .process-steps {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  .process-step {
    width: 100%;
    max-width: 350px;
    min-width: 0;
    padding: 1.5rem 1rem 1.2rem 1rem;
  }
  .process-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .process-container {
    padding: 0 0.5rem;
  }
  .process-step {
    padding: 1.2rem 0.5rem;
    width: 300px;
  }
}

/* our Values */
.values-section {
  padding: 5rem 0 6rem 0;
  margin: 0 0 5rem 0;
}
.values-section::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/shape-5-lighter.png") no-repeat left top;
  background-size: 70% auto;
  z-index: -10;
  /* animation: bounce-bg 2s infinite; */
}
/* .values-section2::before {
  content: "";
  position: absolute;
  top: 0; left: 500px; right:0; bottom: 0;
  background: url('../images/shape-2-lighter.png') no-repeat left top;
  background-size: 20% auto;
  z-index: -10;

  animation: bounce-bg 2s infinite;
  padding: 5rem 0 6rem 0;
  margin: 0 0 5rem 0;
} */

.values-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.values-title {
  margin-bottom: 2.5rem;
  font-size: 2.8rem;
  letter-spacing: 1px;
}

.values-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
  align-items: stretch;
}

.value-card {
  background: #fff;
  border-top-left-radius: 0;
  border-top-right-radius: 30px;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 0;
  box-shadow: 0 6px 32px rgba(25, 153, 107, 0.08),
    0 1.5px 6px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.5rem 2rem 2rem 2rem;
  min-width: 220px;
  max-width: 300px;
  width: 100%;
  transition: transform 0.25s cubic-bezier(0.4, 2, 0.6, 1), box-shadow 0.25s;
  border: 1.5px solid #e6e6e6;
  text-align: center;
}

.value-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 36px rgba(25, 153, 107, 0.16),
    0 2px 8px rgba(0, 0, 0, 0.08);
  border-color: var(--border-color);
}

.value-icon {
  font-size: 4rem;
  color: var(--text-primary);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-ternary);
  margin-bottom: 0.7rem;
  letter-spacing: 0.5px;
}

.value-desc {
  font-size: 1.5rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .restaurant-2 {
    margin-top: 11%;
  }
  .values-cards {
    gap: 2rem;
  }
  .value-card {
    min-width: 180px;
    max-width: 100%;
    padding: 2rem 1.2rem 1.5rem 1.2rem;
  }
}

@media (max-width: 768px) {
  .values-cards {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  .value-card {
    width: 100%;
    max-width: 350px;
    min-width: 0;
    padding: 1.5rem 1rem 1.2rem 1rem;
  }
  .values-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .values-container {
    padding: 0 0.5rem;
  }
  .value-card {
    padding: 1.2rem 0.5rem;
    width: 300px;
  }
}

@media (max-width: 550px) {
  .about .section-text {
    font-size: 1.6rem;
    text-align: left;
  }
  .special-dish .section-text {
    font-size: 1.6rem;
    text-align: left;
  }

  .about .container {
    display: block;
  }
  .about-banner {
    width: 100%;
  }
  .restaurant-title {
    margin-left: 10px;
  }
  .restaurant-desc {
    font-size: 1.6rem;
    margin-left: 10px;
  }
  .special-dish-bg::before {
    left: -100px;
    right: 0;
    top: 0;
    bottom: 0;
  }
  .restaurant-bg::before {
    background-size: 100% auto;
  }
}
@media (max-width: 990px) {
  .section-title {
    text-align: center;
  }
  .section-subtitle {
    text-align: center;
  }
}
@media (max-width: 770px) {
  .restaurant-image img {
    height: 350px;
  }
}
