/*
Theme Name: MSL Global Luxury PRO
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Cormorant+Garamond:wght@300;500&display=swap');

body {
  margin: 0;
  background: #050505;
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
}

/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  border-bottom: 1px solid rgba(212,175,55,0.2);
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #d4af37;
}

/* MENIU PREMIUM AURIU */
.menu {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}
.menu a, .menu-btn {
  padding: 10px 25px;
  border: 1px solid #d4af37;
  color: #d4af37 !important;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
}
.menu a:hover, .menu-btn:hover {
  background: #d4af37;
  color: #000 !important;
}
.menu a::after, .menu-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #d4af37;
  transition: 0.3s;
}
.menu a:hover::after, .menu-btn:hover::after {
  width: 100%;
}

/* HERO */
.hero {
  text-align: center;
  padding: 120px 20px 60px;
}
.hero h1 {
  font-size: 64px;
  color: #d4af37;
}
.hero p {
  font-size: 20px;
  color: #aaa;
}

/* GRID + CARDURI */
.grid {
  display: flex;
  gap: 40px;
  justify-content: center;
  padding: 60px;
  flex-wrap: wrap;
}
.card {
  width: 280px;
  background: #111;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(212,175,55,0.1);
  transition: 0.3s;
}
.card:hover {
  transform: translateY(-8px);
}
.card-img img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.card-content {
  padding: 20px;
}
.card-content h2 {
  font-family: 'Playfair Display', serif;
  color: #d4af37;
  font-size: 22px;
  margin: 0 0 8px 0;
}
.card-content p {
  color: #ddd;
  font-size: 16px;
  margin-bottom: 15px;
}
.btn {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #d4af37;
  color: #d4af37;
  text-decoration: none;
  font-size: 13px;
  transition: 0.3s;
}
.btn:hover {
  background: #d4af37;
  color: #000;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 40px;
  color: #777;
  border-top: 1px solid rgba(212,175,55,0.2);
}

/* ====================== STILURI PENTRU PAGINA WEB DESIGN (dacă o păstrezi) ====================== */
.page-id-29 .card-img img { display: none !important; }

.wd-hero, .webdesign-hero {
  text-align: center;
  padding: 100px 20px;
  background: #000;
  color: #d4af37;
}
.wd-hero h1, .webdesign-hero h1 { font-size: 42px; }
.wd-section { padding: 80px 20px; text-align: center; }
.wd-section.dark { background: #0e0e0e; }
.wd-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}
.wd-card {
  background: #111;
  border: 1px solid #444;
  padding: 30px;
  width: 220px;
  transition: 0.3s;
}
.wd-card:hover {
  border-color: #d4af37;
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(212,175,55,0.3);
}
.wd-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  border: 1px solid #d4af37;
  color: #d4af37;
  text-decoration: none;
  transition: 0.3s;
}
.wd-btn:hover {
  background: #d4af37;
  color: #000;
}
