/* ═══════════════════════════════
   VibeGreece.com AI — preview.css
   Stiluri pentru pagina de demo
   Bazată pe sokolove.eu
═══════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Georgia', serif;
  background: #0d0d0d;
  color: #f0ebe3;
  font-size: 14px;
  line-height: 1.6;
}

/* NAV */
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: rgba(0,0,0,0.9);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-logo {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #e8d5b7;
}
.nav-links { display: flex; gap: 16px; }
.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.55);
  font-size: 10.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: -apple-system, sans-serif;
  transition: color 0.2s;
}
.nav-links a:hover { color: #e8d5b7; }
.nav-book {
  padding: 7px 16px;
  background: #c9a96e;
  color: #1a1208 !important;
  border-radius: 3px;
  font-weight: 600 !important;
  color: #0d0d0d;
}

/* HERO */
.hero {
  position: relative;
  height: 260px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 28px 24px;
  overflow: hidden;
  background: #111;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a0f2e 0%, #2d1b69 40%, #0d2137 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 60%);
}
.hero-badge {
  position: absolute;
  top: 16px;
  right: 20px;
  background: rgba(201,169,110,0.2);
  border: 1px solid rgba(201,169,110,0.4);
  color: #e8d5b7;
  font-size: 9px;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: -apple-system, sans-serif;
}
.hero-stars {
  position: absolute;
  top: 16px;
  left: 24px;
  color: #c9a96e;
  font-size: 11px;
  letter-spacing: 1px;
  font-family: -apple-system, sans-serif;
}
.hero-content { position: relative; z-index: 1; }
.hero-tag {
  font-family: -apple-system, sans-serif;
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 8px;
}
.hero h1 {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  color: #f0ebe3;
  letter-spacing: 0.5px;
}
.hero h1 em { font-style: italic; color: #c9a96e; }
.hero-sub {
  font-family: -apple-system, sans-serif;
  font-size: 11px;
  color: rgba(240,235,227,0.65);
  margin-top: 6px;
}

/* Floating dress icon decoration */
.hero-dress {
  position: absolute;
  right: 20px;
  bottom: 20px;
  font-size: 48px;
  opacity: 0.15;
  filter: blur(1px);
}

/* SERVICES */
.section { padding: 24px 20px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.section-tag {
  font-family: -apple-system, sans-serif;
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 6px;
}
.section h2 {
  font-size: 17px;
  font-weight: 400;
  color: #f0ebe3;
  margin-bottom: 16px;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px;
  padding: 14px 12px;
  transition: border-color 0.2s;
}
.service-card:hover { border-color: rgba(201,169,110,0.3); }
.service-icon { font-size: 18px; margin-bottom: 6px; }
.service-name {
  font-size: 12px;
  font-weight: 600;
  color: #e8d5b7;
  font-family: -apple-system, sans-serif;
  margin-bottom: 3px;
}
.service-desc {
  font-size: 10.5px;
  color: rgba(240,235,227,0.5);
  font-family: -apple-system, sans-serif;
  line-height: 1.4;
}

/* ABOUT */
.about-strip {
  padding: 20px;
  background: rgba(201,169,110,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.about-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c9a96e, #8b6914);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  border: 2px solid rgba(201,169,110,0.4);
}
.about-text h3 {
  font-size: 13px;
  font-weight: 600;
  color: #e8d5b7;
  font-family: -apple-system, sans-serif;
  margin-bottom: 4px;
}
.about-text p {
  font-size: 11px;
  color: rgba(240,235,227,0.55);
  font-family: -apple-system, sans-serif;
  line-height: 1.5;
}

/* REVIEWS */
.reviews-strip {
  padding: 18px 20px;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.review-header h3 {
  font-size: 13px;
  font-weight: 600;
  color: #e8d5b7;
  font-family: -apple-system, sans-serif;
}
.review-score {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: -apple-system, sans-serif;
}
.stars { color: #c9a96e; font-size: 12px; }
.score { font-size: 11px; color: rgba(240,235,227,0.6); }
.review-item {
  font-family: -apple-system, sans-serif;
  font-size: 11.5px;
  color: rgba(240,235,227,0.65);
  font-style: italic;
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  line-height: 1.5;
}
.review-item:first-of-type { border-top: none; }
.review-author {
  font-size: 10px;
  color: #c9a96e;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* CONTACT */
.contact-bar {
  padding: 18px 20px;
  background: #0a0a0a;
  text-align: center;
}
.contact-bar p:first-child {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c9a96e;
  font-family: -apple-system, sans-serif;
  margin-bottom: 8px;
}
.contact-bar h3 {
  font-size: 15px;
  color: #f0ebe3;
  font-weight: 400;
  margin-bottom: 12px;
}
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  background: #25D366;
  color: white;
  border-radius: 4px;
  font-family: -apple-system, sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}
.contact-info {
  margin-top: 12px;
  font-family: -apple-system, sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
}
