:root {
  --color-bg: #f8f6f2;
  --color-text: #2c2621;
  --color-text-light: #f8f6f2;
  --color-primary-start: #d76e42;
  --color-primary-end: #d99726;
  --color-secondary: #d9e0d1;
  --color-muted-foreground: #736b63;
  --radius-lg: 1.5rem;
  --radius-full: 9999px;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Outfit', sans-serif;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-medium: 0 8px 30px -8px rgba(44, 38, 33, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-body);
}

.btn-primary {
  background: linear-gradient(to right, var(--color-primary-start), var(--color-primary-end));
  color: white;
  border: none;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: white;
  border: 1px solid #2c2621;
  color: var(--color-text);
}

.btn-outline:hover {
  background: rgba(44, 38, 33, 0.05);
}

.section-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.section-subtitle {
  text-align: center;
  font-size: 1.325rem;
  color: rgba(44, 38, 33, 0.8);
  margin-bottom: 3rem;
  font-family: var(--font-display);
  color: #d76e42;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  max-height: 100px;
  height: 100%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

header.scrolled {
  background-color: rgba(248, 246, 242, 0.95);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}

section {
  margin-bottom: 7rem;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.nav-container a img {
  height: 90px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-links a:hover {
  color: var(--color-primary-start);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--color-text);
  cursor: pointer;
  padding: 0.5rem;
  z-index: 100;
}
.menu-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--color-bg);
  z-index: 40;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  transform: translateY(-100%);
}
.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
.mobile-nav-links .mobile-link {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--color-text);
}
.mobile-nav-links .mobile-link:hover {
  color: var(--color-primary-start);
}
.mobile-nav-links .mobile-link-btn {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  padding: 1rem 2rem;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: linear-gradient(to bottom, rgb(238, 240, 232), rgba(0, 0, 0, 0)), url(/img/background-image.jpg);
  background-size: cover;
  background-position: center;
  padding-top: 5rem;
  margin-bottom: 0rem;
}
.hero h1 {
  font-size: 5rem;
  margin-bottom: 1rem;
  font-weight: 500;
}
.hero p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  color: rgba(44, 38, 33, 0.9);
}

.hero-subtitle {
  text-align: center;
  font-size: 1.325rem;
  color: rgba(44, 38, 33, 0.8);
  margin-bottom: 3rem;
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 10;
  margin-bottom: 100px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}
.wave-divider svg {
  width: 100%;
  height: auto;
  fill: var(--color-bg);
}

.section-products {
  padding: 6rem 0;
  background-color: rgba(217, 224, 209, 0.3);
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-primary-start);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  display: block;
  font-weight: 600;
}

.text-gradient {
  background: linear-gradient(135deg, var(--color-primary-start) 0%, var(--color-primary-end) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .product-card-bg {
    padding: 3rem;
    order: 1;
  }
  .product-info-col {
    order: 2;
  }
  .product-title {
    font-size: 2.5rem;
  }
}
.product-card-bg {
  background-color: #fbfaf9;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-medium);
  overflow: hidden;
}

.product-img-wrapper img {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  filter: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04));
  transition: all 0.5s ease;
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.floating-decor {
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  width: 8rem;
  height: 8rem;
  opacity: 0.2;
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .floating-decor {
    display: none;
  }
}
.product-info-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  order: 2;
}

.product-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.product-desc {
  font-size: 1.125rem;
  color: var(--color-muted-foreground);
  line-height: 1.6;
}

.nav-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
}

.nav-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 2px solid var(--color-primary-start);
  background-color: transparent;
  color: var(--color-primary-start);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.nav-button svg {
  width: 1.25rem;
  height: 1.25rem;
}

.nav-button:hover {
  background-color: var(--color-primary-start);
  color: white;
}

.pagination-dots {
  display: flex;
  gap: 0.5rem;
  padding-top: 0.5rem;
}

.dot-btn {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 9999px;
  background-color: #e2e8f0;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot-btn.active {
  background-color: var(--color-primary-start);
  width: 2rem;
}

.thumbnails-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.thumb-btn {
  width: 5rem;
  height: 5rem;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 2px solid transparent;
  opacity: 0.6;
  transition: all 0.3s ease;
  cursor: pointer;
  padding: 0;
  background: none;
}
.thumb-btn img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.thumb-btn:hover {
  opacity: 1;
}

.thumb-btn.active {
  border-color: var(--color-primary-start);
  opacity: 1;
  transform: scale(1.1);
  box-shadow: var(--shadow-medium);
}

.section-about-title {
  font-size: 3rem;
  margin-bottom: 32px;
}

.gradient-text {
  -webkit-background-clip: text;
          background-clip: text;
  background-image: linear-gradient(to right, var(--color-primary-start), var(--color-primary-end));
  color: transparent;
}

.section-about-subtitle {
  color: var(--color-primary-start);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
}
.about-image img.main-img {
  border-radius: 1.5rem 1.5rem 0 1.5rem;
  width: 90%;
}
.about-image img.inset-img {
  position: absolute;
  bottom: -2rem;
  right: -1rem;
  width: 45%;
  border-radius: 1rem;
  border: 4px solid var(--color-bg);
  box-shadow: var(--shadow-lg);
}

.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.feature-box {
  text-align: center;
  padding: 1rem;
}
.feature-box i {
  color: var(--color-primary-start);
  margin-bottom: 0.5rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.step-card {
  text-align: center;
  position: relative;
}
.step-card h4 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}
.step-card p {
  font-size: 0.9rem;
  color: rgba(44, 38, 33, 0.8);
}

.step-icon {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 2;
}

.step-number {
  position: absolute;
  top: 0;
  right: -5px;
  background: var(--color-primary-start);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.contact-card {
  background: white;
  padding: 2rem;
  border-radius: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(215, 110, 66, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-start);
}

footer {
  background-color: var(--color-text);
  color: var(--color-text-light);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.footer-brand h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  opacity: 0.7;
}

@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3rem;
  }
  .product-showcase,
  .about-grid,
  .process-steps,
  .contact-cards {
    grid-template-columns: 1fr;
  }
  .nav-links,
  .desktop-btn {
    display: none;
  }
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .about-image img.inset-img {
    width: 30%;
  }
  .footer-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    align-items: center;
  }
  .footer-links {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  .social-links {
    justify-content: center;
  }
}/*# sourceMappingURL=landingpage.css.map */