:root {
  --night: #12162a;
  --deep: #1d2440;
  --gold: #d8a84f;
  --cream: #fff7ea;
  --soft: #f8efe0;
  --text: #2d2a32;
  --muted: #746f7c;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Georgia", "Times New Roman", serif;
  color: var(--text);
  background: var(--cream);
}

.navbar {
  background: rgba(18, 22, 42, 0.72);
  backdrop-filter: blur(12px);
  padding: 18px 0;
}

.navbar-brand {
  color: #fff;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 1.35rem;
}

.navbar-brand:hover {
  color: var(--gold);
}

.btn-nav {
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50px;
  padding: 10px 22px;
}

.btn-nav:hover {
  background: #fff;
  color: var(--night);
}

.hero {
  min-height: 100vh;
  background: url("images/hero-voyance.jpeg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18,22,42,0.88), rgba(18,22,42,0.45), rgba(18,22,42,0.15)),
    linear-gradient(0deg, rgba(18,22,42,0.35), rgba(18,22,42,0.1));
}

.hero-content {
  position: relative;
  max-width: 780px;
  padding-top: 80px;
}

.eyebrow,
.section-label {
  display: inline-block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
  margin-bottom: 28px;
}

.hero p {
  font-size: 1.25rem;
  max-width: 650px;
  color: rgba(255,255,255,0.88);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 35px;
}

.btn-main,
.btn-light-soft {
  border-radius: 50px;
  padding: 14px 30px;
  font-weight: 600;
}

.btn-main {
  background: var(--gold);
  color: var(--night);
}

.btn-main:hover {
  background: #f1c66b;
  transform: translateY(-2px);
}

.btn-light-soft {
  background: rgba(255,255,255,0.18);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.38);
  backdrop-filter: blur(8px);
}

.btn-light-soft:hover {
  background: #fff;
  color: var(--night);
}

.section {
  padding: 100px 0;
}

.intro-section h2,
.consultations h2,
.tarifs h2,
.reassurance h2,
.contact-section h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: var(--night);
  margin-bottom: 24px;
}

.intro-section p,
.section-intro,
.reassurance p,
.contact-card p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--muted);
}

.image-card {
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(18,22,42,0.22);
  min-height: 420px;
}

.image-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.consultations {
  background: #fff;
}

.service-card,
.price-card,
.contact-card,
.reassurance-box {
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(216,168,79,0.22);
  border-radius: 30px;
  padding: 38px;
  height: 100%;
  box-shadow: 0 20px 50px rgba(18,22,42,0.08);
}

.service-card {
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(18,22,42,0.14);
}

.icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--soft);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
}

.service-card h3,
.price-card h3 {
  color: var(--night);
  font-size: 1.5rem;
  margin-bottom: 14px;
}

.service-card p,
.price-card p {
  color: var(--muted);
  line-height: 1.7;
}

.tarifs {
  background:
    radial-gradient(circle at top left, rgba(216,168,79,0.22), transparent 35%),
    var(--cream);
}

.price-card {
  text-align: center;
  padding: 34px 24px;
}

.price-card h3 {
  font-size: 1.8rem;
  color: var(--gold);
}

.payment-note {
  color: var(--muted);
  font-size: 1.05rem;
}

.reassurance {
  background: var(--night);
  color: #fff;
}

.reassurance-box {
  background:
    linear-gradient(135deg, rgba(216,168,79,0.25), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.16);
  text-align: center;
  max-width: 900px;
  margin: auto;
}

.reassurance h2 {
  color: #fff;
}

.reassurance p {
  color: rgba(255,255,255,0.75);
}

.contact-section {
  background: linear-gradient(180deg, #fff, var(--cream));
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 35px auto 0;
  max-width: 720px;
}

.contact-method {
  display: block;
  padding: 22px 24px;
  border-radius: 22px;
  border: 1px solid rgba(216,168,79,0.28);
  background: rgba(255,247,234,0.55);
  text-decoration: none;
  transition: 0.3s ease;
  text-align: center;
}

.contact-method:hover {
  transform: translateY(-3px);
  border-color: rgba(216,168,79,0.65);
  background: rgba(255,247,234,0.95);
}

.contact-method-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.contact-method-value {
  display: block;
  font-size: 1.35rem;
  letter-spacing: 1px;
  color: var(--night);
  font-weight: 600;
}

.contact-method:hover .contact-method-value {
  color: var(--gold);
}

.contact-sub {
  font-size: 0.95rem;
  color: var(--muted);
  margin-top: 24px;
}

@media (max-width: 768px) {
  .contact-methods {
    grid-template-columns: 1fr;
  }

  .contact-method-value {
    font-size: 1.05rem;
  }
}

.small-text {
  font-size: 0.9rem !important;
}

footer {
  background: var(--night);
  color: rgba(255,255,255,0.72);
  padding: 28px 0;
  font-size: 0.9rem;
}

footer .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

footer p {
  margin: 0;
}

footer a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  margin-left: 18px;
}

footer a:hover {
  color: var(--gold);
}

@media (max-width: 768px) {
  .hero {
    min-height: 760px;
  }

  .hero-overlay {
    background: rgba(18,22,42,0.72);
  }

  .section {
    padding: 70px 0;
  }

  .service-card,
  .price-card,
  .contact-card,
  .reassurance-box {
    padding: 28px;
  }

  footer .container {
    flex-direction: column;
    text-align: center;
  }

  footer a {
    margin: 0 8px;
  }
}