:root {
  --bg-dark: #0f0f0f;
  --gold: #D4AF37;
  --gold-light: #f3d56a;
  --text-light: #ffffff;
  --text-muted: #b3b3b3;
  --font-main: 'Poppins', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-light);
  min-height: 100vh;
  overflow-x: hidden;
}

/* --- Navbar Dinamic --- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: transparent;
  transition: all 0.4s ease;
}

nav.scrolled {
  padding: 20px 5%;
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.logo a {
  font-size: 1.20rem;
  font-family: "Michroma", sans-serif;
  font-weight: 800;
  color: var(--text-light);
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  z-index: 1001;
  /* Ține logo-ul peste meniul de mobil */
}

.logo a span {
  color: var(--gold);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--gold);
}

/* --- Buton Hamburger (Pentru Mobil) --- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  /* Ține butonul peste meniul de mobil */
}

.hamburger span {
  width: 30px;
  height: 2px;
  background-color: var(--text-light);
  transition: all 0.3s ease;
}

/* --- Hero Section & Vinietă --- */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: radial-gradient(circle at center, rgba(15, 15, 15, 0.5) 0%, rgba(15, 15, 15, 0.9) 100%),
    url('https://images.unsplash.com/photo-1599351431202-1e0f0137899a?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  padding: 0 20px;
}

.hero-content {
  max-width: 800px;
  margin-top: 50px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: 0.3s;
}

.hero h1 {
  font-size: 4.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero h1 span {
  color: var(--gold);
}

.hero p {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 40px;
  letter-spacing: 1px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary {
  display: inline-block;
  padding: 18px 45px;
  background-color: transparent;
  color: var(--gold);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 1px solid var(--gold);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  z-index: 1;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--gold);
  z-index: -1;
  transition: width 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn-primary:hover::before {
  width: 100%;
}

.btn-primary:hover {
  color: var(--bg-dark);
}

/* --- Scroll Indicator --- */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  animation: fadeUp 1s forwards 1.5s;
}

.mouse {
  width: 26px;
  height: 40px;
  border: 2px solid var(--text-muted);
  border-radius: 20px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background-color: var(--gold);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s infinite;
}

/* --- Animații --- */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollWheel {
  0% {
    top: 6px;
    opacity: 1;
  }

  100% {
    top: 20px;
    opacity: 0;
  }
}

/* --- RESPONSIVE DESIGN (Tablete și Telefoane) --- */
@media (max-width: 768px) {
  .hero {
    background: radial-gradient(circle at center, rgba(15, 15, 15, 0.5) 0%, rgba(15, 15, 15, 0.9) 100%),
      url('https://res.cloudinary.com/de5s34ozi/image/upload/v1772036804/WhatsApp_Image_2026-02-25_at_18.26.21_zp49od.jpg') center/cover no-repeat;
  }

  nav {
    padding: 25px 5%;
  }

  nav.scrolled {
    padding: 20px 5%;
  }

  /* Afișăm butonul de meniu */
  .hamburger {
    display: flex;
  }

  /* Ascundem linkurile în afara ecranului inițial */
  .nav-links {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    /* Acoperă tot ecranul */
    background: rgba(15, 15, 15, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transform: translateY(-100%);
    /* Sus de tot, ascuns */
    transition: transform 0.4s ease-in-out;
  }

  .nav-links a {
    font-size: 1.2rem;
  }

  /* Clasa activă deschide meniul */
  .nav-links.active {
    transform: translateY(0);
  }

  /* Animația butonului Hamburger (se face 'X') */
  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Redimensionare Text Hero */
  .hero h1 {
    font-size: 2.8rem;
    letter-spacing: 2px;
  }

  .hero p {
    font-size: 1rem;
    padding: 0 10px;
  }

  .btn-primary {
    padding: 15px 30px;
    font-size: 0.8rem;
  }

  /* --- Slider Logic pentru Mobil --- */
  .slider-track {
    gap: 0;
    /* Fără spațiu între ele pentru calcul precis */
  }

  .service-card {
    min-width: 100%;
    /* Un singur card pe ecran */
    margin: 0;
    box-shadow: none;
    background: transparent;
  }

  .slider-dots {
    display: flex;
  }

  /* Afișăm bulinele doar pe mobil */
}

/* ── SECTION ── */
.features-section {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  /* ← asta lipsea */
  padding: 80px 40px;
}

.section-label {
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: 4px;
  color: #d4a017;
  margin-bottom: 12px;
}

.section-title {
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  color: #fff;
  margin-bottom: 60px;
  letter-spacing: 2px;
}

.section-title span {
  color: #d4a017;
}

/* ── DESKTOP GRID ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

/* ── CARD ── */
.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 24px 36px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, transform .3s;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 160, 23, .07) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s;
}

