/* Parcul Industrial Mangalia — stiluri globale */
:root {
  --navy: #0b2340;
  --navy-dark: #071730;
  --navy-light: #14355f;
  --gray-50: #f6f7f9;
  --gray-100: #eceef2;
  --gray-200: #d9dde3;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-900: #111827;
  --accent: #e8a028;
  --accent-dark: #c6821a;
  --white: #ffffff;
  --shadow: 0 4px 14px rgba(11, 35, 64, 0.08);
  --radius: 6px;
  --max: 1180px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header {
  background: var(--navy);
  color: var(--white);
  border-bottom: 3px solid var(--accent);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; padding-bottom: 14px; gap: 20px; flex-wrap: wrap;
}
.brand { color: var(--white); font-weight: 700; font-size: 18px; line-height: 1.2; }
.brand small { display: block; font-weight: 400; font-size: 12px; opacity: 0.75; letter-spacing: 0.5px; text-transform: uppercase; }
.nav { display: flex; gap: 6px; flex-wrap: wrap; }
.nav a {
  color: var(--white); padding: 8px 12px; border-radius: var(--radius);
  font-size: 14px; font-weight: 500;
}
.nav a:hover { background: var(--navy-light); text-decoration: none; }
.nav a.active { background: var(--navy-light); }

.menu-toggle {
  display: none; background: none; border: 1px solid rgba(255,255,255,0.4);
  color: var(--white); padding: 6px 10px; border-radius: var(--radius); cursor: pointer;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy) 60%, var(--navy-light));
  color: var(--white); padding: 70px 0 60px;
}
.hero h1 { font-size: 40px; margin: 0 0 14px; line-height: 1.15; font-weight: 700; }
.hero p.lead { font-size: 18px; opacity: 0.9; max-width: 720px; margin: 0 0 30px; }
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 30px 0 34px;
}
.stat {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  padding: 18px; border-radius: var(--radius);
}
.stat .num { font-size: 26px; font-weight: 700; color: var(--accent); line-height: 1.1; }
.stat .lbl { font-size: 13px; opacity: 0.85; margin-top: 4px; }

/* Buttons */
.btn {
  display: inline-block; padding: 12px 22px; border-radius: var(--radius);
  font-weight: 600; font-size: 15px; cursor: pointer; border: 0; transition: background 0.15s;
}
.btn-primary { background: var(--accent); color: var(--navy-dark); }
.btn-primary:hover { background: var(--accent-dark); text-decoration: none; }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); text-decoration: none; }
.btn-group { display: flex; gap: 12px; flex-wrap: wrap; }

/* Sections */
section { padding: 60px 0; }
section.alt { background: var(--gray-50); }
h2 { font-size: 28px; margin: 0 0 10px; color: var(--navy); }
h3 { font-size: 20px; margin: 0 0 8px; color: var(--navy); }
.section-lead { color: var(--gray-700); max-width: 760px; margin: 0 0 32px; }

/* Cards / grids */
.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow);
}
.card h3 { margin-top: 0; }
.card .icon {
  width: 40px; height: 40px; border-radius: 8px; background: var(--navy);
  color: var(--accent); display: flex; align-items: center; justify-content: center;
  font-weight: 700; margin-bottom: 12px;
}

/* Tables */
.table-wrap { overflow-x: auto; }
table.data {
  width: 100%; border-collapse: collapse; background: var(--white);
  border: 1px solid var(--gray-200); border-radius: var(--radius); overflow: hidden;
}
table.data th, table.data td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--gray-100); font-size: 14px; }
table.data th { background: var(--gray-50); color: var(--navy); font-weight: 600; }
table.data tr:last-child td { border-bottom: 0; }

