/*
 ---01Typography
    -FONT SIZE SYSTEM (px)
    10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 
    / 52 / 62 / 74 / 86 / 98

    -Fontweight SYSTEM
    Default : 400

    -Lineheight SYSTEM
    Default : 1

    ---02Color
    background color : #352A04
    -Heading Color : #F5EEDB
    Text color : #FFF8EA
    Main Color : #C7A238
    mainor Color : #E6C54D
    shades: #251d03


 --- 03 Spacing
    2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 
    / 80 / 96 / 128


    */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: "Cairo", sans-serif;
  line-height: 1.6;
  font-weight: 400;
  color: #fff8ea;
  background-color: #352a04;
  overflow-x: hidden;
}
a {
  text-decoration: none;
}

/* ************************ */
/* NAVIGATION */
/* ************************ */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;

  height: 9.6rem;
  padding: 0 3.2rem;
  background-color: #352a04;
  border-bottom: 1px solid #e6c54d;
  position: relative;
  transition: all 0.3s ease;
}
.sticky .header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;

  height: 8rem;
  background-color: rgba(37, 29, 3, 0.96);
  border-bottom: 1px solid #e6c54d;
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.15);
}
.sticky .logo {
  height: 7.2rem;
}

.sticky .logo-name {
  font-size: 4rem;
}

.main-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
}
.logo-name {
  font-size: 4.8rem;
  color: #faf4ad;
  font-weight: 700;
  line-height: 1;
  text-transform: capitalize;
}
.logo {
  height: 9.6rem;
}
.main-nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.2rem;
  font-weight: 500;
  line-height: 1.05;
  list-style: none;
}
.main-nav-link:link,
.main-nav-link:visited {
  display: inline-block;
  text-decoration: none;
  font-size: 1.8rem;
  color: #fff8ea;
  transition: all 0.3s;
}
.main-nav-link:hover,
.main-nav-link:active {
  color: #e6c54d;
}
.main-nav-link.nav-cta:link,
.main-nav-link.nav-cta:visited {
  padding: 1.2rem 2.4rem;
  border-radius: 1rem;
  background-color: #c7a238;
}
.main-nav-link.nav-cta:hover,
.main-nav-link.nav-cta:active {
  background-color: #e6c54d;
  color: #fff8ea;
  border: none;
}

/* mobile-nav */
.btn-mobile-nav {
  border: none;
  background: none;
  cursor: pointer;
  display: none;
}
.icon-mobile-nav {
  width: 4.8rem;
  height: 4.8rem;
  color: #e6c54d;
}
.icon-mobile-nav[name="close-outline"] {
  display: none;
}

/* ************************ */
/* HERO SECTION */
/* ************************ */
.section-hero {
  background-color: #251d03;
  border-bottom: 1px solid #e6c54d;
  padding: 4.8rem 0 9.6rem 0;
}
.sticky .section-hero {
  margin-top: 9.6rem;
}
.hero {
  max-width: 130rem;
  margin: 0 auto;
  padding: 0 3.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 9.6rem;
}
.hero-mini {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.3;
  color: #e6c54d;
  margin-bottom: 3.2rem;
}
.hero-title {
  font-size: 6.2rem;
  color: #f5eedb;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 2.4rem;
}
.hero-description {
  font-size: 2rem;
  line-height: 1.7;
  margin-bottom: 3.2rem;
}

.hero-img img {
  width: 100%;
  height: 100%;
}
.features {
  margin-top: 4.8rem;
}

.feature-content {
  display: flex;
  align-items: center;
  gap: 2.8rem;
}

.feature-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.icon {
  width: 3.2rem;
  height: 3.2rem;
  fill: #e6c54d;
}
.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #352a04;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
}

.feature-icon-text {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
}

.divider {
  width: 1px;
  height: 4.6rem;
  background-color: #e6c54d;
}

/* ************************ */
/* BTN */
/* ************************ */
.btn:link,
.btn:visited {
  display: inline-block;
  text-decoration: none;
  padding: 1.6rem 3.2rem;
  border-radius: 1rem;
  font-size: 2rem;
  font-weight: 600;
  color: #fff8ea;
  transition: background-color 0.3s ease;
}
.btn-primary:link,
.btn-primary:visited {
  background-color: #c7a238;
}
.btn-primary:hover,
.btn-primary:active {
  background-color: #e6c54d;
}
.btn-secondary:link,
.btn-secondary:visited {
  /* background-color: transparent; */
  box-shadow: 0 0 0 2px #c7a238 inset;
}
.btn-secondary:hover,
.btn-secondary:active {
  background-color: #fff8ea;
  color: #c7a238;
}
.margin-right-btn {
  margin-right: 1.6rem;
}

