/* ΔΙΚΟΠΟΥΛΟΥ ΝΙΚΟΛΕΤΤΑ ΜΟΝΟΠΡΟΣΩΠΗ Ι.Κ.Ε. — Stylesheet
   System fonts · No external dependencies */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
               Helvetica, Arial, sans-serif;
  color: #1c2c1c;
  background: #ffffff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

:focus-visible {
  outline: 2px solid #2a7a4b;
  outline-offset: 3px;
  border-radius: 3px;
}

/* ── Layout containers ── */
/* Section content stays narrow and readable */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
/* Header gets a wider container so the full nav fits on one row */
.header-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid #dde8dd;
  height: 56px;
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
}

.site-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #1c2c1c;
  flex-shrink: 0;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.site-logo {
  width: 22px;
  height: 17px;
  flex-shrink: 0;
}

/* Mobile menu toggle — CSS-only */
.menu-toggle-input { display: none; }

.menu-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  cursor: pointer;
  margin-left: auto;
  padding: 5px;
  border-radius: 5px;
  flex-shrink: 0;
}
.menu-burger:hover { background: #f0f5f0; }
.menu-burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: #1c2c1c;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.menu-toggle-input:checked ~ .menu-burger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle-input:checked ~ .menu-burger span:nth-child(2) {
  opacity: 0;
}
.menu-toggle-input:checked ~ .menu-burger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav { margin-left: auto; }
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 0;
}
.main-nav a {
  display: block;
  padding: 0.28rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #3a5a3a;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.main-nav a:hover { background: #f0f7f0; color: #1c2c1c; }

/* ── Hero ── */
.hero {
  background: linear-gradient(170deg, #f4f9f4 0%, #eaf4ea 55%, #f6fbf6 100%);
  border-bottom: 1px solid #dde8dd;
  padding: 3.5rem 0 3rem;
  overflow: hidden;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.hero-text {
  flex: 1;
  min-width: 0;
}

.hero-visual {
  flex-shrink: 0;
  width: 216px;
  opacity: 0.7;
  align-self: stretch;
  display: flex;
  align-items: center;
}

.hero-visual-svg {
  width: 100%;
  height: auto;
  max-height: 164px;
}

.company-name {
  font-size: clamp(0.88rem, 1.8vw, 1.1rem);
  font-weight: 700;
  color: #2a7a4b;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  line-height: 1.4;
}

.hero-headline {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 700;
  color: #1c2c1c;
  line-height: 1.25;
  margin-bottom: 1.1rem;
}

.hero-intro {
  font-size: 0.97rem;
  color: #3a5a3a;
  line-height: 1.75;
}

/* ── Sections ── */
.section {
  padding: 3.5rem 0;
}
.section-alt {
  background: #f8fbf8;
}

.section h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1c2c1c;
  padding-bottom: 0.6rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #2a7a4b;
  display: inline-block;
}

.section-body {
  max-width: 720px;
}

.section-body p {
  color: #3a5a3a;
  font-size: 0.97rem;
  margin-bottom: 1rem;
}
.section-body p:last-child { margin-bottom: 0; }

/* ── Data Table ── */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.data-table th,
.data-table td {
  padding: 0.6rem 0.85rem;
  border: 1px solid #dde8dd;
  text-align: left;
  vertical-align: top;
}

.data-table th {
  background: #f0f7f0;
  font-weight: 600;
  color: #1c2c1c;
  width: 36%;
  white-space: nowrap;
}

.data-table td {
  color: #3a5a3a;
}

.data-table tr:nth-child(even) td {
  background: #fafdf8;
}

.status-active {
  color: #1a5c35;
  font-weight: 600;
}

.table-note {
  font-size: 0.8rem;
  color: #6a8a6a;
  font-style: italic;
}

/* ── WIP Notice ── */
.wip-notice {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.9rem 1.1rem;
  background: #f8f8f0;
  border: 1px solid #e0ddb0;
  border-radius: 6px;
  font-size: 0.9rem;
  color: #5a5a30;
  width: fit-content;
}
.wip-icon { font-size: 1rem; flex-shrink: 0; }

/* ── Contact ── */
.contact-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-list {
  display: grid;
  gap: 0.6rem;
}

.contact-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 0.5rem;
  align-items: baseline;
}

.contact-row dt {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6a8a6a;
}

.contact-row dd {
  font-size: 0.97rem;
  color: #1c2c1c;
}

.contact-row a {
  color: #2a7a4b;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact-row a:hover { color: #1a5c35; }

/* Location card */
.location-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1.1rem;
  background: #f4f9f4;
  border: 1px solid #c8e0c8;
  border-radius: 8px;
  width: fit-content;
}

.location-card-icon {
  flex-shrink: 0;
  width: 28px;
  color: #2a7a4b;
}
.location-card-icon svg { width: 28px; height: 33px; }

.location-card-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #6a8a6a;
  margin-bottom: 0.15rem;
}

.location-card-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: #1c2c1c;
}

/* ── Footer ── */
.site-footer {
  background: #1c2c1c;
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  text-align: center;
}

.footer-inner p {
  font-size: 0.78rem;
  color: #8aaa8a;
}

.footer-inner p:first-child {
  font-weight: 600;
  color: #b0c8b0;
}

/* ── Responsive ── */

/* Hamburger menu at ≤980px — wide enough to catch window sizes
   where 7 nav items would wrap awkwardly */
@media (max-width: 980px) {
  .menu-burger { display: flex; }

  .main-nav {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid #dde8dd;
    padding: 0.6rem 1.25rem 1rem;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    display: none;
    z-index: 99;
  }
  .menu-toggle-input:checked ~ .main-nav { display: block; }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
  }
  .main-nav a {
    padding: 0.6rem 0.75rem;
    font-size: 0.92rem;
  }
}

@media (max-width: 680px) {
  .hero-inner {
    flex-direction: column;
    gap: 1.5rem;
  }
  .hero-visual {
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
    opacity: 0.5;
  }
  .hero-visual-svg { max-height: 120px; }

  .data-table th { width: auto; }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 0.12rem;
  }

  .location-card { width: 100%; }
}

@media (max-width: 480px) {
  .data-table,
  .data-table tbody,
  .data-table tr,
  .data-table th,
  .data-table td {
    display: block;
    width: 100%;
  }
  .data-table th {
    padding-bottom: 0.15rem;
    border-bottom: none;
  }
  .data-table td {
    padding-top: 0.15rem;
    border-top: none;
    margin-bottom: 0.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
