@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap");

:root {
  --main-color: #5a3520;
  --cream: #fff7ea;
  --cream-strong: #f7dfbd;
  --gold: #d99a3d;
  --green-whatsapp: #25d366;
  --soft-shadow: rgba(90, 53, 32, 0.12);
  --border-radius: 95% 4% 97% 5% / 4% 94% 3% 95%;
  --border-radius-hover: 4% 95% 6% 95% / 95% 4% 92% 5%;
  --border: 0.2rem solid var(--main-color);
  --border-hover: 0.2rem dashed var(--main-color);
}

* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  transition: all 0.2s linear;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-padding-top: 7rem;
  scroll-behavior: smooth;
}

body {
  color: var(--main-color);
  background: #fff;
}

section {
  padding: 2rem 9%;
}

.heading {
  font-size: 9rem;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 0.05rem var(--main-color);
  letter-spacing: 0.2rem;
  text-align: center;
  pointer-events: none;
  position: relative;
}

.heading span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  color: var(--main-color);
  font-size: 3rem;
  text-transform: none;
}

.btn {
  display: inline-block;
  padding: 0.9rem 1.5rem;
  border: var(--border);
  border-radius: var(--border-radius);
  color: var(--main-color);
  background: none;
  cursor: pointer;
  margin-top: 1rem;
  font-size: 1.7rem;
}

.btn i {
  padding-right: 0.5rem;
}

.btn:hover {
  border-radius: var(--border-radius-hover);
  border: var(--border-hover);
  background: rgba(255, 247, 234, 0.7);
}

/* HEADER */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  background: var(--cream);
  box-shadow: 0 0.5rem 1rem var(--soft-shadow);
  padding: 2rem 9%;
}

.header .logo {
  color: var(--main-color);
  font-size: 2.6rem;
  font-weight: 600;
}

.header .logo i {
  padding-left: 0.5rem;
  color: var(--gold);
}

.header .navbar a {
  margin: 0 1rem;
  font-size: 1.7rem;
  color: var(--main-color);
}

.header .navbar a:hover {
  color: var(--gold);
}

.header .btn {
  margin-top: 0;
}

#menu-btn {
  font-size: 3rem;
  color: var(--main-color);
  cursor: pointer;
  display: none;
}

/* HOME */

.home {
  min-height: 100vh;
  padding-top: 12rem;
  background: url(../image/home-bg.png) no-repeat;
  background-position: center;
  background-size: cover;
}

.home .row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.home .row .content {
  flex: 1 1 42rem;
}

.home .row .content .eyebrow {
  display: inline-block;
  font-size: 1.7rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.1rem;
  margin-bottom: 1rem;
}

.home .row .content p {
  font-size: 1.7rem;
  line-height: 1.8;
  color: var(--main-color);
  max-width: 55rem;
  padding: 1rem 0;
}

.home .row .image {
  flex: 1 1 42rem;
  padding-top: 10rem;
  text-align: center;
}

.home .row .image img {
  height: 35rem;
  animation: float 4s linear infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0rem);
  }

  50% {
    transform: translateY(-7rem);
  }
}

.home .row .content h3 {
  font-size: 6.5rem;
  color: var(--main-color);
  text-transform: uppercase;
  line-height: 1.2;
}

.home .image-slider {
  text-align: center;
  padding: 3rem 0;
}

.home .image-slider img {
  height: 9rem;
  margin: 0 0.5rem;
  cursor: pointer;
  margin-top: 5rem;
}

.home .image-slider img:hover {
  transform: translateY(-2rem);
}

/* ABOUT */

.about .row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.about .row .image {
  flex: 1 1 42rem;
}

.about .row .image img {
  width: 100%;
  animation: aboutImage 4s linear infinite;
}

@keyframes aboutImage {
  0%,
  100% {
    transform: scale(0.9);
    border-radius: var(--border-radius-hover);
  }

  50% {
    transform: scale(0.8);
    border-radius: var(--border-radius);
  }
}

