:root {
  --foreground-color: #F8F4EF;
  --background-color: #FFFFFF;
  --text-color: #222222;
  --primary: #6B4A2F;
  --secondary: #D4A24C;
  --small-radius: 4px;
  --medium-radius: 8px;
  --large-radius: 16px;
  --text-h1: 56px;
  --text-h2: 48px;
  --text-h3: 40px;
  --text-h4: 32px;
  --text-h5: 24px;
  --text-h6: 20px;
  --text-large: 20px;
  --text-medium: 18px;
  --text-regular: 16px;
  --text-small: 14px;
  --text-tiny: 12px;
}

html{
  background-color: var(--foreground-color);
}
@font-face {
  font-family: "Roboto";
  src: url("../assets/fonts/Roboto-VariableFont_wdth\,wght.ttf") format("woff2");
  font-weight: 400;
  font-style: normal;
}
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}

body {  
  font-family: "Roboto", sans-serif!important;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  margin: 0;
  padding: 0;
  padding-top: 72px;
  color: var(--text-color);
  background-color: var(--background-color);
  max-width: 1440px;
  margin: 0 auto;
}

h1 {
  font-size: clamp(34px, 5.5vw, 56px);
  font-weight: 800;
  line-height: 118%;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(24px, 3.8vw, 48px);
  font-weight: bold;
}

h3 {
  font-size: clamp(22px, 3.2vw, 40px);
}

h4 {
  font-size: clamp(20px, 2.8vw, 32px);
}

h5 {
  font-size: clamp(18px, 2.4vw, 24px);
}

h6 {
  font-size: clamp(16px, 2vw, 20px);
}

.text-large {
  font-size: var(--text-large);
}

.text-medium {
  font-size: var(--text-medium);
}

.text-regular {
  font-size: var(--text-regular);
  line-height: 180%;
}

.text-small {
  font-size: var(--text-small);
}

.text-tiny {
  font-size: var(--text-tiny);
}

.font-extra-bold {
  font-weight: 800;
}
.font-bold {
  font-weight: bold;
}
.font-medium {
  font-weight: 500;
}
.font-regular {
  font-weight: normal;
}
.font-light {
  font-weight: 300;
}

.text-primary {
  color: var(--primary);
}
.text-secondary {
  color: var(--secondary);
}

.logo img {
  /* width: 140px; */
  height: 52px;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.btn,
a.btn {
  display: inline-flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  gap: 12px !important;
  padding: 12px 24px !important;
  border-radius: var(--medium-radius) !important;
  font-size: var(--text-regular) !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  text-decoration: none !important;
  transition: all 0.2s ease-in-out !important;
  box-sizing: border-box !important;
  line-height: 1.2 !important;
}

.btn-small,
a.btn-small {
  padding: 8px 18px !important;
  font-size: 14px !important;
}

.btn:hover,
a.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0px 4px 12px rgba(107, 74, 47, 0.25) !important;
}

.btn-primary,
a.btn-primary {
  background-color: var(--primary) !important;
  color: #FFFFFF !important;
  border: 1px solid var(--primary) !important;
}

.btn-primary:hover,
a.btn-primary:hover {
  background-color: #553A24 !important;
  color: #FFFFFF !important;
}

.btn-secondary,
a.btn-secondary {
  color: var(--text-color) !important;
  background-color: transparent !important;
  border: 1px solid var(--primary) !important;
  border-radius: var(--medium-radius) !important;
  font-size: var(--text-regular) !important;
  font-weight: 600 !important;
}

.btn-secondary:hover,
a.btn-secondary:hover {
  background-color: var(--primary) !important;
  color: #FFFFFF !important;
}

.btn-leading::before,
a.btn-leading::before,
.btn-trailing::after,
a.btn-trailing::after {
  content: "" !important;
  display: inline-flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex-shrink: 0 !important;
  width: 22px !important;
  height: 22px !important;
}

.btn-icon-whatsapp::before,
a.btn-icon-whatsapp::before {
  background: url("../assets/icons/Whatsapp.svg") center / contain no-repeat !important;
}

.btn-icon-whatsapp-white::before,
a.btn-icon-whatsapp-white::before {
  background: url("../assets/icons/Whatsapp_white.svg") center / contain no-repeat !important;
}

.btn-icon-arrow-down::after,
a.btn-icon-arrow-down::after {
  background: url("../assets/icons/arrow_downward.svg") center / contain no-repeat !important;
}

.btn-icon-euro::after,
a.btn-icon-euro::after,
.btn-icon-euro-black::after,
a.btn-icon-euro-black::after {
  background: url("../assets/icons/euro.svg") center / contain no-repeat !important;
}

a {
  position: relative;
  text-decoration: none;
}

a:not(.logo):not(.btn):not(.share-btn):not(.post-card-thumb):not(.post-card-link)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: currentColor;

  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

a:not(.logo):not(.btn):not(.share-btn):not(.post-card-thumb):not(.post-card-link):hover::after {
  transform: scaleX(1);
}










/* Micro Animations */

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.7s ease;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-25px);
  transition: all 0.7s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(25px);
  transition: all 0.7s ease;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  transition: all 0.7s ease;
}

.visible {
  opacity: 1;
  transform: translate(0) scale(1);
}




img {
  position: relative;
  overflow: hidden;
}

img.shine {
  animation: shine 0.4s ease-out;
}

@keyframes shine {
  0% {
    filter: brightness(1);
  }

  40% {
    filter: brightness(1.1);
  }

  100% {
    filter: brightness(1);
  }
}



.image-shine {
  position: relative;
  overflow: hidden;
}

.image-shine::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );
  transform: skewX(-20deg);
}

.image-shine.shine::after {
  animation: imageShine 0.8s ease-out;
}

@keyframes imageShine {
  from {
    left: -100%;
  }

  to {
    left: 150%;
  }
}