:root {
  --bg-page: #f3f4f6;
  --bg-card: #ffffff;
  --accent: #0f4aa8;
  --accent-dark: #062a61;
  --accent-soft: #dbeafe;
  --text-main: #0f172a;
  --text-muted: #4b5563;
  --border-soft: #e5e7eb;
  --shadow-soft: 0 14px 35px rgba(15,23,42,0.18);
  --radius-card: 18px;
  --radius-pill: 999px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg-page);
  color: var(--text-main);
}

/* LAYOUT BASIC */

.container {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 16px;
}

.section {
  padding: 32px 0;
}

.section-alt {
  background: #e5e7eb33;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #0b1120;
  color: #e5e7eb;
  box-shadow: 0 4px 12px rgba(15,23,42,0.45);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
}

.brand-main {
  font-weight: 800;
  font-size: 20px;
}

.brand-name {
  color: #60a5fa;   /* Monede – albastru */
}

.brand-dotnet {
  color: #ffffff;   /* .net – roșu */
}


.brand-tagline {
  display: block;
  font-size: 13px;
  color: #9ca3af;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 14px;
}

.main-nav a {
  color: #e5e7eb;
  text-decoration: none;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.main-nav a:hover {
  background: rgba(37,99,235,0.3);
}

/* HERO */

.hero {
  padding-top: 28px;
}

.hero-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 880px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    align-items: center;
  }
}

.hero-text {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  padding: 22px 20px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-soft);
}

.eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin: 0 0 6px;
}

.hero h1 {
  margin: 0 0 10px;
  font-size: clamp(24px, 4vw, 32px);
  line-height: 1.25;
}

.lead {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 8px 0 10px;
}

.small-note {
  font-size: 13px;
  color: var(--text-muted);
}

.hero-media {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-circle {
  background: radial-gradient(circle at 30% 20%, #bfdbfe, #1d4ed8);
  border-radius: 999px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-circle img {
  width: 100%;
  max-width: 260px;
  border-radius: 999px;
  border: 4px solid rgba(15,23,42,0.8);
  background: #fff;
}

.hero-media-caption {
  font-size: 13px;
  color: var(--text-muted);
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  min-height: 40px;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn-ghost {
  background: #f9fafb;
  border-color: var(--border-soft);
  color: var(--text-main);
}

.btn-ghost:hover {
  background: #e5e7eb;
}

.btn-secondary {
  background: var(--accent-soft);
  border-color: #bfdbfe;
  color: var(--accent-dark);
}

.btn-secondary:hover {
  background: #bfdbfe;
}

/* CONTENT SECTIONS */

.section h2 {
  margin: 0 0 10px;
  font-size: 22px;
}

.section p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-main);
  margin: 0 0 10px;
}

.grid-2 {
  display: grid;
  gap: 16px;
  margin-top: 14px;
}

@media (min-width: 880px) {
  .grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* GALERIE FOTO – 6 coloane desktop, 2 coloane pe mobil portrait */

.gallery-grid {
  margin-top: 18px;
  display: grid !important;
  grid-template-columns: repeat(6, 1fr) !important;
  gap: 5px !important;
  align-items: start;
}

.gallery-grid figure {
  margin: 0;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.gallery-grid img {
  width: 100%;
  display: block;
}

.gallery-grid figcaption {
  padding: 6px 8px 8px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
}

/* Telefon / tabletă în PORTRAIT: 2 coloane */
@media (max-width: 900px) and (orientation: portrait) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* LANDSCAPE (telefon întors) rămâne 6 coloane – nu mai punem alt media query */

/* LISTA PASI */

.steps-list {
  margin: 8px 0 10px 18px;
  padding: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-main);
}

.steps-list li {
  margin-bottom: 6px;
}

/* FOOTER */

.site-footer {
  background: #020617;
  color: #e5e7eb;
  padding: 18px 0 20px;
  margin-top: 10px;
}

.footer-inner {
  font-size: 13px;
}

.footer-keywords {
  margin-top: 6px;
  color: #9ca3af;
}

/* Social links inline (folosite în footer) */

.social-links-inline {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
}

.social-links-inline a {
  color: #60a5fa;
  text-decoration: none;
  font-weight: 600;
}

.social-links-inline a:hover {
  text-decoration: underline;
}

/* WHATSAPP FLOAT BUTTON – albastru */

.wa-float {
  position: fixed;
  right: 16px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #0f4aa8; /* albastru */
  color: #ffffff;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(15, 74, 168, 0.45);
  z-index: 9999;
  max-width: 260px;
}

.wa-fab-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(15,23,42,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.wa-fab-text {
  font-size: 12px;
  line-height: 1.4;
}

.wa-float strong {
  display: block;
}

@media (max-width: 480px) {
  .wa-float {
    right: 10px;
    left: 10px;
    bottom: 12px;
    max-width: none;
    justify-content: center;
  }
}

@media (max-width: 700px) {
  .main-nav {
    display: none;
  }
}

/* Protecție de bază pentru imagini – nu se pot trage / selecta ușor */
img {
  -webkit-user-drag: none;
  user-select: none;
}

/* Social links inline în footer */
.social-links-inline a {
  color: #e5e7eb !important;  /* alb-gri deschis, ca restul textului */
  text-decoration: none !important;
}

.social-links-inline a:hover {
  color: #ffffff !important; /* alb complet la hover */
  text-decoration: underline;
}

/* Reduce spațiul dintre rândurile footerului */
.footer-inner p {
  margin-bottom: 6px;  /* mai mic decât default */
  line-height: 1.4;    /* mai compact */
}
