@charset "UTF-8";
:root {
  /* ajustează în funcție de imaginea ta */
  --hero-min-h: 100vh;
  --hero-bg: var(--bg, none);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Mulish, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, Cinzel;
}

/* Scrollbar verticală */
::-webkit-scrollbar {
  width: 3px;
  /* grosimea */
}

/* Track (fundal) */
::-webkit-scrollbar-track {
  background: rgba(76, 90, 56, 0.5333333333);
  /* culoare fundal */
}

/* Thumb (partea care se mișcă) */
::-webkit-scrollbar-thumb {
  background: #ff6528;
  /* culoare normală */
  border-radius: 8px;
  /* colțuri rotunjite */
}

/* Thumb la hover */
::-webkit-scrollbar-thumb:hover {
  background: #fd4800;
}

/* custom dropdown */
.lang-switcher {
  position: fixed;
  top: 2rem;
  right: 0;
  z-index: 9999;
  font-size: 0.9rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ff3300;
  color: black;
  border-radius: 4px 0 0 4px;
}
@media (max-width: 768px) {
  .lang-switcher {
    top: 7.5vh;
    right: 0;
    font-size: 0.8rem;
  }
}

.custom-select {
  position: relative;
  cursor: pointer;
  color: #000000;
}

.custom-select .selected {
  padding: 4px 8px;
  border-radius: 2px;
}

.custom-select .options {
  display: none;
  position: absolute;
  right: 0;
  color: #000000;
  border-radius: 2px;
  list-style: none;
  padding: 0;
}

.custom-select .options li {
  padding: 4px 8px;
  white-space: nowrap;
  cursor: pointer;
}

.custom-select .options li:hover {
  background: rgba(255, 255, 255, 0.1490196078);
}

.header-home {
  padding: 1rem 0;
  position: fixed;
  bottom: 5vh;
  left: 5vh;
  z-index: 1000;
}
@media screen and (max-width: 640px) {
  .header-home {
    top: 0;
    bottom: none;
    left: 0;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    padding: 1rem;
    background-color: rgba(255, 51, 0, 0.5960784314);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
  }
}
.header-home nav {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 640px) {
  .header-home nav {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
  }
}
.header-home nav a {
  color: black;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3764705882);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media (max-width: 640px) {
  .header-home nav a {
    text-align: center;
    font-size: 1vh;
    display: flex;
    justify-content: space-between;
  }
}
.header-home nav a:hover {
  color: #ff3300;
}

.laterale {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
  z-index: 1000;
}
.laterale > * {
  width: -moz-fit-content;
  width: fit-content;
  height: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ff3300;
  border-radius: 4px 0 0 4px;
  white-space: nowrap;
  padding: 0 0.5rem;
  transition: all 0.3s ease-in-out;
  transform: translateX(82.5%);
}
@media (max-width: 767px) {
  .laterale > * {
    transform: translateX(0);
  }
}
.laterale > *:hover {
  transform: translateX(0);
}
@media (max-width: 767px) {
  .laterale > * {
    right: 0;
    width: 2rem;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .laterale > * span {
    display: none;
  }
}
.laterale > * a {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 2px;
  color: black;
  font-weight: 600;
  text-decoration: none;
}
.laterale > * a span {
  margin-left: 1rem;
}

.hero {
  position: relative;
  min-height: var(--hero-min-h);
  isolation: isolate;
  overflow: clip;
  color: #ffffff;
  background: #000000;
  width: 100%;
  /* Containerul cu panourile care se despart */
  /* Linie subțire pe centru (doar efect vizual) */
  /* Panouri stânga/dreapta cu aceeași imagine */
  /* Hint de scroll */
}
.hero .hero-title {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-content: center;
  text-align: center;
  letter-spacing: -0.02em;
  padding: clamp(12px, 3vw, 32px);
  color: #ffcdcd;
  font-family: Mulish, sans-serif;
  font-weight: 100;
  line-height: 1.2;
}
.hero .hero-title span {
  display: block;
  font-size: clamp(28px, 6vw, 8rem);
}
@media (max-width: 768px) {
  .hero .hero-title span {
    font-size: 4.5vh;
  }
}
.hero .hero-split {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero .v-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  transform: translateX(-0.5px);
  background: linear-gradient(to bottom, transparent, transparent, rgba(255, 205, 205, 0.6), transparent, transparent);
  opacity: 0.6;
}
.hero .panel {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  will-change: transform;
  /* o ușoară mască pentru a face textul lizibil când se deschide */
}
.hero .panel.left {
  left: 0;
  right: 50%;
  width: calc(50% + 1px);
  background-image: url("../img/stanga.webp");
  transform-origin: right center;
  background-position: right center;
}
.hero .panel.right {
  right: 0;
  left: 50%;
  width: calc(50% + 1px);
  background-image: url("../img/dreapta.webp");
  transform-origin: left center;
  background-position: left center;
}
.hero .scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.8;
  z-index: 2;
  padding: 8px 12px;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 99px;
}
.hero .hero-gallery {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.hero .hero-gallery .photo {
  position: absolute;
  color: #0a0a0a;
  display: grid;
  place-items: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 5vh 5vw;
  text-align: center;
  /* poți varia pozițiile ușor pentru layering */
}
.hero .hero-gallery .photo h2 {
  font-family: Mulish, sans-serif;
  font-weight: 400;
  font-size: 6rem;
}
@media (max-width: 768px) {
  .hero .hero-gallery .photo h2 {
    font-size: 3.5vh;
  }
}
.hero .hero-gallery .photo:nth-child(1) {
  transform-origin: center;
  background-color: #ffcdcd;
}
.hero .hero-gallery .photo:nth-child(2) {
  background-color: aliceblue;
  background-image: url("../img/hero-g1.webp");
}
.hero .hero-gallery .photo:nth-child(3) {
  background-color: lightcoral;
}
.hero .hero-gallery .photo:nth-child(4) {
  background-color: lightcoral;
  background-image: url("../img/hero-g2.webp");
}
@media (prefers-reduced-motion: reduce) {
  .hero .panel {
    transition: none !important;
  }
}

#promoted {
  background-color: antiquewhite;
  /* Slick controls override */
}
#promoted .promoted-slider {
  margin-top: 1.5rem;
}
#promoted .promoted-slider .slide {
  padding: 0 10px;
}
#promoted .promoted-slider .card {
  background: #fff;
  border-radius: 0.25rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