.about .row .content {
  flex: 1 1 42rem;
}

.about .row .content .title {
  color: var(--main-color);
  font-size: 3rem;
  line-height: 1.8;
}

.about .row .content p {
  color: var(--main-color);
  font-size: 1.5rem;
  line-height: 1.8;
  padding: 1rem 0;
}

.about .row .content .icons-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 3rem;
}

.about .row .content .icons-container .icons {
  flex: 1 1 15rem;
  padding: 1.5rem;
  text-align: center;
  border: var(--border);
  border-radius: var(--border-radius);
  background: rgba(255, 247, 234, 0.55);
}

.about .row .content .icons-container .icons img {
  height: 5rem;
}

.about .row .content .icons-container .icons h3 {
  font-size: 1.7rem;
  padding-top: 1rem;
  color: var(--main-color);
}

/* MENU */

.menu {
  background: url(../image/menu-bg.jpg) no-repeat;
  background-position: center;
  background-size: cover;
}

.menu .box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.menu .box-container .box {
  flex: 1 1 42rem;
  padding: 2rem;
  border: var(--border);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: 6rem;
  background: rgba(255, 247, 234, 0.5);
}

.menu .box-container .box:hover {
  border: var(--border-hover);
  border-radius: var(--border-radius-hover);
  background: rgba(255, 247, 234, 0.85);
}

.menu .box-container .box img {
  height: 8rem;
  margin-left: -6rem;
}

.menu .box-container .box .content h3 {
  font-size: 2.2rem;
  color: var(--main-color);
  line-height: 1.8;
}

.menu .box-container .box .content p {
  font-size: 1.6rem;
  color: var(--main-color);
  line-height: 1.8;
  padding: 1rem 0;
}

.menu .box-container .box .content span {
  font-size: 2rem;
  color: var(--gold);
  line-height: 1.8;
  font-weight: 600;
}

/* REVIEW */

.review .review-slider {
  padding: 7rem 0;
}

.review .review-slider .box {
  border: var(--border);
  border-radius: var(--border-radius);
  text-align: center;
  position: relative;
  z-index: 0;
  padding: 2rem;
  background: #fff;
}

.review .review-slider .box .fa-quote-left {
  position: absolute;
  top: 2rem;
  left: 2.5rem;
  font-size: 6rem;
  color: #ccc;
  z-index: -1;
}

.review .review-slider .box .fa-quote-right {
  position: absolute;
  bottom: 2rem;
  right: 2.5rem;
  font-size: 6rem;
  color: #ccc;
  z-index: -1;
}

.review .review-slider .box:hover .fa-quote-left {
  top: -6.5rem;
}

.review .review-slider .box:hover .fa-quote-right {
  bottom: -6.5rem;
}

.review .review-slider .box img {
  height: 7rem;
  width: 7rem;
  border-radius: 50%;
  margin-bottom: 0.7rem;
}

.review .review-slider .box .stars {
  padding: 0.5rem 0;
}

.review .review-slider .box .stars i {
  font-size: 1.7rem;
  color: var(--gold);
}

.review .review-slider .box p {
  font-size: 1.6rem;
  color: var(--main-color);
  padding: 1rem 0;
  line-height: 1.8;
}

.review .review-slider .box h3 {
  font-size: 2.2rem;
  color: var(--main-color);
  line-height: 1.8;
}

.review .review-slider .box span {
  font-size: 1.5rem;
  color: var(--main-color);
}

.swiper-pagination-bullet {
  height: 1.5rem;
  width: 1.5rem;
  border-radius: 0;
}

.swiper-pagination-bullet-active {
  background: var(--main-color);
}

/* CONTACT */

.contact {
  background: url(../image/book-bg.jpg);
  background-position: center;
  background-size: cover;
}

