/* ═══════════════════════════════════════════════
   Δάσος Μικροκλεισούρας — Main Stylesheet
   Font: Roboto (Google Fonts) — single sans-serif font for all text
   ═══════════════════════════════════════════════ */

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

:root {
  --green-dark:  #1a2e1a;
  --green-mid:   #2d5a27;
  --green-light: #4a8c3f;
  --gold:        #c9a84c;
  --cream:       #f5f0e8;
  --white:       #ffffff;
  --text-dark:   #1a1a1a;
  --text-mid:    #444444;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Roboto', sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 3rem;
  background: rgba(26,46,26,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,168,76,0.3);
}
.nav-logo {
  display: flex; align-items: center; gap: 0.8rem;
  text-decoration: none;
}
.nav-logo-icon {
  width: 40px; height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.nav-logo-text {
  color: var(--cream);
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  line-height: 1.2;
}
.nav-logo-text span {
  display: block; font-size: 0.7rem; color: var(--gold);
  font-family: 'Roboto', sans-serif; letter-spacing: 0.05em; font-weight: 400;
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: rgba(245,240,232,0.85);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

/* ── HERO ── */
#hero {
  position: relative;
  height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: var(--green-dark);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(26,46,26,0.55) 0%, rgba(26,46,26,0.2) 40%, rgba(26,46,26,0.7) 100%),
    url('https://images.unsplash.com/photo-1448375240586-882707db888b?w=1800&auto=format&fit=crop&q=80') center/cover no-repeat;
  animation: slowZoom 20s ease-in-out infinite alternate;
}
@keyframes slowZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 860px;
}
.hero-badge {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  padding: 0.4rem 1.2rem;
  border-radius: 2px;
  margin-bottom: 1.6rem;
}
.hero-title {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
}
.hero-title em { color: var(--gold); font-style: italic; }
.hero-subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: rgba(245,240,232,0.85);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  font-weight: 400;
  font-style: italic;
}
.hero-cta {
  display: inline-flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
}
.btn {
  padding: 0.85rem 2.2rem;
  border-radius: 2px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: 'Roboto', sans-serif;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer; border: none;
}
.btn-gold { background: var(--gold); color: var(--green-dark); }
.btn-gold:hover { background: #e0bc5c; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.4); }
.btn-outline { border: 1.5px solid rgba(255,255,255,0.7); color: var(--white); background: transparent; }
.btn-outline:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  color: rgba(255,255,255,0.6); font-size: 0.68rem; letter-spacing: 0.1em;
  text-transform: uppercase; animation: bounce 2s ease-in-out infinite;
  font-family: 'Roboto', sans-serif;
}
.hero-scroll::after {
  content: '';
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--green-mid);
  padding: 2rem 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}
.stat {
  text-align: center;
  padding: 1rem;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.stat:last-child { border-right: none; }
.stat-number {
  font-family: 'Roboto', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 400;
}

/* ── SECTIONS (shared) ── */
section { padding: 6rem 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-light);
  font-weight: 600;
  margin-bottom: 0.6rem;
  font-family: 'Roboto', sans-serif;
}
.section-title {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--green-dark);
}
.section-title em { color: var(--green-light); font-style: italic; }
.section-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-mid);
  font-family: 'Roboto', sans-serif;
}

/* ── COOPERATIVE ── */
#cooperative { background: var(--white); }

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.info-item {
  border-left: 3px solid var(--green-light);
  padding: 1.6rem 1.5rem 1.6rem 2rem;
  background: var(--cream);
  border-radius: 0 6px 6px 0;
}
.info-item.span2 { grid-column: 1 / -1; }
.info-label {
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-light);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: 'Roboto', sans-serif;
}
.info-value {
  font-family: 'Roboto', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.2;
  margin-bottom: 0.6rem;
}
.info-body {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  font-family: 'Roboto', sans-serif;
}
.info-item ul {
  font-size: 0.9rem;
  line-height: 1.25;
  padding-left: 1.1rem;
  margin-top: 0.3rem;
  font-family: 'Roboto', sans-serif;
}
.info-item ul li { margin-bottom: 0.25rem; }

.info-list {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
  padding-left: 1.2rem;
  margin-top: 0.4rem;
  font-family: 'Roboto', sans-serif;
}
.info-list li { margin-bottom: 0.35rem; }

/* ── VILLAGE ── */
#village { background: var(--cream); }

.village-subs { margin-top: 3rem; }
.vsub {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 3.5rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(26,46,26,0.08);
  align-items: start;
}
.vsub:first-child { padding-top: 0; }
.vsub:last-child { border-bottom: none; padding-bottom: 0; }
.vsub-label-wrap { position: sticky; top: 6.5rem; }
.vsub-num {
  font-family: 'Roboto', sans-serif;
  font-size: 2.8rem;
  color: rgba(74,140,63,0.12);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.vsub-label {
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-light);
  font-weight: 600;
  margin-bottom: 0.3rem;
  font-family: 'Roboto', sans-serif;
}
.vsub-title {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.3;
}
.vsub-content p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 0.8rem;
  font-family: 'Roboto', sans-serif;
}
.vsub-content p:last-child { margin-bottom: 0; }
.vsub-quote {
  background: var(--white);
  border-left: 3px solid var(--gold);
  padding: 0.9rem 1.3rem;
  border-radius: 0 4px 4px 0;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-top: 0.8rem;
  font-style: italic;
  font-family: 'Roboto', sans-serif;
}