#promoted .promoted-slider .card .thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
#promoted .promoted-slider .card .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
#promoted .promoted-slider .card .thumb .badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #0f766e;
  color: #fff;
  padding: 0.25rem 0.5rem;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
}
#promoted .promoted-slider .card .meta {
  padding: 14px 16px;
}
#promoted .promoted-slider .card .meta h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}
#promoted .promoted-slider .card .meta h3 a {
  color: #0b1220;
  text-decoration: none;
}
#promoted .promoted-slider .card .meta .city {
  color: #667085;
  margin: 0;
}
#promoted .promoted-slider .card .meta .price {
  color: #0f766e;
  font-weight: 700;
  margin: 0.35rem 0 0;
}
#promoted .slick-prev,
#promoted .slick-next {
  width: 40px;
  height: 40px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.2588235294);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
#promoted .slick-prev:before,
#promoted .slick-next:before {
  color: #111;
  font-size: 18px;
}
#promoted .slick-dots {
  bottom: -30px;
}

/* ================================
   Variabile simple
================================ */
/* ================================
   Secțiuni de pagină
================================ */
.section {
  padding: 3rem 1rem;
}
.section .wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.section h2 {
  margin: 0 0 1.25rem;
  font: 700 1.75rem/1.2 system-ui, -apple-system, Segoe UI, Roboto;
  color: #0b1220;
}
.section .empty {
  color: #667085;
}

.cauta-home {
  max-width: 1200px;
  border: 10px solid red;
}

.section-locatii {
  background: #F3E5F5;
}

.section-vanzare {
  background: #E8F5E9;
}

.section-inchirieri {
  background: #F9FBE7;
}

/* ================================
   Card comun (pentru toate listele)
   — imagine cu raport fix + conținut
================================ */
.card-promoted, .card-sale, .card-rent {
  background: #fff;
  border-radius: 0.25rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card-promoted .thumb, .card-sale .thumb, .card-rent .thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  /* același spațiu pentru toate imaginile */
  overflow: hidden;
  /* fallback pentru browsere vechi fără aspect-ratio */
}
@supports not (aspect-ratio: 16/9) {
  .card-promoted .thumb::before, .card-sale .thumb::before, .card-rent .thumb::before {
    content: "";
    display: block;
    padding-top: 56.25%;
    /* 16:9 */
  }
  .card-promoted .thumb img, .card-sale .thumb img, .card-rent .thumb img {
    position: absolute;
    inset: 0;
  }
}
.card-promoted .thumb img, .card-sale .thumb img, .card-rent .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /* taie imaginea, fără deformare */
  display: block;
}
.card-promoted .thumb .badge, .card-sale .thumb .badge, .card-rent .thumb .badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #0f766e;
  color: #fff;
  padding: 0.2rem 0.4rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
}
.card-promoted .meta, .card-sale .meta, .card-rent .meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 12px 14px;
}
.card-promoted .meta h3, .card-sale .meta h3, .card-rent .meta h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  line-height: 1.3;
  /* titlu pe max 2 rânduri, pentru înălțimi egale */
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
}
.card-promoted .meta h3 a, .card-sale .meta h3 a, .card-rent .meta h3 a {
  color: #0b1220;
  text-decoration: none;
}
.card-promoted .meta .city, .card-sale .meta .city, .card-rent .meta .city {
  color: #667085;
  margin: 0;
  font-size: 0.9rem;
}
.card-promoted .meta .price, .card-sale .meta .price, .card-rent .meta .price {
  color: #0f766e;
  font-weight: 700;
  margin-top: 0.4rem;
}

