/* ===========================
   Trichrome Seeds — styles.css
   =========================== */

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

:root {
  --green-bright:  #4caf50;
  --green-mid:     #2e7d32;
  --green-dark:    #1b5e20;
  --green-accent:  #76c442;
  --bg-black:      #0a0a0a;
  --bg-dark:       #111111;
  --bg-card:       #161616;
  --bg-card-hover: #1e1e1e;
  --border:        #2a2a2a;
  --text-primary:  #f0f0f0;
  --text-secondary:#a0a0a0;
  --text-muted:    #606060;
  --radius:        8px;
  --radius-lg:     14px;
  --shadow:        0 4px 24px rgba(0,0,0,0.5);
  --glow:          0 0 24px rgba(76,175,80,0.18);
}

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

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg-black);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
}

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

a { color: var(--green-accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--green-bright); }

h1,h2,h3,h4 { line-height: 1.25; font-weight: 700; }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-accent);
  margin-bottom: .75rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
}

section { padding: 100px 0; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Navbar ---------- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: background .35s, box-shadow .35s;
}

#navbar.scrolled {
  background: rgba(10,10,10,.95);
  box-shadow: 0 2px 20px rgba(0,0,0,.6);
  backdrop-filter: blur(10px);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -.01em;
}

.nav-logo svg { flex-shrink: 0; }

.nav-logo span { color: var(--green-accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: .9rem;
  font-weight: 500;
  transition: color .2s;
}

.nav-links a:hover { color: var(--text-primary); }

.nav-cta {
  background: var(--green-mid);
  color: #fff !important;
  padding: .45rem 1.1rem;
  border-radius: var(--radius);
  transition: background .2s !important;
}

.nav-cta:hover { background: var(--green-bright) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Mobile nav ---------- */
@media (max-width: 768px) {
  .nav-hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(10,10,10,.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    transform: translateY(-110%);
    opacity: 0;
    transition: transform .35s ease, opacity .35s ease;
    pointer-events: none;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links li { width: 100%; text-align: center; }

  .nav-links a {
    display: block;
    padding: .85rem 1rem;
    font-size: 1rem;
  }

  .nav-cta {
    margin: .5rem 2rem;
    padding: .6rem 1rem !important;
    border-radius: var(--radius) !important;
  }
}

/* ---------- Hero ---------- */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(30,90,30,.35) 0%, transparent 70%),
              linear-gradient(160deg, #0a0a0a 55%, #0d1a0d 100%);
}

.hero-bg-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg-art::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  right: -100px; top: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46,125,50,.22) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
}

.hero-bg-art::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  left: 10%; bottom: 5%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(76,175,80,.1) 0%, transparent 70%);
  animation: pulse 12s ease-in-out 2s infinite;
}

@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.08); opacity: .7; }
}

.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(76,175,80,.12);
  border: 1px solid rgba(76,175,80,.25);
  color: var(--green-accent);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .4rem .9rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--green-accent);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -.02em;
}

.hero-title .accent { color: var(--green-accent); }

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: 2.25rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: .75rem 1.6rem;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all .2s ease;
  letter-spacing: .01em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
  color: #fff;
  box-shadow: 0 4px 20px rgba(46,125,50,.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--green-bright), var(--green-mid));
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(76,175,80,.4);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--green-accent);
  color: var(--green-accent);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.stat-item { text-align: left; }

.stat-number {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--green-accent);
  line-height: 1;
  margin-bottom: .2rem;
}

.stat-label {
  font-size: .8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Hero illustration */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-plant-wrap {
  position: relative;
  width: 340px;
  height: 340px;
}

.hero-circle-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46,125,50,.25) 0%, transparent 70%);
  animation: pulse 6s ease-in-out infinite;
}

.hero-circle-ring {
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px solid rgba(76,175,80,.2);
  animation: spin-slow 20s linear infinite;
}

.hero-circle-ring::before {
  content: '';
  position: absolute;
  width: 10px; height: 10px;
  background: var(--green-accent);
  border-radius: 50%;
  top: -5px; left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 12px var(--green-accent);
}

@keyframes spin-slow { to { transform: rotate(360deg); } }

.hero-plant-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
}

/* ---------- About ---------- */
#about {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.about-image-wrap {
  position: relative;
}

.about-img-card {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, #0d1f0d, #162516);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(76,175,80,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow), var(--glow);
}

.about-img-card svg {
  opacity: .6;
  filter: drop-shadow(0 0 18px rgba(76,175,80,.3));
}

.about-accent-box {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--green-dark);
  border: 1px solid rgba(76,175,80,.3);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow);
}

.about-accent-box strong {
  display: block;
  font-size: 1.6rem;
  color: var(--green-accent);
  font-weight: 800;
  line-height: 1;
}

.about-accent-box span {
  font-size: .8rem;
  color: var(--text-secondary);
  white-space: nowrap;
}

