@import"https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Raleway:wght@300;400;500;600&display=swap";
:root {
  --gold: #d4af37;
  --gold-soft: #f1c75b;
  --bg: #0b0b0d;
  --text: #eaeaea;
  --text-muted: #bdbdbd;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

section {
  padding: 80px 0;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
}

h1 {
  font-size: 3rem;
  margin-top: 20px;
	background: linear-gradient(135deg, hsl(43, 90%, 50%), hsl(43, 80%, 68%), hsl(43, 90%, 50%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
	font-family: "Playfair Display", serif;
	font-size: 3.75rem;
	line-height: 1;
	letter-spacing: -0.025em;
	font-weight: 900;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.subtitle {
  letter-spacing: 3px;
  color: var(--text-muted);
  margin-top: 10px;
  font-size: 1.25rem;
  line-height: 1.75rem;
  color: hsl(var(--muted-foreground));
  letter-spacing: 0.1em;
  font-weight: 300;
}

.divider {
  width: 80px;
  height: 2px;
  background: var(--gold);
  margin: 20px auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, hsl(43, 90%, 50%), transparent);
}

.logo {
  width: 300px;
  max-width: 80%;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

/* HERO */
.hero {
  padding-top: 120px;
  padding-bottom: 120px;
  background: radial-gradient(circle at top, #1a1a1f 0%, #0b0b0d 60%);
}

/* WELCOME */
.welcome p, .cours p {
  max-width: 700px;
  margin: auto;
  color: var(--text-muted);
  font-size: 1.1rem;
  --tw-space-y-reverse: 0;
    margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
   line-height: 1.500;
 font-size: 1rem;
}
p.sub{
	color:#8c8c8c;
}
/* TROUPE */
.card {
  margin-top: 40px;
}

.card img {
  width: 100%;
  max-width: 300px;
  border-radius: 16px;
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.2);
}

.caption {
  margin-top: 15px;
  color: var(--text-muted);
}

/* CONTACT */
.contact p {
  max-width: 600px;
  margin: 10px auto 30px;
  color: var(--text-muted);
}

.form-placeholder {
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 12px;
  padding: 40px;
  color: var(--text-muted);
}

/* FOOTER */
footer {
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding: 40px 0;
  background: #08080a;
}

footer h3 {
  margin-bottom: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  section {
    padding: 60px 0;
  }

}