.badge {
  display: inline-block; padding: 3px 10px; border-radius: 999px;
  font-size: 12px; font-weight: 600;
}
.badge-free { background: #e6f4ea; color: #1e7c3a; }
.badge-busy { background: #fde7e9; color: #b3261e; }

/* Lists */
ul.check { list-style: none; padding: 0; margin: 0; }
ul.check li {
  position: relative; padding: 8px 0 8px 28px; border-bottom: 1px dashed var(--gray-200);
}
ul.check li:last-child { border-bottom: 0; }
ul.check li::before {
  content: "✓"; position: absolute; left: 0; top: 8px;
  color: var(--accent); font-weight: 700;
}

/* Content page */
.page-header {
  background: var(--gray-50); border-bottom: 1px solid var(--gray-200);
  padding: 40px 0 30px;
}
.page-header h1 { margin: 0 0 6px; color: var(--navy); font-size: 32px; }
.page-header p { margin: 0; color: var(--gray-700); }

.prose p { margin: 0 0 14px; color: var(--gray-700); }
.prose h3 { margin-top: 24px; }
.callout {
  background: #fff8ea; border-left: 4px solid var(--accent);
  padding: 14px 18px; border-radius: 4px; margin: 20px 0; font-size: 14px; color: var(--gray-700);
}

/* Leadership cards */
.leader-card {
  display: flex; gap: 18px; align-items: center;
  background: var(--white); border: 1px solid var(--gray-200);
  padding: 18px; border-radius: var(--radius);
}
.leader-avatar {
  width: 72px; height: 72px; border-radius: 50%; background: var(--navy);
  color: var(--accent); display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 700; flex-shrink: 0;
}
.leader-card .name { font-weight: 700; color: var(--navy); font-size: 17px; }
.leader-card .role { color: var(--gray-500); font-size: 14px; }

.leader-general { max-width: 520px; margin: 0 auto 34px; }
.leader-card-general {
  background: var(--navy); border-color: var(--navy); color: var(--white);
  padding: 22px;
}
.leader-card-general .leader-avatar {
  width: 84px; height: 84px; background: var(--accent); color: var(--navy-dark);
  font-size: 28px;
}
.leader-card-general .name { color: var(--white); font-size: 19px; }
.leader-card-general .role { color: rgba(255,255,255,0.85); font-size: 15px; }

.admin-heading {
  text-align: center; font-size: 18px; color: var(--gray-700);
  margin: 0 0 18px; font-weight: 600;
}
.admin-grid { align-items: stretch; }
.leader-card-admin { background: var(--gray-50); border-style: dashed; }
.leader-card-admin .leader-avatar { background: var(--navy-light); color: var(--white); font-size: 20px; }

/* News */
.news-item {
  padding: 20px 0; border-bottom: 1px solid var(--gray-200);
}
.news-item:last-child { border-bottom: 0; }
.news-item .date { color: var(--gray-500); font-size: 13px; }
.news-item h3 { margin: 4px 0 6px; }
.empty {
  padding: 40px; text-align: center; color: var(--gray-500);
  border: 1px dashed var(--gray-200); border-radius: var(--radius);
}

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.contact-info p { margin: 0 0 10px; }
.contact-info strong { color: var(--navy); }
form.contact input, form.contact textarea, form.contact select {
  width: 100%; padding: 10px 12px; border: 1px solid var(--gray-200);
  border-radius: var(--radius); font-size: 15px; font-family: inherit;
  margin-bottom: 12px; background: var(--white);
}
form.contact textarea { min-height: 130px; resize: vertical; }
form.contact label { font-size: 14px; font-weight: 500; color: var(--navy); display: block; margin-bottom: 4px; }
.map-embed { margin-top: 30px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-embed iframe { display: block; width: 100%; height: 380px; border: 0; }

/* Footer */
.site-footer {
  background: var(--navy-dark); color: rgba(255,255,255,0.75);
  padding: 40px 0 24px; margin-top: 60px; font-size: 14px;
}
.site-footer a { color: rgba(255,255,255,0.9); }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 30px; margin-bottom: 24px;
}
.footer-grid h4 { color: var(--white); margin: 0 0 10px; font-size: 15px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 16px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 13px; opacity: 0.8;
}

/* Responsive */
@media (max-width: 860px) {
  .hero { padding: 50px 0 40px; }
  .hero h1 { font-size: 30px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .grid-2, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .nav { display: none; width: 100%; flex-direction: column; padding-top: 10px; }
  .nav.open { display: flex; }
  .nav a { width: 100%; }
  .menu-toggle { display: inline-block; }
  section { padding: 44px 0; }
  h2 { font-size: 24px; }
  .page-header h1 { font-size: 26px; }
}
