
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  background: #050505;
  color: #f5f5f5;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

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

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #222;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo {
  height: 34px;
}

.nav-brand {
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 18px;
  font-size: 14px;
  text-transform: uppercase;
}

.nav-link {
  opacity: 0.8;
}

.nav-link:hover {
  color: #ff2b2b;
  opacity: 1;
}

.nav-link.active {
  color: #ff2b2b;
  opacity: 1;
}

.btn-primary {
  background: #ff2b2b;
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
  display: inline-block;
}

.btn-primary:hover {
  background: #ff4444;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(255, 43, 43, 0.35);
}

.hero {
  padding: 70px 0 40px;
  background: radial-gradient(circle at top, #1a1a1a 0, #050505 55%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-title {
  font-size: 42px;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 16px;
}

.hero-title span {
  color: #ff2b2b;
}

.hero-subtitle {
  font-size: 17px;
  max-width: 520px;
  margin-bottom: 22px;
  color: #d0d0d0;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-chip {
  border-radius: 999px;
  border: 1px solid #333;
  padding: 6px 12px;
  font-size: 13px;
  color: #ccc;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-phone {
  font-size: 15px;
  color: #ccc;
}

.hero-phone strong {
  color: #fff;
  font-size: 16px;
}

.hero-image {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #333;
  background: linear-gradient(135deg, #ff2b2b, #ff9f1c, #ffd60a, #2ecc71, #1e90ff, #8e44ad);
  padding: 2px;
}

.hero-image-inner {
  background: #050505;
  padding: 18px;
  height: 100%;
}

.hero-photo {
  width: 100%;
  height: 520px;        /* inaltimea crop-ului – te poti juca cu valoarea */
  object-fit: cover;    /* umple cadrul si taie surplusul */
  object-position: 50% 65%; /* muta focusul pe masina (mai jos in imagine) */
  border-radius: 18px;
}

.hero-image-inner-placeholder {
  height: 230px;
  border-radius: 18px;
  background: linear-gradient(135deg, #111, #333);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #b0b0b0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-tagline {
  text-align: center;
  font-size: 13px;
  margin-top: 10px;
  color: #d0d0d0;
}

.rainbow-bar {
  height: 4px;
  background: linear-gradient(90deg, #ff2b2b, #ff9f1c, #ffd60a, #2ecc71, #1e90ff, #8e44ad);
  margin-top: 10px;
  border-radius: 999px;
}

section {
  padding: 50px 0;
  border-top: 1px solid #161616;
}

section:nth-child(even) {
  background: #080808;
}

.section-title {
  font-size: 26px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-title span {
  color: #ff2b2b;
}

.section-subtitle {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 26px;
  max-width: 540px;
}

.pill {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ff6b6b;
  margin-bottom: 8px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: flex-start;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.card {
  background: #101010;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid #222;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border 0.15s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
  border-color: #ff2b2b;
}

.card-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.card-badge {
  display: inline-block;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(255, 43, 43, 0.1);
  color: #ff9f9f;
  margin-bottom: 10px;
}

.card p {
  font-size: 13px;
  color: #c0c0c0;
}

.list-check {
  list-style: none;
  margin-top: 10px;
  display: grid;
  gap: 6px;
  font-size: 13px;
  color: #d0d0d0;
}

.list-check li::before {
  content: "✓";
  color: #ff2b2b;
  margin-right: 8px;
}

.badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
  font-size: 12px;
}

.badge-outline {
  border-radius: 999px;
  padding: 4px 10px;
  border: 1px solid #333;
  color: #bbb;
}

.info-box {
  background: #101010;
  border-radius: 18px;
  border: 1px solid #222;
  padding: 18px 18px 14px;
  font-size: 13px;
  color: #d0d0d0;
}

.info-box strong {
  color: #fff;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 12px;
  font-size: 13px;
}

.info-label {
  color: #999;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 10px;
}

.gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #151515;
  border: 1px solid #262626;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.faq-list {
  margin-top: 10px;
}

.faq-item {
  border-bottom: 1px solid #222;
  padding: 12px 0;
}

.faq-question {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.faq-question span {
  max-width: 90%;
}

.faq-toggle {
  font-size: 18px;
  color: #ff2b2b;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  font-size: 13px;
  color: #c0c0c0;
  margin-top: 4px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-top: 4px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 30px;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
  font-size: 13px;
}

.contact-card {
  background: #101010;
  border-radius: 16px;
  border: 1px solid #222;
  padding: 12px;
}

.contact-card-title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: #ff9f9f;
  margin-bottom: 4px;
}

.contact-card strong {
  font-size: 14px;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  margin-top: 6px;
}

.social-pill {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid #333;
  color: #ccc;
}

form {
  background: #101010;
  border-radius: 18px;
  border: 1px solid #222;
  padding: 18px;
  font-size: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 10px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
}

label {
  font-size: 12px;
  color: #b0b0b0;
}

input, textarea {
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid #333;
  background: #050505;
  color: #fff;
  font-size: 13px;
}

input:focus, textarea:focus {
  outline: none;
  border-color: #ff2b2b;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

.map-placeholder {
  margin-top: 14px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #222;
  background: #151515;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
}

footer {
  border-top: 1px solid #151515;
  padding: 18px 0 22px;
  background: #050505;
  font-size: 12px;
  color: #808080;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.footer-inner span strong {
  color: #c0c0c0;
}

.footer-links {
  display: flex;
  gap: 16px;
}

.footer-links a:hover {
  color: #ff2b2b;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.burger span {
  width: 20px;
  height: 2px;
  background: #f5f5f5;
  border-radius: 999px;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero-grid,
  .grid-2,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 30px;
  }

  .cards,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .info-grid,
  .contact-info-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .nav-brand {
    font-size: 16px;
  }

  .hero {
    padding-top: 50px;
  }
}

/* Ajustari header pe ecrane mai mici */

@media (max-width: 900px) {
  header .nav {
    padding: 8px 0;
    gap: 8px;
    flex-wrap: wrap; /* permite elementelor sa treaca pe randul 2 */
  }

  .nav-left {
    flex: 1 1 auto; /* logo + brand ocupa spatiul din stanga */
  }

  header .btn-primary {
    padding: 8px 16px;
    font-size: 12px;
  }
}

/* Pe telefoane inguste: butonul rosu pe rand separat, full width */

@media (max-width: 600px) {
  header .nav {
    flex-wrap: wrap;
  }

  .burger {
    order: 2;
  }

  header .btn-primary {
    order: 3;                /* coboara butonul sub logo + burger */
    width: 100%;             /* ocupa toata latimea */
    text-align: center;
    margin-top: 6px;
  }
}

/* Pe telefoane foarte mici: ascundem textul WRAPTUNED, pastram doar logo */

@media (max-width: 420px) {
  .nav-brand {
    display: none;
  }

  .nav-logo {
    height: 28px;
  }

  .nav-left {
    gap: 4px;
  }
}
.overlay{position:fixed;inset:0;background:rgba(0,0,0,.6);display:none;align-items:center;justify-content:center;z-index:9999}
.overlay.show{display:flex}
.modal{background:#121212;border:1px solid #2a2a2a;border-radius:16px;padding:24px;max-width:420px;width:92%}
.modal h3{margin:0 0 8px 0}
.modal p{margin:0 0 16px 0;color:#cfcfcf}
.modal .btn-primary{width:100%}


/* Galerie – grid de poze */
.gallery-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: radial-gradient(circle at top, #333 0%, #111 60%);
  aspect-ratio: auto;
  height: auto;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  background: #000;
}


.gallery-item::after {
  content: "";
  position: absolute;
  left: 12px;
  bottom: 10px;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* efectiv iconita de zoom in interior */
.gallery-item::after {
  background-image: url("img/zoom.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60%;
}


.gallery-item:hover img {
  transform: scale(1.06);
  opacity: 0.9;
}

/* Lightbox fullscreen */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
  z-index: 9999;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-inner {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 100vw;
  max-height: 100vh;
  padding: 40px 0 70px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}


.lightbox-inner img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.2s ease;
  touch-action: pinch-zoom;
}


.lightbox-btn {
  position: absolute;
  border: none;
  background: rgba(0,0,0,0.6);
  color: #f8f8f8;
  font-size: 28px;
  line-height: 1;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox-close {
  top: 16px;
  right: 16px;
}

.lightbox-prev {
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-bottom-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #f5f5f5;
  font-size: 13px;
}

.lightbox-zoom-controls button {
  border: none;
  padding: 4px 8px;
  margin-left: 4px;
  border-radius: 6px;
  background: rgba(255,255,255,0.1);
  color: #f5f5f5;
  font-size: 12px;
  cursor: pointer;
}

.lightbox-zoom-controls button:hover {
  background: rgba(255,255,255,0.2);
}

@media (max-width: 640px) {
  .lightbox-btn {
    width: 36px;
    height: 36px;
    font-size: 22px;
  }
  .lightbox-bottom-bar {
    font-size: 12px;
    padding: 0 12px;
  }
}

