/* Previne scroll-ul orizontal pe mobil */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}
:root {
  --bg-black: #0c0d0e;
  --bg-card: #141619;
  --bg-border: #24272c;
  --accent-gold: #d4af37;
  --accent-gold-hover: #b89628;
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-black);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.small-container {
  max-width: 720px;
}

h1, h2, h3, .logo {
  font-family: var(--font-serif);
  letter-spacing: -0.01em;
}

.text-center { text-align: center; }

/* Buttons & Tags */
.tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  border-radius: 2px;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-gold {
  background-color: var(--accent-gold);
  color: #000;
}

.btn-gold:hover {
  background-color: var(--accent-gold-hover);
  transform: translateY(-2px);
}

.full-width { width: 100%; }

/* Navigation */
.navbar {
  padding: 2rem 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 50;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.1em;
}

.logo span { color: var(--accent-gold); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.nav-links a:hover { color: #fff; }

/* Hero */
.hero {
  min-height: 90vh;
  background: url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 5rem;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 13, 14, 0.6) 0%, rgba(12, 13, 14, 0.95) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.sub-title {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: var(--accent-gold);
}

.hero h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin: 1rem 0 1.5rem;
  font-weight: 400;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 3rem;
}

.stats-bar {
  display: flex;
  gap: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 2rem;
}

.stat-value {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--accent-gold);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Sections */
.section { padding: 7rem 0; }
.dark-bg { background-color: var(--bg-card); }

.section-title { margin-bottom: 3.5rem; }
.section-title h2 { font-size: 2.8rem; font-weight: 400; }

/* Property Grid */
.property-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.5rem;
}

.property-card {
  background-color: var(--bg-card);
  border: 1px solid var(--bg-border);
  overflow: hidden;
}

.property-img-wrapper {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.property-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.property-card:hover .property-img-wrapper img {
  transform: scale(1.05);
}

.price-tag {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(12, 13, 14, 0.85);
  backdrop-filter: blur(8px);
  padding: 0.4rem 0.8rem;
  color: var(--accent-gold);
  font-family: var(--font-serif);
  font-size: 1.1rem;
}

.property-info { padding: 1.8rem; }
.property-info h3 { font-size: 1.8rem; margin-bottom: 0.4rem; font-weight: 400; }
.property-info p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 1.2rem; }

.link-btn {
  color: var(--accent-gold);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

/* Amenities */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.amenity-box {
  padding: 2.5rem;
  background-color: var(--bg-black);
  border: 1px solid var(--bg-border);
}

.amenity-box .icon { font-size: 2rem; margin-bottom: 1rem; }
.amenity-box h3 { font-size: 1.5rem; margin-bottom: 0.5rem; font-weight: 400; }
.amenity-box p { color: var(--text-muted); font-size: 0.88rem; }

/* Booking Form */
.booking-card {
  background-color: var(--bg-card);
  border: 1px solid var(--bg-border);
  padding: 3rem;
  text-align: center;
}

.booking-card h2 { font-size: 2.5rem; margin-bottom: 0.5rem; font-weight: 400; }
.booking-card .subtitle { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 2rem; }

.booking-form { display: flex; flex-direction: column; gap: 1rem; }

.form-row { display: flex; gap: 1rem; }
.form-row input, .form-row select { flex: 1; }

.booking-form input, .booking-form select, .booking-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background-color: var(--bg-black);
  border: 1px solid var(--bg-border);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  outline: none;
}

.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus {
  border-color: var(--accent-gold);
}

/* Footer */
.footer {
  border-top: 1px solid var(--bg-border);
  padding: 2.5rem 0;
}

.footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer p { color: var(--text-muted); font-size: 0.85rem; }

@media (max-width: 768px) {
  .hero h1 { font-size: 2.5rem; }
  .stats-bar { flex-direction: column; gap: 1rem; }
  .form-row { flex-direction: column; }
  .nav-links { display: none; }
}
/* Fix-uri responsive pentru mobil */
@media (max-width: 768px) {
  /* Ascunde linkurile din navigație pe ecrane mici */
  .nav-links, 
  nav ul {
    display: none !important;
  }

  /* Impiedică ruperea textului în butoanele din header */
  header nav a,
  header .btn-primary,
  header .btn-header,
  header .btn-project {
    white-space: nowrap !important;
    font-size: 0.8rem !important;
    padding: 0.5rem 0.8rem !important;
  }
}