/* ================================
   Grid comun pentru secțiunile listă
   (vânzare / închiriat)
================================ */
.cards {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 1200px) {
  .cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 992px) {
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

/* ================================
   Locații populare
================================ */
.loc-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 1200px) {
  .loc-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 992px) {
  .loc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .loc-grid {
    grid-template-columns: 1fr;
  }
}

.loc-card {
  display: block;
  background: #fff;
  border-radius: 0.25rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 18px;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.loc-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.1);
}
.loc-card .loc-name {
  color: #0b1220;
  font-weight: 700;
  font-size: 1.05rem;
}
.loc-card .loc-count {
  color: #667085;
  margin-top: 4px;
  font-size: 0.9rem;
}

/* ================================
   Oferte promovate — Slick slider
================================ */
#promoted {
  background: #ECEFF1;
  /* săgeți rotunde discrete */
}
#promoted .promoted-slider {
  margin-top: 1.25rem;
  /* spațiere frumoasă între slide-uri */
  /* „respirație” pe margini, fără tăierea cardurilor */
}
#promoted .promoted-slider .slide {
  padding: 0 10px;
}
#promoted .promoted-slider .slick-list {
  margin: 0 -10px;
}
#promoted .slick-prev,
#promoted .slick-next {
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 2;
}
#promoted .slick-prev:before,
#promoted .slick-next:before {
  color: #111;
  font-size: 16px;
}
#promoted .slick-prev {
  left: -10px;
}
#promoted .slick-next {
  right: -10px;
}
#promoted .slick-dots {
  bottom: -28px;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem; /* spațiu sub titlu + link înainte de carduri */
}

.more-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: #0f766e; /* culoare brand */
  text-decoration: none;
  padding: 0.35rem 0.75rem;
  border-radius: 0.25rem;
  display: inline-flex;
  align-items: center;
  gap: 6px; /* distanță între text și săgeată */
  transition: background-color 0.2s ease, color 0.2s ease;
}
.more-link:after {
  content: "→"; /* săgeata */
  font-size: 0.95em;
  line-height: 1;
  margin-top: 1px; /* mică aliniere verticală */
}
.more-link:hover {
  background-color: rgba(15, 118, 110, 0.1);
  color: #0b1220;
  text-decoration: none;
}

.footer {
  background: #4b4b4b;
  color: antiquewhite;
  padding: 3rem 1rem 0;
  position: relative;
  z-index: 10;
  /* Coluri */
  /* Brand */
  /* Formular */
  /* Contact list */
  /* Social media */
  /* Subfooter */
}
.footer .wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.footer .grid-footer {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1024px) {
  .footer .grid-footer {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .footer .grid-footer {
    grid-template-columns: 1fr;
  }
}
.footer .footer-col h3 {
  font: 600 1.1rem system-ui, sans-serif;
  margin-bottom: 0.75rem;
}
.footer .brand .logo {
  max-width: 160px;
  margin-bottom: 0.75rem;
}
.footer .brand p {
  font-size: 0.9rem;
}
.footer .contact-form {
  display: grid;
  gap: 0.75rem;
}
.footer .contact-form .form-group {
  display: flex;
  flex-direction: column;
}
.footer .contact-form .form-group label {
  font-size: 0.85rem;
  margin-bottom: 0.2rem;
}
.footer .contact-form .form-group input, .footer .contact-form .form-group textarea {
  border: 1px solid #ddd;
  border-radius: 0.25rem;
  padding: 0.5rem 0.7rem;
  font: inherit;
}
.footer .contact-form .form-group input:focus, .footer .contact-form .form-group textarea:focus {
  border-color: #0f766e;
  outline: none;
  box-shadow: 0 0 0 2px rgba(15, 118, 110, 0.15);
}
.footer .contact-form .form-actions button {
  background: #0f766e;
  color: #fff;
  border: none;
  padding: 0.6rem 1.25rem;
  border-radius: 0.25rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.footer .contact-form .form-actions button:hover {
  background: #0d5f59;
}
.footer .contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}
.footer .contact-list li {
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}
.footer .contact-list a {
  color: inherit;
  text-decoration: none;
}
.footer .contact-list a:hover {
  text-decoration: underline;
}
.footer .map iframe {
  border-radius: 0.25rem;
  margin-top: 0.5rem;
  width: 100%;
  min-height: 160px;
}
.footer .social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.footer .social-links {
  display: flex;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .social-links a {
  color: inherit;
  text-decoration: none;
}
.footer .social-links a:hover {
  text-decoration: underline;
}
.footer .subfooter {
  margin-top: 2rem;
  padding: 1rem 0;
  border-top: 1px solid #ccc;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
@media screen and (max-width: 640px) {
  .footer .subfooter {
    flex-direction: column;
  }
}
.footer .subfooter p {
  font-size: 0.85rem;
  text-align: center;
}
.footer .subfooter a {
  color: inherit;
  font-weight: 600;
  text-decoration: none;
}
.footer .subfooter a:hover {
  text-decoration: underline;
}/*# sourceMappingURL=home.css.map */