:root {
  --linen-white: #F8F6F3;
  --birch-beige: #D7CAB8;
  --moss-green: #A3B9AA;
  --clay-brown: #8E6B4D;
  --charcoal-gray: #2E2E2E;
  --sky-blue: #C8D8E4;
  --rosewood: #CBAEA0;
  
  --font-primary: 'Cormorant Garamond', serif;
  --font-secondary: 'Work Sans', sans-serif;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  
  --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-medium: 0 6px 24px rgba(0, 0, 0, 0.08);
  
  --transition-fast: 0.2s ease;
  --transition-medium: 0.4s ease;
  --transition-slow: 0.8s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-secondary);
  background-color: var(--linen-white);
  color: var(--charcoal-gray);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: var(--space-sm);
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.4rem;
}

h3 {
  font-size: 1.8rem;
}

p {
  margin-bottom: var(--space-sm);
}

a {
  color: var(--clay-brown);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--moss-green);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.section {
  padding: var(--space-lg) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-md);
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background-color: var(--moss-green);
  margin: var(--space-sm) auto;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  background-color: var(--moss-green);
  color: white;
  border: none;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-secondary);
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn:hover {
  background-color: var(--clay-brown);
  color: white;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--moss-green);
  color: var(--moss-green);
}

.btn-outline:hover {
  background-color: var(--moss-green);
  color: white;
}

/* Unique Header */
header {
  position: relative;
  padding: var(--space-md) 0;
  transition: all var(--transition-medium);
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  color: var(--charcoal-gray);
  font-weight: 600;
  transition: transform var(--transition-medium);
}

.logo:hover {
  transform: scale(1.05);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--charcoal-gray);
}

.nav-menu {
  display: flex;
  gap: var(--space-md);
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--charcoal-gray);
  font-weight: 500;
  position: relative;
  overflow: hidden;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--moss-green);
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform var(--transition-fast);
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.nav-link.active::after {
  transform: scaleX(1);
}

/* Unique Animation for Header */
.header-scroll {
  background: rgba(248, 246, 243, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-soft);
  padding: var(--space-sm) 0;
}

.header-scroll .logo {
  font-size: 1.5rem;
}

/* Hero Section */
.hero {
  position: relative;
  height: 80vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  background-color: var(--birch-beige);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  background-color: rgba(248, 246, 243, 0.267);
  padding: var(--space-md);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-soft);
}

.hero-title {
  font-size: 4rem;
  margin-bottom: var(--space-md);
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: var(--space-lg);
  animation: fadeInUp 1s ease 0.2s forwards;
  opacity: 0;
  transform: translateY(30px);
}

.hero-btn {
  animation: fadeInUp 1s ease 0.4s forwards;
  opacity: 0;
  transform: translateY(30px);
}

.hero-image {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  object-fit: cover;
  animation: fadeIn 1.5s ease forwards;
  opacity: 0;
}

.hero-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(163, 185, 170, 0.2) 0%, rgba(142, 107, 77, 0.1) 100%);
  z-index: 1;
  animation: fadeIn 2s ease forwards;
  opacity: 0;
}

/* Feature Sections */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
}

.feature-item {
  padding: var(--space-md);
  border-radius: var(--border-radius-md);
  background-color: white;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-medium);
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
}

.feature-icon {
  font-size: 3rem;
  color: var(--moss-green);
  margin-bottom: var(--space-sm);
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

/* Product Cards */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.product-card {
  background-color: white;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-medium);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
}

.product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-content {
  padding: var(--space-md);
}

.product-title {
  font-size: 1.5rem;
  margin-bottom: var(--space-xs);
}

.product-price {
  font-size: 1.2rem;
  color: var(--clay-brown);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

/* Unique Contact Form Design */
.contact-section {
  position: relative;
  padding: var(--space-xl) 0;
  background-color: var(--birch-beige);
  overflow: hidden;
}

.contact-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(163, 185, 170, 0.2) 0%, rgba(142, 107, 77, 0.1) 100%);
  z-index: 1;
}

.contact-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--moss-green);
}

.contact-form {
  background-color: white;
  padding: var(--space-lg);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-medium);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 500;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--birch-beige);
  border-radius: var(--border-radius-sm);
  background-color: var(--linen-white);
  transition: border-color var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--moss-green);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.form-consent input {
  margin-top: 0.3rem;
}

.form-submit {
  width: 100%;
}

/* Map Section */
.map-section {
  padding: 0;
}

.map-container {
  height: 400px;
  width: 100%;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Footer */
footer {
  background-color: var(--charcoal-gray);
  color: white;
  padding: var(--space-md) 0;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-logo {
  color: white;
  font-size: 1.5rem;
}

.footer-links {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.footer-link {
  color: var(--birch-beige);
}

.footer-link:hover {
  color: white;
}

.footer-copyright {
  width: 100%;
  text-align: center;
  margin-top: var(--space-md);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 101px;
  left: 20px;
  max-width: 320px;
  background-color: white;
  padding: var(--space-md);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-medium);
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-medium);
}

.cookie-popup.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.cookie-buttons {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.cookie-btn {
  flex: 1;
  padding: 0.6rem;
  font-size: 0.9rem;
}

/* 404 Page */
.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.error-content {
  max-width: 500px;
}

.error-title {
  font-size: 8rem;
  margin-bottom: var(--space-sm);
  color: var(--moss-green);
}

.error-subtitle {
  font-size: 2rem;
  margin-bottom: var(--space-md);
}

/* Thank You Page */
.thank-you-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.thank-you-content {
  max-width: 600px;
}

.thank-you-icon {
  font-size: 5rem;
  color: var(--moss-green);
  margin-bottom: var(--space-md);
}

/* Unique Animation Styles */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatAnimation {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Intersection Observer Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 {
  transition-delay: 0.2s;
}

.fade-in-delay-2 {
  transition-delay: 0.4s;
}

.fade-in-delay-3 {
  transition-delay: 0.6s;
}

/* Unique Animation for Products */
.product-float {
  animation: floatAnimation 6s ease-in-out infinite;
}

.product-float:nth-child(2) {
  animation-delay: 2s;
}

.product-float:nth-child(3) {
  animation-delay: 4s;
}

/* Media Queries */
@media (max-width: 992px) {
  html {
    font-size: 15px;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.3rem;
  }

  .hero {
    height: 70vh;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  .section {
    padding: var(--space-md) 0;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background-color: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-xl) var(--space-md);
    transition: right var(--transition-medium);
    z-index: 1001;
    display: none;
  }

  .nav-menu.active {
    right: 0;
    display: flex;
  }

  
  .nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    background: transparent;
    border: none;
    color: var(--charcoal-gray);
    cursor: pointer;
    display: none;
  }

  .nav-menu.active .nav-close {
    display: block;
  }
  .hero-content {
    text-align: center;
    max-width: 100%;
  }

  .hero-image {
    display: none;
  }

  .contact-container {
    gap: var(--space-md);
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 13px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero {
    height: 60vh;
    min-height: 400px;
  }

  .contact-form {
    padding: var(--space-md);
  }

  .product-card {
    max-width: 300px;
    margin: 0 auto;
  }

  .error-title {
    font-size: 6rem;
  }

  .error-subtitle {
    font-size: 1.5rem;
  }
}

@media (max-width: 320px) {
  .container {
    width: 95%;
  }

  .btn {
    padding: 0.7rem 1.4rem;
  }

  .feature-item {
    padding: var(--space-sm);
  }
}


.nav-close{
  display: none;
}