/* ===========================
   piante-benessere.css
   =========================== */

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

:root {
  --verde:       #2d6a4f;
  --verde-light: #52b788;
  --verde-pale:  #d8f3dc;
  --terra:       #6b4f35;
  --text:        #2c2c2c;
  --text-light:  #555;
  --bg:          #fafaf8;
  --white:       #ffffff;
  --radius:      10px;
  --shadow:      0 4px 18px rgba(0,0,0,.08);
  --font:        'Georgia', serif;
  --font-sans:   system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: var(--text); background: var(--bg); line-height: 1.7; font-size: 1rem; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--verde); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 1080px; margin: 0 auto; padding: 0 1.2rem; }

/* HEADER */
.header { background: var(--white); border-bottom: 2px solid var(--verde-pale); position: sticky; top: 0; z-index: 100; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: .8rem 1.2rem; }
.logo img { height: 46px; width: auto; }

.main-nav ul { list-style: none; display: flex; gap: 1.4rem; align-items: center; }
.main-nav a { font-size: .95rem; font-weight: 500; color: var(--text); }
.main-nav a:hover { color: var(--verde); text-decoration: none; }
.main-nav .nav-cta { background: var(--verde); color: var(--white); padding: .4rem 1.1rem; border-radius: 20px; }
.main-nav .nav-cta:hover { background: var(--verde-light); color: var(--white); }

/* HERO */
.hero { background: linear-gradient(135deg, #f0faf2 0%, #e8f5e9 100%); padding: 3.5rem 0 3rem; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.hero-text h1 { font-family: var(--font); font-size: clamp(1.5rem, 2.8vw, 2.1rem); color: var(--verde); line-height: 1.3; margin-bottom: 1rem; }
.hero-sub { font-size: 1.05rem; color: var(--text-light); margin-bottom: 1.8rem; }
.hero-img img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; aspect-ratio: 960/510; object-fit: cover; }

/* PULSANTE */
.btn-primary { display: inline-block; background: var(--verde); color: var(--white); padding: .7rem 1.8rem; border-radius: 25px; font-weight: 600; font-size: .95rem; transition: background .2s; }
.btn-primary:hover { background: var(--verde-light); text-decoration: none; color: var(--white); }

/* SERVIZI */
.servizi { padding: 3.5rem 0; background: var(--white); }
.section-title { font-family: var(--font); font-size: 1.5rem; color: var(--verde); text-align: center; margin-bottom: 2rem; }

.servizi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }

