

:root {
  
  --primary-green: #4CAF50; 
  --primary-blue: #2196F3; 
  --earth-tone: #8D6E63; 
  --cream: #FFF8E1; 
  --gold-accent: #FFD700; 
  --text-dark: #333333; 
  --bg-light: #f8f9fa; 
  --bg-white: #ffffff;
  --shadow: rgba(0, 0, 0, 0.1);
}

body {
  font-family: 'Roboto', sans-serif; 
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif; 
  color: var(--primary-green);
  font-weight: 700;
}

.btn-primary {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
}

.btn-primary:hover {
  background-color: darken(var(--primary-green), 10%);
  border-color: darken(var(--primary-green), 10%);
}

.navbar {
  background-color: var(--bg-white);
  box-shadow: 0 2px 4px var(--shadow);
}

.card {
  border: none;
  box-shadow: 0 4px 8px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px var(--shadow);
}

.hover-effect {
  transition: all 0.3s ease;
}

.hover-effect:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.loading-state {
  opacity: 0.6;
  pointer-events: none;
}

.fade-in {
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.page-transition {
  transition: opacity 0.3s ease;
}

.page-enter {
  opacity: 0;
}

.page-enter-active {
  opacity: 1;
}

.btn {
  transition: all 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px var(--shadow);
}

[data-aos] {
  transition: all 0.6s ease;
}

#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-blue);
  color: white;
  padding: 15px;
  text-align: center;
  z-index: 99999;
  box-shadow: 0 -2px 10px var(--shadow);
  font-size: 14px;
}

#cookie-consent p {
  margin: 0;
  display: inline-block;
  margin-right: 10px;
}

#cookie-consent button {
  background-color: var(--gold-accent);
  color: var(--text-dark);
  border: none;
  padding: 8px 16px;
  margin: 0 5px;
  cursor: pointer;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

#cookie-consent button:hover {
  background-color: darken(var(--gold-accent), 10%);
}

#cookie-consent a {
  color: var(--gold-accent);
  text-decoration: underline;
}

@media (max-width: 768px) {
  #cookie-consent {
    padding: 10px;
    font-size: 12px;
  }

  #cookie-consent button {
    padding: 6px 12px;
    margin: 0 2px;
  }
}

.text-primary-green { color: var(--primary-green); }
.bg-cream { background-color: var(--cream); }
.border-gold { border-color: var(--gold-accent); }

.product-image {
  transition: transform 0.3s ease;
}

.product-image:hover {
  transform: scale(1.1);
}

.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
}

.navbar-toggler {
  transition: all 0.3s ease;
}

.navbar-toggler.collapsed .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M6 6l18 18M6 24L24 6'/%3e%3c/svg%3e");
}

.cursor-blob {
  position: fixed;
  width: 20px;
  height: 20px;
  background-color: var(--primary-blue);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transition: transform 0.1s ease;
}

.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: var(--primary-green);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.timeline-item:nth-child(even) {
  left: 0;
}

.timeline-item:nth-child(odd) {
  left: 50%;
}

.timeline-item.active {
  opacity: 1;
  transform: translateY(0);
}

.timeline-marker {
  position: absolute;
  width: 20px;
  height: 20px;
  right: -10px;
  background-color: var(--primary-green);
  border: 4px solid #fff;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

.timeline-item:nth-child(even) .timeline-marker {
  left: -10px;
}

.timeline-content {
  padding: 20px 30px;
  background-color: white;
  position: relative;
  border-radius: 6px;
  box-shadow: 0 4px 8px var(--shadow);
}

.value-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px var(--shadow);
}

.morph-icon {
  fill: var(--primary-green);
  transition: all 0.3s ease;
}

.icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  background-color: var(--bg-light);
  border-radius: 50%;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .timeline::after {
    left: 31px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

  .timeline-item:nth-child(even),
  .timeline-item:nth-child(odd) {
    left: 0;
  }

  .timeline-marker {
    left: 21px;
  }

  .timeline-item:nth-child(even) .timeline-marker {
    left: 21px;
  }
}