/* ************************ */
/* REUSABLE PROPERTY */
/* ************************ */
.container {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 3.2rem;
}

.margin-bottom-sm {
  margin-bottom: 1.6rem;
}
.link:link,
.link:visited {
  display: inline-block;
  color: #fff8ea;
}
/* ************************ */
/* SECTION-ABOUT */
/* ************************ */
.section-about {
  padding: 9.6rem 0;
}
.heading-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.heading-secondary {
  font-size: 4.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  line-height: 1.5;
  text-transform: capitalize;
}
.title-form {
  width: 9.6rem;
}
.undertitle-form {
  width: 16rem;
}
.undertitle {
  text-align: center;
  margin-top: -1rem;
  margin-bottom: 9.6rem;
}

/* ****************************** */

.about-box {
  max-width: 110rem;
  min-height: 26rem;
  position: relative;
  margin: 0 auto;
  padding: 7rem 14rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* .about-box img {
  width: 100%;
} */
.upper-left,
.bottom-right {
  position: absolute;
  width: 52%;
  max-width: 58rem;
  pointer-events: none;
}
.upper-left {
  top: 0;
  left: 0;
}
.bottom-right {
  bottom: 0;
  right: 0;
}
.about-text {
  position: relative;
  z-index: 2;
  max-width: 85rem;
  font-size: 1.8rem;
  line-height: 1.8;
  text-align: center;
  color: #fff8ea;
  /* padding: 1.2rem 0; */
}

/* ************************ */
/* POPULAR SECTION */
/* ************************ */
.Popular-section {
  padding: 9.6rem 0;
}
.popular-slider {
  position: relative;
  max-width: 110rem;
  margin: 0 auto;
}
.popular-images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8rem;
}
.popular-img {
  object-fit: cover;
  border-radius: 0.8rem;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}
.main-img {
  width: 32rem;
  height: 32rem;
  transform: scale(1.08);
  opacity: 1;
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.4);
}
.side-img {
  width: 22rem;
  height: 22rem;
  opacity: 0.35;
  cursor: pointer;
}
.side-img:hover {
  opacity: 0.6;
}
.popular-images.changing .popular-img {
  opacity: 0;
  transform: scale(0.92);
}
.popular-arrow {
  display: flex;
  justify-content: center;
  align-items: center;

  position: absolute;
  top: 50%;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  border: 1px solid #e6c54d;
  font-size: 2.4rem;
  color: #e6c54d;
  background-color: rgba(53, 42, 4, 0.8);
  cursor: pointer;
  transform: translateY(-50%);
  z-index: 5;
}
.popular-arrow-left {
  left: 0;
}
.popular-arrow-right {
  right: 0;
}
.popular-content {
  text-align: center;
  margin-top: 3.6rem;
}
.popular-content h3 {
  font-size: 2.8rem;
  font-weight: 500;
  color: #fff8ea;
  margin-bottom: 2rem;
}
.popular-content p {
  font-size: 2rem;
  color: #fff8ea;
}
.popular-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.4rem;
  margin-top: 3.6rem;
}
.popular-dot {
  width: 1.4rem;
  height: 1.4rem;
  background-color: #5a4b14;
  border-radius: 50%;
  cursor: pointer;
}
.popular-dot.active {
  background-color: #e6c54d;
  border: 2px solid #fff8ea;
}

/* ************************ */
/* MENU SECTION */
/* ************************ */

.menu-section {
  padding: 9.6rem 0;
}

.menu-container {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 3.2rem;
}

.menu-gallery {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  gap: 3.2rem;
}

.menu-main-img {
  width: 100%;
  max-width: 48rem;
  border-radius: 2rem;
  overflow: hidden;
  border: 1px solid rgba(230, 197, 77, 0.5);
  box-shadow: 0 1.6rem 4rem rgba(0, 0, 0, 0.45);
}