.servizio-card {
  display: block;
  background: var(--bg);
  border: 1px solid var(--verde-pale);
  border-radius: var(--radius);
  padding: 1.5rem 1.3rem;
  color: var(--text);
  transition: box-shadow .2s, transform .2s;
  text-decoration: none;
}
.servizio-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); text-decoration: none; color: var(--text); }
.servizio-icon { font-size: 1.8rem; display: block; margin-bottom: .6rem; }
.servizio-card h3 { font-size: 1rem; font-weight: 700; color: var(--verde); margin-bottom: .4rem; display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.servizio-card p { font-size: .9rem; color: var(--text-light); }

/* Card in evidenza (grossista) */
.servizio-card--featured { background: var(--verde-pale); border-color: var(--verde-light); }
.servizio-card--featured h3 { color: var(--verde); }

.badge { display: inline-block; background: var(--verde); color: var(--white); font-size: .7rem; font-weight: 700; padding: .15rem .5rem; border-radius: 10px; vertical-align: middle; }

/* ABOUT */
.about { padding: 3.5rem 0; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.about-text h2 { font-family: var(--font); font-size: 1.6rem; color: var(--verde); margin-bottom: 1rem; }
.about-text p { margin-bottom: 1rem; color: var(--text-light); }
.about-img img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; aspect-ratio: 960/510; object-fit: cover; }

/* CTA BAND */
.cta-band { background: var(--verde); color: var(--white); padding: 2.5rem 0; text-align: center; }
.cta-band p { font-size: .95rem; margin-bottom: 1.2rem; opacity: .9; }
.cta-band .btn-primary { background: var(--white); color: var(--verde); }
.cta-band .btn-primary:hover { background: var(--verde-pale); color: var(--verde); }

/* SHARE */
.share-box { padding: 1.8rem 0; border-top: 1px solid var(--verde-pale); border-bottom: 1px solid var(--verde-pale); }
.share-inner { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.share-label { font-size: .88rem; color: var(--text-light); }
.share-grid { display: flex; gap: .45rem; flex-wrap: wrap; justify-content: center; }
.ns-btn { display: inline-block; padding: .32rem .85rem; border-radius: 20px; font-size: .82rem; font-weight: 600; color: var(--white); cursor: pointer; }
.ns-btn:hover { opacity: .85; text-decoration: none; color: var(--white); }
.ns-fb { background: #1877f2; }
.ns-wa { background: #25d366; }
.ns-x  { background: #000; }
.ns-li { background: #0a66c2; }
.ns-tg { background: #229ed9; }
.ns-cp { background: #6b4f35; }

/* FOOTER */
.footer { background: #1a3828; color: #d4ede0; padding: 3rem 0 1.5rem; }
.footer-content { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; margin-bottom: 2rem; }
.footer-section h4 { color: #ffffff; font-size: 1rem; margin-bottom: .8rem; letter-spacing: .02em; }
.footer-section p { font-size: .88rem; margin-bottom: .4rem; color: #d4ede0; }
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: .35rem; }
.footer-section a { color: #a8dbb8; }
.footer-section a:hover { color: #ffffff; text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.15); padding-top: 1.2rem; font-size: .82rem; color: #a8c8b4; text-align: center; }
.footer-bottom a { color: #a8dbb8; }

/* RESPONSIVE */
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-img { display: none; }
  .servizi-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; }
  .about-img { display: none; }
  .footer-content { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 520px) {
  .servizi-grid { grid-template-columns: 1fr; }
}

/* PAGINE INTERNE */
.page-hero { padding: 2rem 0 0; background: var(--white); }
.page-hero-img { width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--shadow); }

.page-content { padding: 2.5rem 0; background: var(--white); }
.page-content-inner { max-width: 1080px; }
.page-content-inner h1 { font-family: var(--font); font-size: clamp(1.5rem, 2.8vw, 2rem); color: var(--verde); margin-bottom: .6rem; }
.page-content-inner h2 { font-family: var(--font); font-size: 1.2rem; font-weight: normal; color: var(--text-light); margin-bottom: 1.8rem; }
.page-content-inner h3 { font-size: 1.05rem; color: var(--verde); margin: 1.8rem 0 .5rem; }
.page-content-inner p { margin-bottom: 1.1rem; color: var(--text-light); }
.page-content-inner a { color: var(--verde); }
.page-content-inner a:hover { text-decoration: underline; }

/* ARTICOLI */
.articoli-section { padding: 2.5rem 0 3rem; background: var(--white); }
.articoli-section .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.articoli-gruppo h3 { font-size: .95rem; font-weight: 700; color: var(--verde); text-transform: uppercase; letter-spacing: .04em; margin-bottom: .8rem; padding-bottom: .4rem; border-bottom: 2px solid var(--verde-pale); }
.articoli-list { list-style: none; }
.articoli-list li { margin-bottom: .45rem; font-size: .9rem; }
.articoli-list a { color: var(--text); }
.articoli-list a:hover { color: var(--verde); text-decoration: none; }
.articoli-cta { margin-top: .8rem; color: var(--text-light); font-style: italic; }
.articoli-cta a { color: var(--verde); font-weight: 600; }

@media (max-width: 860px) { .articoli-section .container { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .articoli-section .container { grid-template-columns: 1fr; } }
