:root {
  --background-color: #fdfaf6;
  --secondary-background-color: #f1eae1;
  --highlight-color: #d89a16;
  --light-color: #fffdf9;
  --dark-color: #2e2a26;
  --color: #3b342e;
  --button-color: #a76b0e;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-family: "Merriweather", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
  font-size: 16px;
}

* {
  margin: 0;
  padding: 0;
}

html, body {
  position: relative;
}

body {
  background-color: var(--background-color);
  color: var(--color);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, button {
  font-family: "Quicksand", sans-serif;
}

h1 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
}

section {
  min-height: 90vh;
  padding: 2rem 1rem;
}

.cta-button {
  display: inline-block;
  padding: 0.9rem 1.6rem;
  background-color: var(--highlight-color);
  color: #fff;
  font-weight: 600;
  border-radius: 2rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: var(--button-color);
}

.highlight-text {
  font-weight: 600;
  color: var(--highlight-color);
}

section.hero {
  padding: 0;
  height: 100vh;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  background-color: var(--highlight-color);
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  max-width: 400px;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(216, 154, 22, 0) 60%, rgba(216, 154, 22, 1) 100%);
  pointer-events: none;
}

.hero-container {
  height: 100%;
  min-width: 80%;
  color: #fdfaf6;
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 1rem;
  max-width: 400px;
}

.hero-container h1 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
}

.hero-container h2 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

@media screen and (min-width: 768px) {
  .hero-container {
    min-width: unset;
  }
}

section.why {
  background-color: var(--background-color);
  color: var(--color);
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
}

.why-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1000px;
  gap: 2rem;
}

.why-container {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why h2 {
  font-size: 2rem;
  font-weight: 700;
}

.why p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.why-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 1rem;
  object-fit: cover;
}

section.how {
  background-color: var(--secondary-background-color);
  color: var(--color);
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
}

.how-container {
  max-width: 800px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.how h2 {
  font-size: 2rem;
  font-weight: 700;
}

.how p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.how-bg-wrapper {
  width: 300px;
  height: 125px;
  overflow: hidden
}

.how-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

section.products {
  background-color: var(--background-color);
  color: var(--color);
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
}

.products-container {
  max-width: 1100px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.product-gallery {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.product-card {
  background-color: var(--light-color);
  border-radius: 1rem;
  padding: 1rem;
  max-width: 300px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.product-card h3 {
  margin: 0.8rem 0 0.4rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.product-meta {
  font-size: 0.9rem;
  color: #777;
  margin-top: 0.5rem;
}

.product-price {
  font-weight: 600;
  margin-top: 0.3rem;
  color: var(--highlight-color);
}

section.contact {
  min-height: 100%;
  padding: 8rem 0rem;
  background-color: var(--secondary-background-color);
  color: var(--color);
  display: flex;
  justify-content: center;
}

.contact-container {
  max-width: 700px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.contact-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.site-footer {
  background-color: var(--secondary-background-color);
  color: var(--color);
  text-align: center;
  padding: 2rem 1.5rem;
  font-size: 0.9rem;
  line-height: 1.6;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.site-footer p {
  margin: 0.5rem 0;
}