/* ── FOREST ── */
#forest {
  background: var(--green-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
#forest::before {
  content: '';
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1448375240586-882707db888b?w=1400&auto=format&fit=crop&q=60') center/cover;
  opacity: 0.08;
}
#forest .section-inner { position: relative; z-index: 1; }
#forest .section-label { color: var(--gold); }
#forest .section-title { color: var(--white); }
#forest .section-body { color: rgba(255,255,255,0.8); }
.forest-grid {
  display: grid;
  grid-template-columns: repeat1(1, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.forest-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 2rem;
  transition: transform 0.3s, background 0.3s;
}
.forest-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.1); }
.forest-card-icon { font-size: 2rem; margin-bottom: 1rem; }
.forest-card h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.forest-card p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 0.5rem;
  font-family: 'Roboto', sans-serif;
}
.forest-card p:last-child { margin-bottom: 0; }
.forest-card ul {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  padding-left: 1.1rem;
  margin-top: 0.3rem;
  font-family: 'Roboto', sans-serif;
}
.forest-card ul li { margin-bottom: 0.25rem; }

/* ── FOREST MAP ── */
.forest-map {
  margin-top: 2.5rem;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.3);
}
.forest-map img {
  width: 100%;
  display: block;
}
.forest-map figcaption {
  background: rgba(0,0,0,0.35);
  color: rgba(255,255,255,0.55);
  font-size: 0.8rem;
  padding: 0.7rem 1rem;
  font-style: italic;
  text-align: center;
  font-family: 'Roboto', sans-serif;
}

/* ── GALLERY ── */
#gallery { background: var(--white); }
#gallery .section-title { text-align: center; }
#gallery .section-label { text-align: center; }
.gallery-intro {
  text-align: center; font-size: 0.95rem; color: var(--text-mid);
  margin-bottom: 3rem; max-width: 560px; margin-left: auto; margin-right: auto;
  font-family: 'Roboto', sans-serif; font-style: italic; line-height: 1.7;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: #e0ded8;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:nth-child(1) { grid-column: 1 / 3; height: 380px; }
.gallery-item:nth-child(2) { height: 380px; }
.gallery-item:nth-child(3),
.gallery-item:nth-child(4),
.gallery-item:nth-child(5) { height: 240px; }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,46,26,0.7) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; padding: 1.2rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white); font-size: 0.85rem; font-weight: 500;
  font-family: 'Roboto', sans-serif;
}

/* ── CONTACT ── */
#contact { background: var(--green-dark); color: var(--white); }
#contact .section-label { color: var(--gold); }
#contact .section-title { color: var(--white); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
}
.contact-body {
  font-size: 1rem; color: rgba(255,255,255,0.75);
  line-height: 1.8; margin-bottom: 2rem;
  font-family: 'Roboto', sans-serif;
}
.contact-items { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-item { display: flex; gap: 1rem; align-items: center; }
.contact-item-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(201,168,76,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.contact-item-text strong {
  display: block; font-size: 0.72rem; color: var(--gold);
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.2rem;
  font-family: 'Roboto', sans-serif; font-weight: 600;
}
.contact-item-text span {
  font-size: 0.95rem; color: rgba(255,255,255,0.85);
  font-family: 'Roboto', sans-serif;
}
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form input,
.contact-form textarea {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  padding: 0.85rem 1.1rem;
  color: var(--white);
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border 0.2s;
  width: 100%;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.4); }
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--gold); }
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form .btn-gold { align-self: flex-start; }
.map-area {
  margin-top: 1.5rem;
  border-radius: 6px;
  overflow: hidden;
  height: 220px;
  border: 1px solid rgba(255,255,255,0.1);
}
.map-area iframe { width: 100%; height: 100%; border: none; }

/* ── FOOTER ── */
footer {
  background: #0e1a0e;
  padding: 2rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  border-top: 1px solid rgba(201,168,76,0.2);
}
footer p { font-size: 0.8rem; color: rgba(255,255,255,0.4); font-family: 'Roboto', sans-serif; }
footer .footer-links { display: flex; gap: 1.5rem; }
footer .footer-links a {
  font-size: 0.8rem; color: rgba(255,255,255,0.4);
  text-decoration: none; font-family: 'Roboto', sans-serif;
}
footer .footer-links a:hover { color: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .info-grid { grid-template-columns: 1fr; }
  .info-item.span2 { grid-column: 1; }
  .vsub { grid-template-columns: 1fr; gap: 1rem; }
  .vsub-label-wrap { position: static; }
  .vsub-num { font-size: 1.8rem; }
  .forest-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(1) { grid-column: 1 / -1; height: 260px; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
}
@media (max-width: 560px) {
  section { padding: 4rem 1.2rem; }
  .forest-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1) { height: 220px; }
  .gallery-item { height: 200px !important; }
}