.feature-card:hover {
  border-color: #d4a017;
  transform: translateY(-6px);
}

.feature-card:hover::before {
  opacity: 1;
}

.icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #d4a017;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
  box-shadow: 0 0 24px rgba(212, 160, 23, .35);
}

.icon-wrap svg {
  width: 36px;
  height: 36px;
  stroke: #111;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 1.5px;
  color: #fff;
  margin-bottom: 12px;
}

.card-desc {
  font-size: 14px;
  line-height: 1.65;
  color: #888;
  max-width: 200px;
}

/* ── MOBILE CAROUSEL ── */
.carousel-wrapper {
  display: none;
  position: relative;
}

.carousel-track-outer {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform .45s cubic-bezier(.4, 0, .2, 1);
}

.carousel-track .feature-card {
  min-width: 100%;
  flex-shrink: 0;
}

/* dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #333;
  border: 1.5px solid #555;
  cursor: pointer;
  transition: background .3s, transform .3s;
}

.dot.active {
  background: #d4a017;
  border-color: #d4a017;
  transform: scale(1.3);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .features-section {
    padding: 60px 20px;
  }

  .features-grid {
    display: none;
  }

  .carousel-wrapper {
    display: block;
  }
}

/* ═══════════════════════════════
   TEAM SECTION
═══════════════════════════════ */

.team-section {
  background-color: var(--bg-dark);
  padding: 100px 0;
}

.team-inner {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Grid ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  margin-top: 0;
}

/* ── Card ── */
.team-card {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── Photo ── */
.team-photo-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border-radius: 2px;
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: grayscale(20%);
}

.team-card:hover .team-photo {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.team-card:hover .photo-overlay {
  opacity: 1;
}

/* ── Info block ── */
.team-info {
  padding: 28px 4px 0;
  position: relative;
}

.team-accent {
  width: 40px;
  height: 2px;
  background: #d4a017;
  margin-bottom: 16px;
}

.team-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px;
  letter-spacing: 3px;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 14px;
}

