/* Reset mic */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top, #21153b 0, #050509 55%);
  color: #f6f6f6;
  line-height: 1.6;
}

/* Container */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header & nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(5, 5, 9, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
}

.logo span {
  color: #a476ff;
}

.site-nav {
  display: flex;
  gap: 1.4rem;
}

.site-nav a {
  text-decoration: none;
  color: #cfcfe5;
  font-size: 0.9rem;
}

.site-nav a:hover {
  color: #ffffff;
}

/* HERO */
.hero {
  padding: 4.5rem 0 3.5rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.7rem;
  color: #a89cff;
  margin-bottom: 0.4rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 3vw, 3rem);
  margin: 0 0 1rem;
}

.hero-text {
  color: #cfcfe5;
  max-width: 34rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
}

/* Poza din hero */
.hero-photo-wrapper {
  display: flex;
  justify-content: center;
}

.hero-photo {
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 999px;
  border: 4px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.7);
}

/* Secțiuni */
.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: rgba(5, 5, 9, 0.9);
}

.section h2 {
  font-size: 1.7rem;
  margin-top: 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

/* Box evidențiat */
.highlight-box {
  background: rgba(9, 9, 18, 0.9);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.95rem;
}

.highlight-box h3 {
  margin-top: 0;
}

.highlight-box ul {
  padding-left: 1.1rem;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background: rgba(9, 9, 18, 0.95);
  border-radius: 16px;
  padding: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.95rem;
}

/* Contact */
.contact-form {
  background: rgba(9, 9, 18, 0.95);
  border-radius: 16px;
  padding: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-form label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.6rem 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(2, 2, 8, 0.9);
  color: #f6f6f6;
  font-family: inherit;
  font-size: 0.95rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #a476ff;
}

.contact-alt {
  margin-top: 1rem;
  color: #ccccdd;
}

.contact-alt a {
  color: #a476ff;
}

/* Butoane */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.1s ease,
    background 0.15s ease;
}

.btn.primary {
  background: linear-gradient(135deg, #7f5cff, #b286ff);
  color: #fff;
  box-shadow: 0 14px 30px rgba(127, 92, 255, 0.35);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(127, 92, 255, 0.45);
}

.btn.ghost {
  border-color: rgba(255, 255, 255, 0.4);
  color: #f6f6f6;
  background: transparent;
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.06);
}

.btn.full-width {
  width: 100%;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.6rem 0 2.2rem;
  font-size: 0.85rem;
  color: #a0a0b5;
  background: #050509;
}

.footer-note {
  margin-top: 0.35rem;
  max-width: 32rem;
}

/* Responsive */
@media (max-width: 800px) {
  .hero-layout,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .hero-photo {
    width: 220px;
    height: 220px;
  }

  .site-nav {
    display: none; /* pentru simplu; putem face meniu mobil mai târziu */
  }
}
