
:root {
  --bg: #f8faf9;
  --card: #ffffff;
  --accent: #2c7a4b; 
  --accent-2: #2f89e8;  
  --accent-soft: #e9f5ec;
  --muted: #6b7280;
  --gold: #d2a74d;
  --radius: 12px;
  --wrap-width: 100%;
  --shadow: 0 6px 20px rgba(20, 30, 60, 0.08);
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

html, body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background: var(--bg);
  color: #0b1220;
  margin: 0;
  padding:0px;
  width:100%;
  line-height: 1.4;
}

.site-header {
  background: #fff;
  border-bottom: 2px solid #e8f2eb;
  position: sticky;
  top: 0;
  z-index: 40;
  box-shadow: var(--shadow);
  padding: 10px 0; /* în loc de padding-left */
}


.site-header .wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.wrap {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

header .wrap,
footer .wrap {
  max-width: 100%;
}

main .wrap {
  max-width: 100%;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-2);
  text-decoration: underline;
}

/* ================= HEADER ================= */
.site-header {
  background: #fff;
  border-bottom: 2px solid #e8f2eb;
  position: sticky;
  top: 0;
  padding-left:30px;
  z-index: 40;
  box-shadow: var(--shadow);
}


.brand-link {
  display: flex;
  align-items: center;
  gap: 5px;
}

.logo {
  height: 48px;
  width: 48px;
  object-fit: contain;
  border-radius: 8px;
}

.brand-text .title {
  color: var(--accent);
  display: block;
  font-size: 28px;
}

.brand-text .subtitle {
  font-size: 18px;
  color: var(--muted);
}

.main-nav {
  display: flex;
  gap: 14px;
  align-items: center;
}

.main-nav a {
  padding: 8px 10px;
  border-radius: 8px;
  color: #14324a;
  transition: background 0.3s;
}

.main-nav a:hover {
  background: var(--accent-soft);
}

.btn {
  display: inline-block;
  padding: 8px 3px;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
}

.btn.primary:hover {
  background: #24643f;
}

.btn.ghost {
  background: transparent;
  border: 1px solid rgba(44, 122, 75, 0.25);
  color: var(--accent);
}

.btn.outline {
  border: 1px solid #c9e4f7;
  color: var(--accent-2);
  background: transparent;
  padding: 6px 10px;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 22px;
  padding: 8px;
}

/* ================= HERO ================= */
.main {
  padding-top: 5px;
  padding-bottom: 5px;
  padding:0px;
}

.hero {
  display: flex;
  gap: 8px;
  align-items: top;
}

.hero-left {
  flex: 1;
}

.hero-right {
  flex-basis: 300px;
  display: flex;
  justify-content: center;
}

.hero h1 {
  font-size: 30px;
  margin: 0 0 5px;
  color: var(--accent-2);
}

.lead {
  color: #344054;
  font-size: 18px;
  margin-bottom: 18px;
}

.actions {
  margin-bottom: 18px;
}

/* ================= FEATURES ================= */
.features-quick {
  display: flex;
  gap: 10px;
  margin-top: 5px;
}

.features-quick .f {
  background: var(--card);
  padding: 5px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  border:1px;
  min-width: 120px;
  text-align: center;
  transition: transform 0.3s;
  
}

.features-quick .f:hover {
  transform: translateY(-3px);
  cursor:pointer;
}

.features-quick .f strong {
  display: block;
  color: var(--accent);
}

/* ================= SECTIONS ================= */
.section {
  margin-top: 40px;
  margin-bottom: 40px;
}

.card {
  background: var(--card);
  padding: 5px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 8px;
  color: var(--accent);
}

/* ================= CTA ================= */
.cta {
  text-align: center;
  padding: 15px;
  border-radius: 12px;
  background: linear-gradient(90deg, rgba(47,155,232,0.06), rgba(44,122,75,0.05));
  box-shadow: var(--shadow);
  margin-top: 20px;
}

/* ================= FOOTER ================= */
.site-footer {
  margin-top: 5px;
  background: #fff;
  padding: 5px 0;
  border-top: 1px solid #e6eef6;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 200px 1fr;
  gap: 5px;
  align-items: center;
}

.site-footer h4 {
  margin: 0 0 8px;
  color: var(--accent);
}

.site-footer a {
  color: var(--accent-2);
}

/* ================= NOTICES ================= */
.notice {
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 12px;
}

.notice.success {
  background: #e6f6ec;
  border: 1px solid #cdecd6;
  color: #1b6b3a;
}

.notice.error {
  background: #ffecec;
  border: 1px solid #f5c6c6;
  color: #a00;
}

/* ================= CAROUSEL ================= */
.carousel {
  position: relative;
  margin-top: 20px;
  background: transparent;
  padding: 10px;
  border-radius: 12px;
}

.carousel-track {
  display: flex;
  overflow: hidden;
  gap: 10px;
  transition: transform 0.6s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  display: flex;
  gap: 12px;
  align-items: stretch;
}

.slide-img img {
  width: 100%;
  max-width: 560px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.slide-text {
  background: var(--card);
  padding: 18px;
  border-radius: 10px;
  flex: 1;
  box-shadow: var(--shadow);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.06);
  border: 0;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.carousel-btn:hover {
  background: rgba(44, 122, 75, 0.15);
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
}

.carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: #ddd;
  cursor: pointer;
}

.carousel-indicators button.active {
  background: var(--gold);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 26px;
  cursor: pointer;
  color: var(--accent);
}


/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .main-nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 70px; /* sub header */
    right: 10px;
    background: linear-gradient(135deg, #e0f2f1, #e3f2fd);
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    z-index: 100;
  }

  .main-nav a {
    display: block;
    width: 100%;
    padding: 10px 8px;
    border-radius: 6px;
    color: #14324a;
    background: #fff;
    box-shadow: var(--shadow);
    margin-bottom: 8px;
  }

  .main-nav a:hover {
    background: linear-gradient(135deg, #e9f5ec, #e3f2fd);
  }

  .main-nav.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}