.team-desc {
  font-size: 14px;
  line-height: 1.8;
  color: #888;
  max-width: 460px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .team-section {
    padding: 70px 0;
  }

  .team-inner {
    padding: 0 20px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .team-photo-wrap {
    aspect-ratio: 4 / 5;
  }

  .team-name {
    font-size: 30px;
  }

  /* Pe mobil overlay-ul e mereu vizibil parțial */
  .photo-overlay {
    opacity: 1;
    background: linear-gradient(to bottom,
        transparent 55%,
        rgba(10, 10, 10, 0.8) 100%);
  }

  .overlay-line {
    transform: scaleX(1);
  }

  .overlay-label {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ═══════════════════════════════
   SERVICES SECTION
═══════════════════════════════ */

.services-section {
  background-color: var(--bg-dark);
  padding: 100px 0;
}

.services-inner {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ── Card ── */
.service-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 24px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
  cursor: default;
}

/* gold shimmer line on left */
.service-card::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 2px;
  height: 60%;
  background: #d4a017;
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
  border-color: #2e2e2e;
  background: #1f1f1f;
  transform: translateY(-4px);
}

.service-card:hover::after {
  transform: translateY(-50%) scaleY(1);
}

/* ── Icon ── */
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(212, 160, 23, 0.1);
  border: 1px solid rgba(212, 160, 23, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.service-card:hover .service-icon {
  background: rgba(212, 160, 23, 0.18);
  border-color: rgba(212, 160, 23, 0.45);
}

.service-icon svg {
  width: 25px;
  height: 25px;
  stroke: #d4a017;
  fill: #d4a017;
  stroke-width: 0;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Body ── */
.service-body {
  flex: 1;
  min-width: 0;
}

.service-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 1.5px;
  color: #fff;
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.service-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-duration {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #666;
  letter-spacing: 0.5px;
}

.service-duration svg {
  width: 13px;
  height: 13px;
  stroke: #555;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ── Price ── */
.service-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 1px;
  color: #d4a017;
  line-height: 1;
  flex-shrink: 0;
  text-align: right;
}

.service-price span {
  font-family: 'Barlow', 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #555;
  letter-spacing: 1px;
  display: block;
  margin-top: 2px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .services-section {
    padding: 70px 0;
  }

  .services-inner {
    padding: 0 20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card {
    padding: 22px 18px;
  }

  .service-name {
    font-size: 18px;
  }

  .service-price {
    font-size: 24px;
  }
}

/* ═══════════════════════════════
   CONTACT SECTION
═══════════════════════════════ */

.contact-section {
  background-color: var(--bg-dark);
  padding: 100px 0;
}

.contact-inner {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Layout grid ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

/* ═══════════════════════════════
   INFO STÂNGA
═══════════════════════════════ */

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

/* ── Info block (icon + text) ── */
.info-block {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(212, 160, 23, 0.08);
  border: 1px solid rgba(212, 160, 23, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.info-icon svg {
  width: 18px;
  height: 18px;
  stroke: #d4a017;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: #d4a017;
  margin-bottom: 6px;
}

.info-value {
  font-size: 14px;
  line-height: 1.7;
  color: #ccc;
}

/* Telefon – link clicabil */
.info-phone {
  text-decoration: none;
  color: #ccc;
  transition: color 0.3s ease;
  display: inline-block;
}

.info-phone:hover {
  color: #d4a017;
}

/* ── Program ── */
.schedule {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 2px;
}

.schedule-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 14px;
}

.schedule-day {
  color: #ccc;
  min-width: 110px;
}

.schedule-time {
  color: #888;
  text-align: right;
}

.schedule-row.closed .schedule-day,
.schedule-row.closed .schedule-time {
  color: #555;
}

/* separator auriu între rânduri */
.schedule-row:not(:last-child) {
  padding-bottom: 6px;
  border-bottom: 1px solid #1e1e1e;
}

/* ── Social buttons ── */
.social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 3px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 1px solid #2a2a2a;
  background: #1a1a1a;
  color: #ccc;
  transition: all 0.3s ease;
}

.social-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.social-btn.facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
  color: #fff;
}

.social-btn.instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: transparent;
  color: #fff;
}

.social-btn.tiktok:hover {
  background: #010101;
  border-color: #69c9d0;
  color: #fff;
}

/* ═══════════════════════════════
   HARTA DREAPTA
═══════════════════════════════ */

.contact-map-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

/* wrapper link pe toată harta */
.map-clickable {
  display: block;
  position: relative;
  border-radius: 4px 4px 0 0;
  overflow: hidden;
  cursor: pointer;
}

.map-iframe {
  width: 100%;
  height: 420px;
  border: none;
  display: block;
  filter: grayscale(40%) contrast(1.1) brightness(0.85);
  transition: filter 0.4s ease;
  pointer-events: none;
  /* click-ul merge la link-ul părinte */
}

.map-clickable:hover .map-iframe {
  filter: grayscale(0%) contrast(1) brightness(1);
}

/* hint overlay la hover */
.map-overlay-hint {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.map-clickable:hover .map-overlay-hint {
  opacity: 1;
}

.map-overlay-hint svg {
  width: 32px;
  height: 32px;
  stroke: #d4a017;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.map-overlay-hint span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: 3px;
  color: #d4a017;
}

/* buton "Vezi pe Hartă" */
.map-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-top: none;
  border-radius: 0 0 4px 4px;
  text-decoration: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: 3px;
  color: #d4a017;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.map-btn svg {
  width: 18px;
  height: 18px;
  stroke: #d4a017;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.3s ease;
}

.map-btn:hover {
  background: #d4a017;
  border-color: #d4a017;
  color: #111;
}

.map-btn:hover svg {
  stroke: #111;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .map-iframe {
    height: 320px;
  }
}

@media (max-width: 580px) {
  .contact-section {
    padding: 70px 0;
  }

  .contact-inner {
    padding: 0 20px;
  }

  .social-links {
    gap: 8px;
  }

  .social-btn span {
    display: none;
    /* Pe telefon mic arată doar iconița */
  }

  .social-btn {
    padding: 10px 14px;
  }

  .map-iframe {
    height: 260px;
  }
}

/* ═══════════════════════════════
   GALLERY SECTION
═══════════════════════════════ */

.gallery-section {
  background-color: var(--bg-dark);
  padding: 100px 0;
}

.gallery-inner {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ═══════════════════════════════
   GALLERY SLIDER (Unified)
═══════════════════════════════ */

.gslider-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
}

.gslider-track-outer {
  flex: 1;
  overflow: hidden;
  border-radius: 8px;
}

.gslider-track {
  display: flex;
  gap: 16px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.gslider-slide {
  flex-shrink: 0;
  width: calc((100% - 32px) / 3);
  /* 3 slides visible on desktop */
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 8px;
  background: #1a1a1a;
  cursor: pointer;
}

.gslider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gslider-slide:hover img {
  transform: scale(1.05);
}

/* Arrow buttons */
.gslider-btn {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(212, 160, 23, 0.5);
  background: transparent;
  color: #d4a017;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.gslider-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gslider-btn:hover {
  background: rgba(212, 160, 23, 0.15);
  border-color: #d4a017;
  transform: scale(1.1);
}

.gslider-btn:disabled {
  opacity: 0.25;
  cursor: default;
  transform: none;
}

/* Dot indicators */
.gslider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.gslider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(212, 160, 23, 0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
}

.gslider-dot.active {
  background: #d4a017;
  transform: scale(1.3);
}

/* ═══════════════════════════════
   LIGHTBOX
═══════════════════════════════ */


.masonry-grid {
  columns: 3;
  column-gap: 16px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  background: #1a1a1a;
}

.masonry-item img,
.masonry-item video {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 4px;
}

.masonry-item:hover img,
.masonry-item:hover video {
  transform: scale(1.05);
}

/* Overlay */
.item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: 4px;
}

.masonry-item:hover .item-overlay {
  opacity: 1;
}

.item-overlay svg {
  width: 40px;
  height: 40px;
  stroke: #d4a017;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(212, 160, 23, 0.6));
  transform: scale(0.8);
  transition: transform 0.35s ease;
}

.masonry-item:hover .item-overlay svg {
  transform: scale(1);
}

/* Video specifics */
.video-overlay {
  opacity: 1;
  background: rgba(10, 10, 10, 0.35);
}

.masonry-item:hover .video-overlay {
  background: rgba(10, 10, 10, 0.6);
}

.play-icon {
  fill: rgba(212, 160, 23, 0.9) !important;
  stroke: none !important;
  width: 48px !important;
  height: 48px !important;
}

/* ═══════════════════════════════
   MOBILE CAROUSEL
═══════════════════════════════ */

.gallery-carousel {
  display: none;
}

.gallery-track-outer {
  overflow: hidden;
  border-radius: 4px;
}

.gallery-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-slide {
  min-width: 100%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  background: #1a1a1a;
}

.gallery-slide img,
.gallery-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-slide:active img,
.gallery-slide:active video {
  transform: scale(1.03);
}

.gallery-slide .item-overlay {
  opacity: 0;
}

.gallery-slide:active .item-overlay {
  opacity: 1;
}

/* Gallery dots */
.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

/* ═══════════════════════════════
   LIGHTBOX
═══════════════════════════════ */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 5, 0.97);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 2px;
  display: block;
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.8);
}

