/************************************/
/* HEADER SECTION */
/************************************/

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;

  background-color: #f6f1ec;
  height: 9.6rem;
  padding: 0 4.8rem;
}

.logo {
  height: 6.4rem;
}

/************************************/
/* NAVIGATION SECTION */
/************************************/

.nav-list {
  display: flex;
  align-items: center;
  gap: 3.2rem;

  font-size: 2rem;
  font-weight: 500;
  list-style: none;
}

.nav-link:link,
.nav-link:visited {
  display: inline-block;
  text-decoration: none;
  color: #333;
}

.nav-link:hover,
.nav-link:active {
  color: #a17444;
}

.nav-btn:link,
.nav-btn:visited {
  background-color: #a17444;
  padding: 1.2rem 2.4rem;
  color: #fff;
  border-radius: 9px;
  font-size: 1.8rem;
}

.nav-btn:hover,
.nav-btn:active {
  background-color: #815d36;
}

.nav-link,
.nav-btn {
  transition: 0.2s all;
}

/* MOBILE */
.btn-mobile-nav {
  border: none;
  background: none;
  cursor: pointer;

  display: none;
}

.icon-mobile-nav {
  height: 4.8rem;
  width: 4.8rem;
  color: #333;
}

.icon-mobile-nav[name="close-outline"] {
  display: none;
}

.sticky .header {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  padding: 0 auto;
  height: 9.6rem;
  background-color: rgba(255, 255, 255, 0.95);
  z-index: 20;
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.03);
}

.sticky .section-hero {
  margin-top: 9.6rem;
}

/************************************/
/* HERO SECTION */
/************************************/

.section-hero {
  background-color: #f6f1ec;
  padding: 4.8rem 0 9.6rem;
}

.main-title {
  font-size: 6.2rem;
  text-align: center;
  margin-bottom: 4.8rem;
}

.hero {
  max-width: 130rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9.6rem;
  align-items: center;
  margin: 0 auto;
}

.hero-text {
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.6;
  margin: 3.2rem 0 4.8rem;
}

.hero-img {
  width: 100%;
  align-content: center;
  justify-content: center;
  border-radius: 13px;
}

/************************************/
/* WHO ARE WE SECTION */
/************************************/

.section-waw {
  padding: 9.6rem 0 9.6rem;
}

.waw-text-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.waw-step {
  font-size: 6.2rem;
  font-weight: 500;
  color: #ddd;
  margin-bottom: 1.2rem;
}

.waw-heading {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #333;
  margin-bottom: 2.4rem;
}

.waw-text {
  font-size: 1.7rem;
  line-height: 1.8;
  color: #555;
}

.waw-img-box {
  overflow: hidden;
  border-radius: 11px;
}

.waw-img {
  transition: all 0.4s ease;
}

.img-location:hover,
.waw-img:hover {
  transform: scale(1.04);
  cursor: pointer;
}

.location-link:link,
.location-link:visited {
  text-decoration: none;
  color: #a17444;
  transition: all 0.1s;
}

.location-link:hover,
.location-link:active {
  border-bottom: 1.5px solid #815d36;
  color: #815d36;
}

.location-img-link {
  z-index: 400;
}

/************************************/
/* TESTIMONIALS SECTION */
/************************************/

.section-testimonials {
  padding: 4.8rem 0 9.6rem;
}

.testimonials {
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);
  padding: 2.4rem;
  border-radius: 9px;
  transition: 0.3s all;
  color: #555;
}
.testimonials:hover {
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.15);
  transform: translateY(-1.2rem);
  color: #333;
}

.testimonial-img {
  height: 6.4rem;
  border-radius: 50%;
  margin-bottom: 1.6rem;
  display: block;
}

.testimonial-text {
  font-size: 1.8rem;
  line-height: 1.6;
  margin-bottom: 1.6rem;
}

.testimonial-name {
  font-size: 1.4rem;
  color: #555;
  text-align: right;
}

/* REVIEW FORM */

.review-form {
  width: 100%;
  padding: 4.8rem !important;
  background-color: #a17444;
  border-radius: 15px;
}