.menu-main-img img {
  width: 100%;
  display: block;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.menu-main-img.changing img {
  opacity: 0;
  transform: scale(0.96);
}

.menu-thumbnails {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.menu-thumb {
  width: 11rem;
  height: 15rem;
  object-fit: cover;
  border-radius: 1.2rem;
  cursor: pointer;
  opacity: 0.45;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.menu-thumb:hover {
  opacity: 0.8;
  transform: translateY(-0.5rem);
}

.menu-thumb.active {
  opacity: 1;
  border-color: #e6c54d;
  box-shadow: 0 0 1.8rem rgba(230, 197, 77, 0.4);
}

/* ************************ */
/* FIND US SECTION */
/* ************************ */
.find-us-section {
  padding: 9.6rem 0;
}
.find-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4.8rem;
}
.find-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.2rem;
  padding: 3.2rem 6.2rem;
  background-color: #251d03;
  border-radius: 2rem;
}

.title {
  font-size: 2.6rem;
  font-weight: 600;
  letter-spacing: 1px;
}
.find-description {
  display: flex;
  gap: 3.2rem;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 2px;
}
.find-icon {
  width: 4.6rem;
  height: 4.6rem;
  color: #c7a238;
}
.social-icon {
  width: 4.6rem;
  height: 4.6rem;
}
.social a:link,
.social a:visited {
  color: #c7a238;
  transition: all 0.3s ease;
}
.social a:hover,
.social a:active {
  color: #e6c54d;
}
.find-map {
  width: 100%;
  min-height: 45rem;
  border-radius: 2rem;
  overflow: hidden;
}
.find-map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* ************************ */
/* GALLERY SECTION */
/* ************************ */
.gallery-section {
  padding: 9.6rem 0;
}

.gallery-layout {
  display: grid;
  grid-template-columns: 25rem 1fr;
  align-items: center;
  gap: 6.4rem;
}
.gallery-logo-box {
  /* background-color: rebeccapurple; */
  align-self: center;
  justify-self: center;
}

.gallery-logo-box img {
  width: 100%;
  max-width: 22rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 22rem 14rem 22rem;
  gap: 1.6rem;

  grid-template-areas:
    "gal-1 gal-3 gal-5"
    "gal-1 gal-4 gal-6"
    "gal-2 gal-4 gal-7";
}
.gal-1 {
  grid-area: gal-1;
}
.gal-2 {
  grid-area: gal-2;
}
.gal-3 {
  grid-area: gal-3;
}
.gal-4 {
  grid-area: gal-4;
}
.gal-5 {
  grid-area: gal-5;
}
.gal-6 {
  grid-area: gal-6;
}
.gal-7 {
  grid-area: gal-7;
}
.gallery-item {
  position: relative;
  border-radius: 0.4rem;
  overflow: hidden;
}
.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  transition: transform 0.35s ease;
  object-fit: cover;
  object-position: center;
}

.gallery-item:hover img {
  transform: scale(1.04);
}
.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(230, 197, 77, 0.12);
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.gallery-item:hover::before {
  opacity: 0;
}

/* ************************ */
/* REVIEWS SECTION */
/* ************************ */

.reviews-section {
  padding: 9.6rem 0 20rem;
}
.reviews-subtitle {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  color: #fff8ea;
  margin-top: 6.4rem;
  margin-bottom: 5.6rem;
}
.reviews-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  align-items: stretch;
}
.reviews-summary {
  position: relative;

  text-align: center;
  overflow: hidden;
}
.reviews-border {
  border: 2px solid #c7a238;
  padding: 5.6rem 3.2rem 3.2rem;
  border-radius: 2rem;
}

.reviews-corner {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  width: 9rem;
  pointer-events: none;
}
.reviews-score {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: 1.6rem;
}
.score-number {
  font-size: 8.6rem;
  line-height: 1;
  font-weight: 600;
  color: #e6c54d;
}
.score-divider,
.score-total {
  font-size: 4.4rem;
  font-weight: 600;
  color: #fff8ea;
}
.reviews-stars {
  font-size: 3.2rem;
  letter-spacing: 0.4rem;
  color: #e6c54d;
  margin-bottom: 1.2rem;
}
.reviews-based {
  font-size: 1.6rem;
  color: #fff8ea;
  margin-bottom: 2rem;
}

.reviews-line img {
  width: 85%;
  margin: 0 auto 2rem;
}
.google-reviews {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.6rem;
  margin-bottom: 3.2rem;
}
.google-reviews span {
  font-size: 2.4rem;
  color: #e6c54d;
  font-weight: 700;
}

.reviews-btn:link,
.reviews-btn:visited {
  display: inline-block;
  background-color: #c7a238;
  width: 85%;
  padding: 1.6rem 2.4rem;
  border-radius: 0.8rem;
  color: #fff8ea;
  font-size: 2.2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}
