:root {
  /* Colors */
  --color-primary: #4CAF50;
  --color-secondary: #FF6B6B;
  --color-highlight: #FFD93D;
  --color-supporting: #4DA6FF;
  --color-background: #F6F5F3;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-white: #FFFFFF;
  
  /* Typography */
  --font-primary: 'Quicksand', sans-serif;
  --font-secondary: 'Playfair Display', serif;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 5rem;
  
  /* Borders & Shadows */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Container widths */
  --container-max: 1200px;
  --container-narrow: 900px;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

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

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

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

a:hover {
  color: var(--color-secondary);
}

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

button, .btn {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-sm) var(--space-md);
  border: none;
  border-radius: var(--border-radius-md);
  font-family: var(--font-primary);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

button:hover, .btn:hover {
  background-color: var(--color-secondary);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--color-supporting);
}

.btn-highlight {
  background-color: var(--color-highlight);
  color: var(--color-text);
}

/* Container */
.container {
  width: 90%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .container {
    z-index: auto;
  }
}

.container-narrow {
  max-width: var(--container-narrow);
}

/* Unique Header Styles */
.site-header {
  position: relative;
  overflow: hidden;
  padding: var(--space-md) 0;
  transform-style: preserve-3d;
}

@media (max-width: 768px) {
  .site-header {
    z-index: 1000;
    overflow: visible;
  }
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 100;
}

@media (max-width: 768px) {
  .header-wrapper {
    z-index: 1000;
  }
}

.logo {
  font-family: var(--font-secondary);
  font-size: 1.8rem;
  font-weight: 700;
  position: relative;
}

.logo a {
  color: var(--color-primary);
  text-decoration: none;
  display: inline-block;
}



nav {
  position: relative;
  z-index: 50;
}

@media (max-width: 768px) {
  nav {
    z-index: 1000;
  }
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1000;
}

.nav-toggle span {
  display: block;
  width: 30px;
  height: 3px;
  margin: 6px auto;
  background-color: var(--color-primary);
  transition: var(--transition-medium);
}

.nav-menu {
  display: flex;
  gap: var(--space-lg);
  list-style: none;
  position: relative;
  z-index: 50;
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--color-white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: right var(--transition-medium);
    box-shadow: var(--shadow-lg);
    padding: 0;
    margin: 0;
    display: none;
  }
  
  .nav-menu.active {
    display: flex;
    right: 0;
  }
  
 
  
  
  body.menu-open {
    overflow: hidden;
  }
}

.nav-link {
  position: relative;
  font-weight: 600;
  padding: var(--space-sm) 0;
  overflow: hidden;
}

.nav-link:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-secondary);
  transform: translateX(-100%);
  opacity: 0;
  transition: transform var(--transition-medium), opacity var(--transition-medium);
}

.nav-link:hover:before {
  transform: translateX(0);
  opacity: 1;
}

/* Leaf Animation for Header */
.leaf-animation {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 768px) {
  .leaf-animation {
    z-index: 0;
  }
}

.leaf {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: rgba(76, 175, 80, 0.2);
  border-radius: 50% 0 50% 50%;
  animation: leaf-fall linear forwards;
  opacity: 0;
}

@keyframes leaf-fall {
  0% {
    transform: translateY(-20px) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    transform: translateY(100px) rotate(360deg);
    opacity: 0;
  }
}

/* Hero Section */
.hero {
  position: relative;
  padding: var(--space-xl) 0;
  background-color: var(--color-white);
  overflow: hidden;
  z-index: 1;
}

@media (max-width: 768px) {
  .hero {
    z-index: auto;
  }
}

.hero-content {
  max-width: 600px;
  position: relative;
  z-index: 2;
  animation: fade-up 1s ease forwards;
}

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

.hero-title {
  font-size: 3rem;
  margin-bottom: var(--space-md);
  position: relative;
}

.hero-title:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: var(--color-secondary);
}

.hero-description {
  margin-bottom: var(--space-lg);
  font-size: 1.2rem;
}

.hero-image {
  position: absolute;
  top: 0;
  right: -20%;
  width: 60%;
  height: 100%;
  background-size: cover;
  background-position: center;
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 1;
}

/* Features Section */
.features {
  padding: var(--space-xl) 0;
  background-color: var(--color-white);
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .features {
    z-index: auto;
  }
}

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

.section-title:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background-color: var(--color-secondary);
}

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

.feature-card {
  background-color: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background-color: var(--color-primary);
  transition: height var(--transition-medium);
}

