:root {
  --bg-main: #0f0d0a;
  --bg-card: rgba(20, 14, 10, 0.78);
  --text-main: #f6f1eb;
  --text-soft: #d1c4b8;
  --text-muted: #b6a89b;
  --orange: #E87722;
  --gold: #c9a96e;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  font-family: "Outfit", sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
}

img {
  max-width: 100%;
  display: block;
}

.coming-soon {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow: hidden;
}

.coming-soon__bg {
  position: fixed;
  inset: 0;
  background: url("assets/bg.jpg") center center / cover no-repeat;
  z-index: 0;
}

.coming-soon__overlay {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(15, 13, 10, 0.82), rgba(15, 13, 10, 0.9)),
    radial-gradient(circle at top right, rgba(232, 119, 34, 0.12), transparent 28%),
    radial-gradient(circle at bottom left, rgba(201, 169, 110, 0.10), transparent 30%);
  z-index: 1;
}

.coming-soon__card {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 820px;

  text-align: center;
  padding: 40px 28px;

  border-radius: 28px;

  /* 🔥 transparență + efect premium */
  background: rgba(20, 14, 10, 0.13);

  /* blur pe fundal */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 255, 255, 0.08);

  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

.brand {
  display: flex;
  justify-content: center;
  margin-bottom: 22px;
}

.brand__logo {
  max-width: 360px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.brand__logo:hover {
  transform: scale(1.05);
  filter: brightness(1.15) drop-shadow(0 0 12px rgba(232, 119, 34, 0.4));
}

.coming-soon__badge {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 16px;
  border: 1px solid rgba(201, 169, 110, 0.35);
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 500;
}

.coming-soon__title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 1.05;
  margin-bottom: 18px;
}

.coming-soon__subtitle {
  max-width: 680px;
  margin: 0 auto 14px;
  color: var(--text-soft);
  font-size: 1.04rem;
  line-height: 1.8;
}

.coming-soon__description {
  max-width: 650px;
  margin: 0 auto 22px;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.8;
}

.coming-soon__slogan {
  margin-bottom: 28px;
  color: var(--orange);
  font-size: 1.18rem;
  font-weight: 700;
}

.coming-soon__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.22s ease, border-color 0.22s ease, opacity 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--orange);
  color: #fff;
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.01);
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.btn--secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.coming-soon__footer {
  margin-bottom: 24px;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.seo-text {
  max-width: 720px;
  margin: 0 auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.seo-text h2 {
  margin-bottom: 12px;
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 600;
}

.seo-text p {
  margin-bottom: 10px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

@media (max-width: 680px) {
  .coming-soon {
    padding: 16px;
  }

  .coming-soon__card {
    padding: 32px 20px;
    border-radius: 22px;
  }

  .brand__logo {
    max-width: 280px;
  }

  .coming-soon__subtitle,
  .coming-soon__description,
  .seo-text p {
    font-size: 0.95rem;
  }

  .btn {
    width: 100%;
    min-width: auto;
  }
}