.lightbox-content video {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 2px;
  outline: none;
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.8);
}

/* Close button */
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: rgba(212, 160, 23, 0.1);
  border: 1px solid rgba(212, 160, 23, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease;
  z-index: 10000;
}

.lightbox-close:hover {
  background: #d4a017;
  border-color: #d4a017;
}

.lightbox-close svg {
  width: 18px;
  height: 18px;
  stroke: #d4a017;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  transition: stroke 0.3s ease;
}

.lightbox-close:hover svg {
  stroke: #111;
}

/* Nav arrows */
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(212, 160, 23, 0.08);
  border: 1px solid rgba(212, 160, 23, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease;
  z-index: 10000;
}

.lightbox-nav:hover {
  background: rgba(212, 160, 23, 0.2);
  border-color: #d4a017;
}

.lightbox-nav svg {
  width: 20px;
  height: 20px;
  stroke: #d4a017;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lightbox-nav.prev {
  left: 24px;
}

.lightbox-nav.next {
  right: 24px;
}

/* Counter */
.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 3px;
  color: #555;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .masonry-grid {
    columns: 2;
  }
}

@media (max-width: 580px) {
  .gallery-section {
    padding: 70px 0;
  }

  .gallery-inner {
    padding: 0 14px;
  }

  /* Slider 1 coloana pe mobil */
  .gslider-slide {
    width: 100% !important;
  }

  .gslider-btn {
    width: 38px;
    height: 38px;
  }

  .gslider-wrap {
    gap: 8px;
  }

  /* Video overlay mereu vizibil */
  .video-overlay {
    opacity: 1 !important;
  }

  .lightbox-nav.prev {
    left: 10px;
  }

  .lightbox-nav.next {
    right: 10px;
  }
}