.contact .contact-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.contact-card,
.map-card {
  border: var(--border);
  border-radius: var(--border-radius-hover);
  background: rgba(255, 247, 234, 0.9);
  overflow: hidden;
  box-shadow: 0 0.8rem 2rem var(--soft-shadow);
}

.contact-card {
  padding: 3rem;
  text-align: center;
}

.contact-card .whatsapp-icon {
  width: 8rem;
  height: 8rem;
  margin: 0 auto 1.5rem auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-whatsapp);
  color: #fff;
  font-size: 4.5rem;
  box-shadow: 0 0.8rem 2rem rgba(37, 211, 102, 0.25);
}

.contact-card h3 {
  font-size: 3rem;
  color: var(--main-color);
  line-height: 1.4;
}

.contact-card p {
  font-size: 1.6rem;
  color: var(--main-color);
  line-height: 1.8;
  padding: 1rem 0;
}

.contact-card .contact-info {
  margin-top: 2rem;
  text-align: left;
}

.contact-card .contact-info p {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.6rem 0;
}

.contact-card .contact-info i {
  color: var(--gold);
  min-width: 2rem;
  text-align: center;
}

.contact-card .contact-info a {
  color: var(--main-color);
  font-weight: 600;
}

.contact-card .contact-info a:hover {
  color: var(--gold);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 42rem;
  display: block;
}

/* FOOTER */

.footer .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(23rem, 1fr));
  gap: 1.5rem;
}

.footer .box-container .box h3 {
  font-size: 2.5rem;
  padding: 1rem 0;
  color: var(--main-color);
}

.footer .box-container .box a {
  display: block;
  font-size: 1.5rem;
  padding: 1rem 0;
  color: var(--main-color);
}

.footer .box-container .box a i {
  padding-right: 0.5rem;
}

.footer .box-container .box a:hover {
  color: var(--gold);
}

.footer .box-container .box a:hover i {
  padding-right: 2rem;
}

.footer .credit {
  text-align: center;
  font-size: 2rem;
  padding: 2rem 1rem;
  margin-top: 1rem;
  color: var(--main-color);
}

.footer .credit span {
  border-bottom: var(--border-hover);
}

.whatsapp-float {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: var(--green-whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.3rem;
  z-index: 999;
  box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.22);
  animation: pulseWhatsApp 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

@keyframes pulseWhatsApp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45);
  }

  70% {
    box-shadow: 0 0 0 1.5rem rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* MEDIA QUERIES */

@media (max-width: 991px) {
  html {
    font-size: 55%;
  }

  .header {
    padding: 3rem;
  }

  section {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .heading {
    font-size: 6rem;
  }

  .heading span {
    font-size: 2.3rem;
  }

  #menu-btn {
    display: initial;
  }

  #menu-btn.fa-times {
    transform: rotate(180deg);
  }

  .header .navbar {
    position: absolute;
    top: 99%;
    left: 0;
    right: 0;
    background: var(--cream);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }

  .header .navbar.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  .header .navbar a {
    display: block;
    font-size: 2.2rem;
    margin: 0;
    padding: 1.5rem 2rem;
  }

  .home {
    text-align: center;
  }

  .home .row .content p {
    margin: 0 auto;
  }

  .home .row .content h3 {
    font-size: 4rem;
  }

  .menu .box-container .box {
    margin-left: 0;
    margin-top: 6rem;
    flex-flow: column;
    text-align: center;
  }

  .menu .box-container .box img {
    margin-left: 0;
    margin-top: -6rem;
  }

  .contact-card .contact-info {
    text-align: center;
  }

  .contact-card .contact-info p {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 450px) {
  html {
    font-size: 50%;
  }

  .home .row .image img {
    height: auto;
    width: 100%;
  }

  .header .btn {
    display: none;
  }

  .whatsapp-float {
    width: 5.5rem;
    height: 5.5rem;
    font-size: 3rem;
  }
}