.feature-card:hover:before {
  height: 100%;
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.feature-title {
  margin-bottom: var(--space-sm);
}

/* Gallery Section */
.gallery {
  padding: var(--space-xl) 0;
  background-color: var(--color-background);
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .gallery {
    z-index: auto;
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-md);
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.gallery-item:hover .gallery-image {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 60%);
  display: flex;
  align-items: flex-end;
  padding: var(--space-md);
  opacity: 0;
  transition: opacity var(--transition-medium);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-title {
  color: var(--color-white);
  margin: 0;
}

/* Products Section */
.products {
  padding: var(--space-xl) 0;
  background-color: var(--color-white);
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .products {
    z-index: auto;
  }
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
}

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

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

.product-image {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}

.product-details {
  padding: var(--space-lg);
}

.product-title {
  margin-bottom: var(--space-sm);
}

.product-price {
  font-weight: 700;
  color: var(--color-secondary);
  font-size: 1.2rem;
  margin-bottom: var(--space-md);
}

/* Testimonials Section */
.testimonials {
  padding: var(--space-xl) 0;
  background-color: var(--color-background);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

@media (max-width: 768px) {
  .testimonials {
    z-index: auto;
  }
}

.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform var(--transition-slow);
}

.testimonial-slide {
  min-width: 100%;
  padding: var(--space-lg);
  background-color: var(--color-white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
}

.testimonial-slide:before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 6rem;
  line-height: 1;
  color: rgba(76, 175, 80, 0.1);
  font-family: var(--font-secondary);
}

.testimonial-content {
  font-style: italic;
  margin-bottom: var(--space-md);
}

.testimonial-author {
  font-weight: 700;
  color: var(--color-primary);
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  margin-top: var(--space-lg);
}

.testimonial-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-primary);
  cursor: pointer;
  transition: color var(--transition-fast);
  padding: var(--space-sm);
}



/* Contact Form */
.contact {
  padding: var(--space-xl) 0;
  background-color: var(--color-white);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

@media (max-width: 768px) {
  .contact {
    z-index: auto;
  }
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
}

.contact-info {
  flex: 1 1 300px;
}

.contact-form-container {
  flex: 1 1 500px;
  position: relative;
}

.contact-form {
  background-color: var(--color-background);
  padding: var(--space-xl);
  border-radius: var(--border-radius-lg);
  position: relative;
}

.form-group {
  margin-bottom: var(--space-lg);
  position: relative;
}

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

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-md);
  border: 1px solid #ddd;
  border-radius: var(--border-radius-md);
  font-family: var(--font-primary);
  transition: border-color var(--transition-fast);
}

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

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

.form-checkbox-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-md);
}

.form-checkbox {
  margin-right: var(--space-sm);
  margin-top: 0.2rem;
}

.form-submit {
  width: 100%;
  padding: var(--space-md);
  background-color: var(--color-highlight);
  color: var(--color-text);
  font-weight: 700;
  border: none;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.form-submit:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

/*  garden icons on contact */
.garden-animation {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.1;
}

.garden-icon {
  position: absolute;
  font-size: 2rem;
  color: var(--color-primary);
  animation: float 5s infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

/* Location Section */
.location {
  padding: var(--space-xl) 0;
  background-color: var(--color-background);
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .location {
    z-index: auto;
  }
}

.map-container {
  height: 400px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* Footer */
.site-footer {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-lg) 0;
  font-size: 0.9rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

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

.footer-link a {
  color: var(--color-white);
  text-decoration: none;
}

.footer-link a:hover {
  text-decoration: underline;
}

.copyright {
  margin-top: var(--space-lg);
  text-align: center;
  font-size: 0.8rem;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-white);
  box-shadow: var(--shadow-lg);
  padding: var(--space-md);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transform: translateY(100%);
  transition: transform var(--transition-medium);
}

@media (max-width: 768px) {
  .cookie-consent {
    z-index: 9997;
  }
}

.cookie-consent.active {
  transform: translateY(0);
}

.cookie-text {
  margin: 0;
  padding-right: var(--space-md);
}

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

/* 404 Page */
.error-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
}

.error-code {
  font-size: 8rem;
  line-height: 1;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  position: relative;
  display: inline-block;
}

.error-code:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background-color: var(--color-secondary);
}

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

.error-description {
  max-width: 600px;
  margin-bottom: var(--space-lg);
}

/* Thank You Page */
.thank-you-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
}

.thank-you-icon {
  font-size: 5rem;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.thank-you-title {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
}

.thank-you-description {
  max-width: 600px;
  margin-bottom: var(--space-lg);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-image {
    right: -30%;
    width: 70%;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
    position: relative;
    z-index: 10000;
    margin-left: auto;
  }
  
  .nav-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  .hero {
    text-align: center;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .hero-title:after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .hero-image {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: 300px;
    clip-path: none;
    margin-top: var(--space-lg);
  }
  
  .contact-container {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 14px;
  }
  
  .logo {
    font-size: 1.5rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .features-grid,
  .gallery-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-card,
  .gallery-item,
  .product-card {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .testimonial-slide {
    padding: var(--space-md);
  }
}


@media(max-width: 845px) {
  .nav-menu{
    gap: 0.9rem;
  }
}