/* ── SCROLL TO TOP ── */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 46px;
  height: 46px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease,
    background 0.3s ease, border-color 0.3s ease;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.scroll-top:hover {
  background: #d4a017;
  border-color: #d4a017;
}

.scroll-top svg {
  width: 20px;
  height: 20px;
  stroke: #d4a017;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.3s ease;
}

.scroll-top:hover svg {
  stroke: #111;
}

.scroll-top:focus {
  outline: none;
}

.scroll-top:focus:not(:focus-visible) {
  background: #1a1a1a;
  border-color: #2a2a2a;
}

.scroll-top:focus:not(:focus-visible) svg {
  stroke: #d4a017;
}

@media (max-width: 580px) {
  .scroll-top {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
  }
}
/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.site-footer {
  background: #080808;
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 64px 5% 0;
  font-family: var(--font-main);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-logo {
  font-family: 'Michroma', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.footer-logo span { color: var(--gold); }

.footer-brand p {
  color: #888;
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.footer-social-label {
  font-size: 0.75rem !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #666 !important;
  margin-bottom: 12px !important;
}

.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-socials a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  transition: all 0.3s;
  text-decoration: none;
}
.footer-socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212,175,55,0.08);
}
.footer-socials svg { width: 18px; height: 18px; }

.footer-col-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201,168,76,0.3);
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #888;
  font-size: 0.85rem;
  line-height: 1.5;
}
.footer-list svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
}

.footer-links li { align-items: center; }
.footer-links a {
  color: #888;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

.footer-anpc {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-anpc a img {
  max-width: 160px;
  height: auto;
  opacity: 0.85;
  transition: opacity 0.2s;
  border-radius: 6px;
}
.footer-anpc a:hover img { opacity: 1; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-bottom span {
  font-size: 0.78rem;
  color: #555;
}

/* ── Footer Responsive ── */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media (max-width: 600px) {
  .site-footer { padding: 48px 6% 0; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-anpc { flex-direction: row; flex-wrap: wrap; }
  .footer-anpc a img { max-width: 130px; }
}
