html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", sans-serif;
}

body {
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

/* ---------- HEADER SECTION ---------- */
.header {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  background-color: #fff7ed;
  position: relative;
  height: 8rem;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 7.2rem;
}

.logo {
  height: 8rem;
  padding: 1.2rem 0;
}

.main-nav-list {
  display: flex;
  list-style: none;
  align-items: center;
  font-size: 1.8rem;
  gap: 4.8rem;
  font-weight: 400;
}

.main-nav-link:link,
.main-nav-link:visited {
  color: #4a4a4a;
  transition: all 0.3s;
  border-bottom: #fff7ed 2px solid;
}

.main-nav-link:active,
.main-nav-link:hover {
  color: #001e14;
  border-bottom: #003324 2px solid;
}

.main-nav-link--active:link,
.main-nav-link--active:visited {
  color: #001e14;
  font-weight: 600;
}

.btn-mobile-nav {
  background: none;
  border: none;
  cursor: pointer;
  display: none;
}

.icon-mobile-nav {
  height: 4.8rem;
  width: 4.8rem;
  color: #001e14;
}

.icon-mobile-nav[name="close-outline"] {
  display: none;
}

.sticky .header {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  background-color: #fff7edfb;
  padding-top: 0;
  padding-bottom: 0;
  height: 8rem;
  z-index: 5;
}

/* ---------- HERO SECTION ---------- */

.hero-section {
  padding-top: 8rem;
  padding-bottom: 10rem;
  background-color: #fff7ed;
}

.sticky .hero-section {
  margin-top: 8rem;
}

.sticky .section-banner {
  margin-top: 8rem;
}

.hero-section-container {
  max-width: 150rem;
  margin: 0 auto;
  padding: 0 4rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 6rem;
  position: relative;
}

.hero-section-text {
  max-width: 60rem;
  animation: slideInLeft 0.8s ease-out;
}

.hero-badge {
  display: inline-block;
  background: #c89b3c;
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 5rem;
  font-size: 1.4rem;
  letter-spacing: 1px;
  margin-bottom: 1.8rem;
  font-weight: 600;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(200, 155, 60, 0.25);
}

.hero-heading {
  font-size: 6.4rem;
  line-height: 1.05;
  color: #001e14;
  margin-bottom: 2.4rem;
}

.hero-para {
  font-family: "Inter", sans-serif;
  font-size: 2.2rem;
  color: #47524b;
  margin-bottom: 4rem;
  line-height: 1.5;
}

.btn-hero-primary {
  background: #c89b3c;
  color: white;
  padding: 1.6rem 2.6rem;
  font-size: 1.6rem;
  border-radius: 0.8rem;
  font-weight: 600;
  transition: 0.25s ease;
  margin-right: 1.2rem;
  box-shadow: 0 4px 12px rgba(200, 155, 60, 0.3);
}

.btn-hero-primary:hover {
  background: #b38935;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(200, 155, 60, 0.4);
}

.btn-hero-secondary {
  box-shadow: inset 0 0 0 2px #001e14;
  color: #001e14;
  padding: 1.6rem 2.6rem;
  font-size: 1.6rem;
  border-radius: 0.8rem;
  font-weight: 600;
  transition: 0.25s ease;
}

.btn-hero-secondary:hover {
  background: #001e14;
  color: white;
}

.hero-section-image-box {
  position: relative;
  width: 55rem;
  height: 55rem;
  border-radius: 2.4rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
  animation: slideInRight 0.8s ease-out;
}

.hero-section-img {
  width: 100%;
  height: 100%;
  transform: scale(1.12);
}

.banner-section-container {
  background-color: #001e14;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
}

.banner-text {
  color: #f3e2cd;
  font-size: 2rem;
  font-weight: 500;
  height: 6.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ---------- WHY US SECTION ---------- */

.whyus-section-container {
  max-width: 150rem;
  margin: 0 auto;
}

.box-icon {
  width: 3.2rem;
}

.box-background {
  background-color: #c89c3c76;
  height: 5rem;
  width: 5rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.2rem;
}

.whyus-section {
  padding: 8rem 4rem;
  background-color: #ffffff;
}

.whyus-heading {
  font-size: 3.2rem;
  text-align: center;
  margin-bottom: 1.6rem;
  font-weight: 500;
  color: #001e14;
}

.whyus-para {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 4.8rem;
  color: #585858;
}

.whyus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.2rem;
}

.whyus-box {
  background-color: #fffaf4;
  border-radius: 1.4rem;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.box-heading {
  font-size: 2.8rem;
  margin-bottom: 1.2rem;
  color: #001e14;
}

.box-para {
  font-size: 1.5rem;
  color: #47524b;
  text-align: center;
  max-width: 35rem;
}

/* ---------- Burek Section ---------- */

.products-section {
  background-color: #f3eee7;
  padding: 5.2rem 3.8rem;
}

.products-container {
  max-width: 140rem;
  margin: 0 auto;
}

.products-heading {
  font-size: 3.2rem;
  font-weight: 600;
  color: #001e14;
  text-align: center;
  margin-bottom: 1.2rem;
}

.products-para {
  font-size: 1.7rem;
  color: #47524b;
  text-align: center;
  line-height: 1.4;
}

.products-grid {
  margin-top: 7.2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 2.6rem;
}

.products-box {
  position: relative;
}

.products-textbox-heading::after {
  content: "";
  display: block;
  margin: 1rem auto 0 auto;
  width: 40%;
  height: 2px;
  background: linear-gradient(to right, transparent, #d6b676, transparent);
}

.products-img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.4rem;
}

.products-img {
  width: 70%;
  height: 25rem;
  transition: transform 0.3s ease;
  border-radius: 1rem;
  border: 3px solid #d6b676;
}

.products-textbox-heading {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: #003324;
  text-align: center;
}

/* ---------- VISIT TODAY SECTION ---------- */

.cta-section {
  padding: 9.6rem 0;
  background-color: #faf8f4;
}

.cta-container {
  max-width: 150rem;
  margin: 0 auto;
  background: linear-gradient(135deg, #001e14 0%, #003324 100%);
  border-radius: 1.2rem;
  padding: 4.8rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 30, 20, 0.2);
}

.cta-heading {
  font-size: 3.2rem;
  color: #fff;
  text-align: center;
  font-weight: 500;
  margin-bottom: 1.8rem;
}

.cta-para {
  color: #e9d9c0;
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 4.2rem;
}

.cta-btn {
  color: #001e14;
  background-color: #c89b3c;
  display: inline-block;
  padding: 1.4rem 2.4rem;
  border-radius: 8px;
  font-size: 1.6rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(200, 155, 60, 0.3);
}

.cta-btn:hover {
  background-color: #b38935;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(200, 155, 60, 0.4);
}

/* ---------- FOOTER SECTION ---------- */
.footer {
  background-color: #001e14;
  padding: 12.8rem 0;
}

.footer-container {
  max-width: 150rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: #e9d9c0;
}

.footer-logo-box {
  max-width: 40rem;
}

.footer-para {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-top: 2.4rem;
}

.footer-links-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  margin-top: 1.2rem;
}

.footer-header {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.footer-subheader {
  font-size: 2.4rem;
  color: #e9d9c0;
  margin-top: 2.4rem;
  margin-bottom: 1.6rem;
  font-weight: 600;
}

.footer-link {
  font-size: 1.6rem;
  color: #e9d9c0;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #d4a373;
}

.footer-logo {
  width: 10rem;
}

.footer-contact-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1rem;
}

.footer-contact-icon {
  width: 2.4rem;
  height: 2.4rem;
  stroke: #c89b3c;
}

.footer-contact-text {
  font-size: 1.4rem;
  color: #e9d9c0;
}

/* PROCESS SECTION */

.process-section {
  padding: 9.6rem 4rem;
  background-color: #fff;
}

.process-container {
  max-width: 130rem;
  margin: 0 auto;
}

.process-heading {
  font-size: 3.6rem;
  text-align: center;
  color: #001e14;
  margin-bottom: 1.6rem;
  font-weight: 600;
}

.process-para {
  font-size: 1.8rem;
  text-align: center;
  color: #585858;
  margin-bottom: 6.4rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.2rem;
}

.process-step {
  position: relative;
  text-align: center;
  transition: transform 0.3s ease;
}

.process-step:hover {
  transform: translateY(-8px);
}

.process-number {
  position: absolute;
  top: -1.6rem;
  left: 50%;
  transform: translateX(-50%);
  width: 5.6rem;
  height: 5.6rem;
  background: linear-gradient(135deg, #c89b3c 0%, #b38935 100%);
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(200, 155, 60, 0.3);
  z-index: 1;
}

.process-img-box {
  width: 100%;
  height: 24rem;
  border-radius: 1.6rem;
  overflow: hidden;
  margin-bottom: 2.4rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.process-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.process-step:hover .process-img {
  transform: scale(1.05);
}

.process-title {
  font-size: 2rem;
  color: #001e14;
  margin-bottom: 1.2rem;
  font-weight: 600;
}

.process-description {
  font-size: 1.5rem;
  color: #4b4b4b;
  line-height: 1.6;
}

.info-para a,
.location-phone a,
.footer-contact-text a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.info-para a:hover,
.location-phone a:hover,
.footer-contact-text a:hover {
  color: #d4a574;
}

/* PIES SECTION */
.pies-section {
  padding: 9.6rem 4rem;
  background: linear-gradient(180deg, #ffffff 0%, #faf8f4 100%);
}

.pies-container {
  max-width: 140rem;
  margin: 0 auto;
}

.pies-heading {
  font-size: 3.6rem;
  text-align: center;
  color: #001e14;
  margin-bottom: 1.6rem;
  font-weight: 600;
}

.pies-para {
  font-size: 1.8rem;
  text-align: center;
  color: #585858;
  margin-bottom: 6.4rem;
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto;
}

.pies-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.2rem;
  margin-top: 6.4rem;
}

.pie-card {
  position: relative;
  background: #fff;
  border-radius: 1.6rem;
  overflow: visible;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.pie-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.pie-card-inner {
  position: relative;
  width: 100%;
  height: 32rem;
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.pie-card:hover .pie-card-inner {
  transform: rotateY(180deg);
  cursor: pointer;
}

.pie-card-front,
.pie-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 1.6rem 1.6rem 0 0;
  overflow: hidden;
}

.pie-card-back {
  transform: rotateY(180deg);
}

.pie-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.pie-card:hover .pie-img {
  transform: scale(1.05);
}

.pie-flip-hint {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.pie-flip-hint::after {
  content: "→";
  font-size: 1.8rem;
}

.pie-info {
  padding: 2rem 1.6rem 2.4rem;
  text-align: center;
  background: #fff;
  border-radius: 0 0 1.6rem 1.6rem;
}

.pie-name {
  font-size: 2.2rem;
  color: #001e14;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.pie-description {
  font-size: 1.4rem;
  color: #6b7b73;
  line-height: 1.5;
}

.pie-toggle-mobile {
  display: none;
  position: absolute;
  bottom: 1.6rem;
  right: 1.6rem;
  background: #c89b3c;
  border: none;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(200, 155, 60, 0.3);
  transition: all 0.3s ease;
  z-index: 2;
}

.pie-toggle-mobile svg {
  width: 2rem;
  height: 2rem;
  color: #fff;
}

.pie-toggle-mobile:active {
  transform: scale(0.95);
}
