@import url('https://fonts.googleapis.com/css2?family=Signika:wght@400;700&family=Outfit:wght@300;400;600&display=swap');

:root {
  --green: #8DAD2D;
  --green-light: #B6C87E;
  --yellow: #ECD510;
  --dark: #221B23;
  --gray: #7A727B;
  --white: #FFFFFF;
  --bg: #F5F5F5;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Signika', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

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

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

ul {
  list-style: none;
}

/* ── Container ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

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

.logo img {
  height: 55px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  font-family: 'Signika', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--dark);
  position: relative;
  padding: 5px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.main-nav a:hover {
  color: var(--green);
}

.lang-selector {
  position: relative;
  margin-left: 15px;
}

.lang-selector button {
  background: var(--green);
  color: var(--white);
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-family: 'Signika', sans-serif;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.3s ease;
}

.lang-selector button:hover {
  background: #7a9a26;
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  min-width: 140px;
}

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

.lang-dropdown a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--dark);
}

.lang-dropdown a:hover {
  background: var(--green-light);
  color: var(--white);
}

/* ── Mobile Menu ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--dark);
  transition: all 0.3s ease;
}

/* ── Hero Slideshow ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.slideshow {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(34, 27, 35, 0.3) 0%,
    rgba(34, 27, 35, 0.5) 50%,
    rgba(34, 27, 35, 0.7) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  color: var(--white);
}

.hero-overlay h1 {
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: 0.15em;
  margin-bottom: 10px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero-overlay .subtitle {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: clamp(16px, 2.5vw, 24px);
  letter-spacing: 0.3em;
  margin-bottom: 30px;
  color: var(--green-light);
  text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.hero-overlay p {
  max-width: 700px;
  font-size: clamp(14px, 1.5vw, 18px);
  line-height: 1.8;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.slideshow-nav {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.slideshow-nav button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.slideshow-nav button.active {
  background: var(--white);
  transform: scale(1.2);
}

/* ── Section Styles ── */
.section {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  font-size: clamp(28px, 3.5vw, 42px);
  margin-bottom: 15px;
  color: var(--dark);
  letter-spacing: 0.05em;
}

.section-subtitle {
  text-align: center;
  font-size: clamp(14px, 1.5vw, 18px);
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.8;
}

/* ── About Section ── */
.about-section {
  background: var(--white);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text p {
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 1.8;
  color: #444;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* ── Leaf Decorations ── */
.leaf-decoration {
  text-align: center;
  margin: 40px 0;
}

.leaf-decoration img {
  width: 80px;
  height: auto;
  margin: 0 auto;
  opacity: 0.8;
}

/* ── Products Section ── */
.products-section {
  background: var(--bg);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.product-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: 16px;
  background: var(--white);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.product-card .product-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card .product-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.product-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

/* Product detail colors */
.product-card.cherry h3 { color: #C71212; }
.product-card.pome h3 { color: #FF8B85; }
.product-card.stone h3 { color: #88DB69; }
.product-card.kiwi h3 { color: #8DAD2D; }

.product-card.cherry .product-icon { background: #fce4e4; }
.product-card.pome .product-icon { background: #fce8e6; }
.product-card.stone .product-icon { background: #e8f5e0; }
.product-card.kiwi .product-icon { background: #eef5d8; }

/* ── Product Details ── */
.product-details {
  background: var(--dark);
  padding: 80px 0;
}

.product-details .section-title {
  color: var(--white);
}

.product-details .section-subtitle {
  color: var(--green-light);
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.detail-card {
  padding: 30px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border-left: 4px solid var(--green);
}

.detail-card h4 {
  font-size: 20px;
  color: var(--green-light);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.detail-card p {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  line-height: 1.8;
}

/* ── Certifications Section ── */
.certifications-section {
  background: var(--white);
  text-align: center;
}

.cert-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
}

.cert-logos img {
  height: 70px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.3s ease;
  filter: grayscale(20%);
}

.cert-logos img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.cert-ggn {
  font-size: 16px;
  color: var(--gray);
  margin-top: 20px;
}

/* ── Footer / Contact ── */
.site-footer {
  background: var(--dark);
  color: var(--white);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
}

.footer-info h3,
.footer-contact h3,
.footer-form-wrap h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: var(--green-light);
}

.footer-info p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
  font-size: 15px;
}

.footer-contact a {
  color: rgba(255,255,255,0.7);
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
}

.footer-contact a:hover {
  color: var(--green-light);
}

/* ── Contact Form ── */
.contact-form .form-group {
  margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.4);
}

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

.contact-form textarea {
  height: 100px;
  resize: vertical;
}

.contact-form .btn-submit {
  background: var(--green);
  color: var(--white);
  border: none;
  padding: 12px 40px;
  border-radius: 25px;
  font-family: 'Signika', sans-serif;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form .btn-submit:hover {
  background: #7a9a26;
}

/* Honeypot */
.ohnohoney {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

.form-message {
  margin-top: 10px;
  font-size: 14px;
  padding: 10px;
  border-radius: 6px;
}

.form-message.success {
  background: rgba(141, 173, 45, 0.2);
  color: var(--green-light);
}

.form-message.error {
  background: rgba(255, 64, 64, 0.2);
  color: #ff6b6b;
}

/* ── Footer Bottom ── */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 60px;
  padding-top: 20px;
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 13px;
}

.footer-bottom a {
  color: var(--green-light);
}

/* ── Scroll to Top ── */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
  font-size: 20px;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: #7a9a26;
}

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

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

/* ── Compliance Page ── */
.compliance-hero {
  padding: 140px 0 40px;
  background: var(--dark);
  text-align: center;
  color: var(--white);
}

.compliance-hero h1 {
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: 0.1em;
  color: var(--green-light);
}

.compliance-content {
  max-width: 900px;
  margin: 0 auto;
}

.compliance-content p {
  font-size: 17px;
  line-height: 1.9;
  color: #444;
  margin-bottom: 20px;
}

.compliance-content h3 {
  font-size: 22px;
  color: var(--dark);
  margin: 40px 0 15px;
}

.compliance-content ul {
  list-style: none;
  padding: 0;
}

.compliance-content ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}

.compliance-content ul li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: var(--green);
  font-size: 10px;
  top: 5px;
}

.compliance-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.pillar {
  padding: 30px;
  background: var(--bg);
  border-radius: 12px;
  border-left: 4px solid var(--green);
}

.pillar h4 {
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 5px;
}

.pillar .pillar-subtitle {
  font-size: 14px;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 12px;
}

.pillar p:last-child {
  font-size: 15px;
  line-height: 1.7;
}

.compliance-canal {
  background: var(--bg);
}

.compliance-process {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 30px;
}

.process-card {
  padding: 25px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.process-card h4 {
  font-size: 17px;
  color: var(--green);
  margin-bottom: 10px;
}

.process-card p {
  font-size: 15px;
  line-height: 1.7;
}

.compliance-promesa {
  background: var(--white);
}

.compliance-promises {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 40px 0;
}

.promise {
  text-align: center;
  padding: 30px 20px;
  background: var(--bg);
  border-radius: 12px;
}

.promise h4 {
  font-size: 18px;
  color: var(--green);
  margin-bottom: 12px;
}

.promise p {
  font-size: 15px;
  line-height: 1.7;
}

.compliance-cta {
  text-align: center;
  padding: 50px 30px;
  background: var(--dark);
  border-radius: 16px;
  margin-top: 40px;
}

.compliance-cta h3 {
  color: var(--white);
  font-size: 24px;
  margin-bottom: 10px;
}

.compliance-cta p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}

.btn-compliance {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  padding: 14px 40px;
  border-radius: 25px;
  font-family: 'Signika', sans-serif;
  font-size: 17px;
  transition: background 0.3s ease;
}

.btn-compliance:hover {
  background: #7a9a26;
  color: var(--white);
}

.compliance-note {
  font-size: 13px !important;
  color: rgba(255,255,255,0.5) !important;
  margin-top: 20px !important;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .hamburger {
    display: flex;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 40px auto 0;
  }

  .details-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-overlay h1 {
    font-size: 28px;
  }

  .hero-overlay .subtitle {
    font-size: 14px;
  }

  .site-header .container {
    height: 70px;
  }

  .logo img {
    height: 45px;
  }

  .compliance-pillars,
  .compliance-process,
  .compliance-promises {
    grid-template-columns: 1fr;
  }
}
