@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Open+Sans:wght@400;500;600&display=swap');

:root {
  --primary-green: #7ED957;
  --secondary-green: #00C896;
  --light-gray: #f8f9fa;
  --dark-gray: #343a40;
  --border-color: #dee2e6;
}

.navbar-brand {
  font-family: 'Montserrat', sans-serif;
  color: var(--primary-green) !important;
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: -0.5px;
}

.nav-link {
  font-family: 'Open Sans', sans-serif;
  color: var(--dark-gray) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

.nav-link:hover {
  border-bottom: 2px solid var(--primary-green);
}

.search-form {
  position: relative;
  width: 100%;
  max-width: 300px;
}

.search-form input {
  width: 100%;
  padding: 0.5rem 2.5rem 0.5rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  font-family: 'Open Sans', sans-serif;
}

.search-form button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--dark-gray);
  padding: 0;
}

.search-form input:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(126, 217, 87, 0.25);
}

.nav-link:hover {
  color: var(--primary-green) !important;
}

.cart-button {
  background: none;
  border: none;
  color: #333;
  transition: color 0.3s ease;
}

.cart-button:hover {
  color: var(--primary-green);
}

.breadcrumb {
  background: var(--light-gray);
  padding: 0.75rem 1rem;
  border-radius: 0.25rem;
}

.breadcrumb-item.active {
  color: var(--primary-green);
}

/* Footer Styles */
footer {
  font-family: 'Open Sans', sans-serif;
}

footer h5 {
  font-family: 'Montserrat', sans-serif;
  color: var(--primary-green);
  font-weight: 600;
  font-size: 1.1rem;
}

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

footer a:hover {
  color: var(--primary-green) !important;
}


.cookie-consent {
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

/* Contact Page Styles */
.contact-info-section .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
  border: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-info-section .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.contact-info-section .fas {
  background: linear-gradient(145deg, #7ED957 0%, #00C896 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.contact-form-section .card {
  border: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  background: linear-gradient(165deg, #ffffff 0%, #f8f9fa 100%);
}

.contact-form .form-control,
.contact-form .form-select {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 12px;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: #7ED957;
  box-shadow: 0 0 0 0.2rem rgba(126, 217, 87, 0.25);
}

.contact-form .btn-success {
  background: linear-gradient(145deg, #7ED957 0%, #00C896 100%);
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.contact-form .btn-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(126, 217, 87, 0.4);
}

.faq-section .accordion-button {
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
  border: none;
  padding: 15px 20px;
  font-weight: 500;
}

.faq-section .accordion-button:not(.collapsed) {
  color: #7ED957;
  background: linear-gradient(145deg, #f8f9fa 0%, #ffffff 100%);
}

.faq-section .accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(126, 217, 87, 0.25);
}

/* Carousel Styles */
.hero-section {
  margin-bottom: 0;
}

.carousel {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-height: 400px;
}

.carousel-inner {
  max-height: 400px;
}

.carousel-item img {
  height: 400px;
  object-fit: cover;
  object-position: center;
}

.carousel-caption {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.9) 100%);
  border-radius: 15px;
  padding: 2rem;
  margin: 1rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.carousel-caption h1,
.carousel-caption h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--dark-gray);
  text-shadow: none;
  margin-bottom: 1rem;
}

.carousel-caption .lead {
  font-family: 'Open Sans', sans-serif;
  color: var(--dark-gray);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.carousel-caption .btn {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.carousel-caption .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(126, 217, 87, 0.4);
}

/* Remove carousel indicators */
.carousel-indicators {
  display: none !important;
}

/* Carousel controls styling */
.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.carousel-control-prev {
  left: 20px;
}

.carousel-control-next {
  right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
  background: rgba(126, 217, 87, 0.9);
  transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 20px;
  height: 20px;
  background-size: 20px 20px;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath d='m11.596 8.697-6.363 3.692c-.54.313-1.233-.066-1.233-.697V4.308c0-.63.692-1.01 1.233-.696l6.363 3.692a.802.802 0 0 1 0 1.393z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath d='m4.404 8.697 6.363 3.692c.54.313 1.233-.066 1.233-.697V4.308c0-.63-.692-1.01-1.233-.696L4.404 7.304a.802.802 0 0 0 0 1.393z'/%3e%3c/svg%3e");
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
  filter: brightness(0) invert(1);
}

/* Responsive carousel */
@media (max-width: 768px) {
  .carousel {
    max-height: 300px;
  }
  
  .carousel-inner {
    max-height: 300px;
  }
  
  .carousel-item img {
    height: 300px;
  }
  
  .carousel-caption {
    padding: 1.5rem;
    margin: 0.5rem;
  }
  
  .carousel-caption h1,
  .carousel-caption h2 {
    font-size: 1.5rem;
  }
  
  .carousel-caption .lead {
    font-size: 0.9rem;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
  }
  
  .carousel-control-prev {
    left: 10px;
  }
  
  .carousel-control-next {
    right: 10px;
  }
}