.form-heading {
  font-size: 3.6rem;
  font-weight: 700;
  margin-bottom: 3.2rem;
  color: #20170e;
}

.review-form input:focus {
  outline: none;
  box-shadow: 0 0 0 0.25rem rgba(253, 242, 233, 0.5);
}

.form-parts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.2rem 3.2rem;
}

.form-label {
  color: #20170e;
  display: inline-block;
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  font-weight: 500;
  font-family: inherit;
}

.form-input {
  color: #20170e;
  font-size: 1.8rem;
  width: 100%;
  padding: 1.2rem;
  font-family: inherit;
  border: none;
  border-radius: 11px;
}

.form-input::placeholder {
  color: #aaa;
}

.review-input {
  grid-column: 1/3;
}

.btn--form {
  grid-column: 3/3;
  font-size: 2rem;
  background-color: #20170e;
  color: #fdf2e9;
  align-self: end;
  padding: 1.2rem;
  border-radius: 11px;
  transition: 0.2s;
  border: none;
  font-weight: 600;
}

.btn--form:hover {
  background-color: #fff;
  color: #555;
}

.form-parts div {
  display: inline-block;
}

/************************************/
/* BREADS SECTION */
/************************************/

.section-breads {
  padding: 9.6rem 0 9.6rem;
  background-color: #f6f1ec;
}

.bread {
  border-radius: 9px;
  overflow: hidden;
  box-shadow: 0 1.6rem 4rem rgba(0, 0, 0, 0.075);
  background-color: #fff;
  transition: 0.3s all;
  color: #555;
}

.bread:hover {
  box-shadow: 0 1.6rem 4rem rgba(0, 0, 0, 0.15);
  transform: translateY(-1.2rem);
  color: #333;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8rem 4.8rem;
}

.bread-img {
  width: 100%;
  display: block;
  margin-bottom: 2.4rem;
}

.bread-desc {
  padding: 1.6rem 2.4rem 2.4rem;
}

.bread-title {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.bread-text {
  font-size: 1.6rem;
  line-height: 1.6;
}

/************************************/
/* SWEETS AND SALTIES SECTION */
/************************************/

.section-others {
  padding: 9.6rem 0 9.6rem;
}

.section-others:last-child {
  padding: 0 0 9.6rem;
}

.gallery-sweets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6.4rem 4.8rem;
  font-family: "rubik", sans-serif;
}

.gallery-salties {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6.4rem 4.8rem;
  font-family: "rubik", sans-serif;
}

.sweets,
.salties {
  width: 100%;
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);
  border-radius: 9px;
  position: relative;
  border-radius: 9px;
  overflow: hidden;
  transition: 0.3s all ease;
}

.sweets:hover,
.salties:hover {
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.2);
}

.sweets-img,
.salties-img {
  width: 100%;
  height: 100%;
}

.sweets-text,
.salties-text {
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  font-size: 2.4rem;
  font-family: "rubik";
  font-weight: 600;
  text-align: center;
  background-color: rgba(129, 93, 54, 0.6);
  color: #fdf2e9;

  opacity: 0;
}

.sweets-text:hover,
.salties-text:hover {
  opacity: 1;
}

.sweets-text:hover > .sweets,
.salties-text:hover > .salties {
  opacity: 0.5;
}

/************************************/
/* FOOTER SECTION */
/************************************/

.section-footer {
  padding: 6.4rem 0 9.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
  color: #777;
}

/* .footer-img {
  width: 7%;
  margin: 0 auto;
}

.footer-logo {
  width: 100%;
} */

.footer-social-media {
  color: #555;
  font-size: 3.2rem;
  transition: all 0.3s;
}

.footer-social-media:hover {
  color: #a17444;
}

.footer-ul {
  list-style: none;
  font-size: 1.6rem;

  display: flex;
  flex-direction: row;
  gap: 4rem;
}

.footer-link:link,
.footer-link:visited {
  text-decoration: none;
  color: #555;
  transition: all 0.3s;
}

.footer-link:hover,
.footer-link:active {
  color: #a17444;
}
