/* ═══════════════════════════════════
   home.css — Stiluri pagina Acasă
   ═══════════════════════════════════ */

/* ── HERO ── */
.home-hero {
  height: 100vh;
  min-height: 620px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 65% 45%, rgba(74,103,65,0.45) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 75%, rgba(42,28,14,0.55) 0%, transparent 50%),
    linear-gradient(160deg, #1a2c1b 0%, #2d3e2f 50%, #1e2610 100%);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, rgba(30,46,32,0.28) 0%, rgba(42,28,14,0.62) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  animation: heroFade 1.3s ease both;
}

.hero-eyebrow {
  font-size: 0.64rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}

.hero-content h1     { color: var(--cream); margin-bottom: 22px; }
.hero-content h1 em  { color: var(--gold-light); }

.hero-sub {
  font-size: 1rem;
  color: rgba(246,241,233,0.72);
  max-width: 480px;
  margin: 0 auto 36px;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(246,241,233,0.35);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  animation: scrollPulse 2.4s ease-in-out infinite;
  z-index: 2;
}
.hero-scroll svg { width: 14px; height: 20px; }

@keyframes heroFade {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: none; }
}
@keyframes scrollPulse {
  0%,100% { transform: translateX(-50%) translateY(0);  opacity: .35; }
  50%      { transform: translateX(-50%) translateY(8px); opacity: .60; }
}

/* ── PREVIEW GRID ── */
.preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}

.preview-item {
  background: var(--warm-white);
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  transition: background 0.3s;
}
.preview-item:hover                { background: var(--green-deep); }
.preview-item:hover .pi-title,
.preview-item:hover .pi-text,
.preview-item:hover .pi-more       { color: var(--cream); }

.pi-icon  { font-size: 2.2rem; }
.pi-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--brown-dark);
  transition: color 0.3s;
}
.pi-text  { font-size: 0.88rem; color: var(--text-light); flex: 1; line-height: 1.7; transition: color 0.3s; }
.pi-more  { font-size: 0.7rem; letter-spacing: 0.14em; color: var(--gold); transition: color 0.3s; }

/* ── IDEAL GRID ── */
.ideal-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
}

.ideal-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 44px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  transition: background 0.3s;
  text-align: center;
}
.ideal-cell:hover { background: rgba(200,165,86,0.08); }
.ideal-cell .ic-icon { font-size: 2.2rem; }
.ideal-cell .ic-name {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(246,241,233,0.48);
}

/* ── CTA BOX ── */
.cta-box {
  max-width: 600px;
  margin: 0 auto;
  padding: 72px 52px;
  background: var(--cream);
  border: 1px solid var(--border);
  text-align: center;
}
.cta-box h2  { margin-bottom: 16px; }
.cta-box p   { color: var(--text-light); margin-bottom: 32px; }
.cta-box .btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .preview-grid { grid-template-columns: 1fr 1fr; }
  .ideal-grid   { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .preview-grid { grid-template-columns: 1fr; }
  .ideal-grid   { grid-template-columns: repeat(2, 1fr); }
  .cta-box      { padding: 48px 24px; }
}