.about-features {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: .9rem;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  padding: 1rem 1.2rem;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color .2s, box-shadow .2s;
}

.about-feature:hover {
  border-color: rgba(76,175,80,.3);
  box-shadow: var(--glow);
}

.feature-icon {
  width: 38px; height: 38px;
  background: rgba(76,175,80,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green-accent);
}

.feature-text h4 { font-size: .95rem; margin-bottom: .15rem; }
.feature-text p  { font-size: .85rem; color: var(--text-secondary); }

@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image-wrap { max-width: 380px; margin: 0 auto; }
}

/* ---------- Products ---------- */
#products { background: var(--bg-black); }

.products-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.products-header .section-sub { margin: 0 auto; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  cursor: default;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,.5), 0 0 30px rgba(76,175,80,.1);
  border-color: rgba(76,175,80,.3);
}

.product-img {
  height: 200px;
  position: relative;
  overflow: hidden;
}

/* Each card gets a distinct gradient */
.product-card:nth-child(1) .product-img { background: linear-gradient(135deg,#0d2010,#1a3d1a); }
.product-card:nth-child(2) .product-img { background: linear-gradient(135deg,#102018,#1f3c2a); }
.product-card:nth-child(3) .product-img { background: linear-gradient(135deg,#0f1a10,#253b18); }
.product-card:nth-child(4) .product-img { background: linear-gradient(135deg,#131d12,#2a4020); }
.product-card:nth-child(5) .product-img { background: linear-gradient(135deg,#0b1f0d,#174d17); }
.product-card:nth-child(6) .product-img { background: linear-gradient(135deg,#0e200e,#1e4a1e); }

.product-img-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .7;
}

.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .28rem .7rem;
  border-radius: 100px;
}

.badge-auto  { background: rgba(46,125,50,.7);  color: #b9f0b9; border: 1px solid rgba(76,175,80,.4); }
.badge-photo { background: rgba(25,80,80,.7);   color: #a0e8e8; border: 1px solid rgba(40,160,160,.4); }
.badge-fem   { background: rgba(90,40,100,.7);  color: #e0b0f0; border: 1px solid rgba(160,80,180,.4); }

.product-body { padding: 1.4rem; }

.product-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .45rem;
  color: var(--text-primary);
}

.product-desc {
  font-size: .875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.product-meta {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  margin-bottom: 1.1rem;
}

.meta-pill {
  font-size: .72rem;
  padding: .2rem .6rem;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-secondary);
}

.meta-pill.thc { border-color: rgba(76,175,80,.3); color: var(--green-accent); }

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.product-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--green-accent);
}

.product-price span {
  font-size: .8rem;
  color: var(--text-muted);
  font-weight: 400;
}

.btn-sm {
  padding: .45rem 1rem;
  font-size: .82rem;
  border-radius: 6px;
}

@media (max-width: 1000px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

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

/* ---------- Contact ---------- */
#contact {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
  align-items: start;
}

.contact-info-items {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
}

.contact-icon {
  width: 40px; height: 40px;
  background: rgba(76,175,80,.1);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--green-accent);
}

.contact-item h4 { font-size: .9rem; margin-bottom: .2rem; }
.contact-item p  { font-size: .875rem; color: var(--text-secondary); }

/* Form */
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: .45rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-size: .9rem;
  font-family: inherit;
  padding: .7rem 1rem;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(46,125,50,.2);
}

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

.form-group select { cursor: pointer; }
.form-group select option { background: var(--bg-dark); }

.form-submit { width: 100%; justify-content: center; margin-top: .5rem; }

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: var(--green-accent);
}

.form-success svg { margin: 0 auto 1rem; }
.form-success h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.form-success p  { font-size: .9rem; color: var(--text-secondary); }

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 500px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 1.5rem; }
}

/* ---------- Footer ---------- */
footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer-brand .nav-logo { font-size: 1.1rem; margin-bottom: 1rem; }

.footer-brand p {
  font-size: .875rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: .7rem;
}

.social-btn {
  width: 36px; height: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary);
  transition: background .2s, border-color .2s, color .2s;
}

.social-btn:hover {
  background: rgba(76,175,80,.12);
  border-color: rgba(76,175,80,.35);
  color: var(--green-accent);
}

.footer-col h4 {
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.footer-col ul a {
  font-size: .875rem;
  color: var(--text-secondary);
  transition: color .2s;
}

.footer-col ul a:hover { color: var(--green-accent); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 0;
  font-size: .8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: .5rem;
}

.footer-disclaimer {
  font-size: .72rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding: 1rem 0 1.5rem;
  line-height: 1.6;
}

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

/* ---------- Scroll animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ---------- Misc ---------- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-black); }
::-webkit-scrollbar-thumb { background: #2a2a2a; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--green-dark); }

::selection { background: rgba(76,175,80,.3); }
