/* ========== RESET & BASE ========== */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #fafafa;   /* alb-gri */
  color: #222;           /* text aproape negru */
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main { flex: 1; }

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Container reutilizabil */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ========== HEADER ========== */
.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: #222;
}
.logo img { height: 32px; }

/* Desktop nav */
.main-nav ul {
  display: flex;
  gap: 1.5rem;
}
.main-nav a {
  font-weight: 500;
  transition: color 0.3s ease;
}
.main-nav a:hover { color: #FFD600; } /* galben accent */

/* Burger button */
.burger {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #222;
}

/* ========== HERO ========== */
.hero {
  text-align: center;
  padding: 6rem 1rem;
  background: #fff;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.cta {
  display: inline-block;
  background: #FFD600;   /* galben primar */
  color: #222;           /* text închis pe galben */
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease;
}
.cta:hover { background: #FBC02D; } /* galben mai închis */

.sub-hero {
  padding: 4rem 1rem;
  background: #fafafa;
  border-bottom: 1px solid #eee;
}
.sub-hero h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.sub-hero p {
  font-size: 1.1rem;
  color: #555;
}
.content {
  padding: 3rem 0;
}
.content h2 {
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  color: #222;
}
.content p {
  margin-bottom: 1rem;
  max-width: 800px;
}

/* ========== FOOTER ========== */
.site-footer {
  background: #111; /* negru */
  color: #fff;
  padding: 1.5rem 0;
  margin-top: auto;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-content a {
  color: #fff;
  margin: 0 0.5rem;
}
.footer-content a:hover { text-decoration: underline; }
.socials img {
  width: 24px;
  height: 24px;
  margin-left: 1rem;
  filter: invert(1);
}

/* ========== MOBILE NAV ========== */
@media(max-width: 768px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 250px;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    gap: 1.5rem;
    transition: transform 0.3s ease;
    transform: translateX(100%);
    box-shadow: -2px 0 8px rgba(0,0,0,0.2);
    z-index: 1001;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .main-nav.active {
    transform: translateX(0);
    right: 0;
  }

  .burger { display: block; }

  /* Overlay întunecat când e deschis meniul */
  .nav-overlay {
    display: none;
    position: fixed;
    top:0; left:0; right:0; bottom:0;
    background: rgba(0,0,0,0.5);
    z-index: 900;
  }
  .nav-overlay.active { display: block; }
}

.content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  color: #FBC02D; /* galben secundar */
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin-bottom: 3rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
}

.contact-socials {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: bold;
  font-size: 1.2rem;
  color: #222;
  transition: color 0.3s ease;
}

.social-link img {
  width: 28px;
  height: 28px;
}

.social-link:hover {
  color: #FFD600; /* galben accent */
}

form h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #FFD600; /* accent galben Tribro */
}

form label {
  font-weight: bold;
  margin-top: 1rem;
}

form input,
form select,
form textarea {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  width: 100%;
  font-size: 1rem;
}

.form-consent {
  margin: 1.5rem 0;
  font-size: 0.95rem;
  color: #444;
}

.form-consent input {
  margin-right: 0.5rem;
}

.form-consent a {
  color: #FFD600;
  font-weight: bold;
}