.reviews-btn:hover,
.reviews-btn:active {
  background-color: #e6c54d;
}
.see-all-reviews:link,
.see-all-reviews:visited {
  display: inline-block;
  margin-top: 3.2rem;
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff8ea;
  transition: all 0.3s ease;
}
.see-all-reviews:hover,
.see-all-reviews:active {
  color: #c7a238;
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  min-height: 62.2rem;
}
.reviews-card {
  position: relative;
  border: 2px solid #c7a238;
  border-radius: 2rem;
  padding: 2.4rem 3.2rem;
  overflow: hidden;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
  min-height: 3rem;
}
.reviews-card.changing {
  opacity: 0;
  transform: translateY(1.2rem);
}
.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2.4rem;
  margin-bottom: 1.6rem;
}
.reviews-user {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
}
.reviews-user-icon {
  font-size: 3.8rem;
}
.reviews-user h3 {
  font-size: 2.2rem;
  font-weight: 600;
  color: #fff8ea;
  line-height: 1.2;
}
.small-stars {
  font-size: 1.6rem;
  color: #e6c54d;
  letter-spacing: 0.2rem;
  margin-top: 0.4rem;
}
.reviews-date {
  font-size: 1.5rem;
  color: #fff8ea;
  white-space: nowrap;
}
.reviews-text {
  max-width: 65rem;
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: 500;
  color: #fff8ea;
  /* specifid comment length */
  /* display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden; */
}
.quote-icon {
  position: absolute;
  right: 1.2rem;
  bottom: -3.5rem;
  font-size: 8rem;
  line-height: 1;
  color: #e6c54d;
  font-family: serif;
}

/* ************************ */
/* FOOTER */
/* ************************ */
.footer {
  padding: 12.8rem 0 1.6rem;
  border-top: 2px solid #c7a238;
  border-top-left-radius: 2rem;
  border-top-right-radius: 2rem;
  background-color: #251d03;
}
.footer-container {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr 1.2fr;
  gap: 4.8rem;
}
.footer-brand,
.footer-col {
  padding: 0 3.2rem;
}
.footer-col {
  border-left: 1px solid rgba(230, 197, 77, 0.45);
}
.footer-brand {
  text-align: center;
}
/* if needed otherwise it's the same as the nav logo */
/* .footer-logo {
  width: 16rem;
  margin-bottom: 1.2rem;
} */
.footer-logo-name {
  font-size: 2.8rem;
  line-height: 1.2;
}
.footer-under-form {
  display: block;
  width: 10rem;
  margin: 0.6rem auto 1.6rem;
}
.footer-description {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #fff8ea;
  /* max-width: 30rem;
  margin: 0 auto; */
}
.footer-title {
  font-size: 2.8rem;
  font-weight: 500;
  color: #fff8ea;
  text-align: center;
  line-height: 1.2;
}
.footer-title-form {
  display: block;
  width: 10rem;
  margin: 0.8rem auto 3.2rem;
}
.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.footer-list li {
  position: relative;
  padding-left: 2.4rem;
}
.footer-list li::before {
  content: ">";
  position: absolute;
  left: 0;
  color: #e6c54d;
  font-size: 1.6rem;
  line-height: 1;
}
.footer-list a:link,
.footer-list a:visited,
.footer-contact-item a:link,
.footer-contact-item a:visited,
.footer-social-item a:link,
.footer-social-item a:visited {
  color: #fff8ea;
  font-size: 1.4rem;
  transition: all 0.3s ease;
}
.footer-list a:hover,
.footer-list a:active,
.footer-contact-item a:hover,
.footer-contact-item a:active,
.footer-social-item a:hover,
.footer-social-item a:active {
  color: #e6c54d;
}
.footer-contact-item,
.footer-social-item {
  display: flex;
  align-items: flex-start;
  gap: 1.8rem;
  margin-bottom: 2.4rem;
}
.footer-icon,
.footer-social-icon {
  width: 3.2rem;
  height: 3.2rem;
  color: #e6c54d;
  flex-shrink: 0;
}
.footer-label {
  font-size: 1.4rem;
  font-weight: 700;
  color: #e6c54d;
  line-height: 1.3;
}
.footer-contact-item p,
.footer-social-item p {
  font-size: 1.4rem;
  color: #fff8ea;
  line-height: 1.5;
}
.footer-copy {
  text-align: center;
  margin-top: 3.2rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff8ea;
}
/* --- 03 Spacing
    2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 
    / 80 / 96 / 128 */
