@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;600;700&display=swap');

:root {
  --red: #C8102E;
  --gold: #F5C200;
  --black: #0A0A0A;
  --dark: #111;
  --light: #FAFAFA;
  --muted: #888;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Sora', sans-serif;
  background: var(--black);
  color: var(--light);
  overflow-x: hidden;
}

/* ================================
   FADE-IN (SCROLL)
================================ */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================
   HEADER / NAVBAR (SANS BACKGROUND)
================================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  background: none; /* ✅ SUPPRIMÉ */
  transition: background .4s, padding .4s;
}

nav {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
}

.nav-logo img {
  height: 42px;
}

.nav-logo-text {
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--light);
}

.nav-logo-text span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  font-weight: 600;
  font-size: .78rem;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color .3s;
}

.nav-links a:hover {
  color: var(--light);
}

.nav-cta {
  padding: .55rem 1.4rem;
  border: 1.5px solid var(--gold);
  color: var(--gold) !important;
  border-radius: 3px;
  transition: .3s;
}

.nav-cta:hover {
  background: var(--gold);
  color: #000 !important;
}

/* ================================
   CONTACT DIRECT (PRO CLEAN)
================================ */
#contact-direct {
  padding: 120px 20px;
  text-align: center;
  background: radial-gradient(circle at top, #111 0%, #000 100%);
}

.contact-direct-title {
  font-size: 2.8rem;
  margin-bottom: 50px;
  font-weight: 700;
  color: #fff;
}

.contact-direct-box {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 500px;
  margin: auto;
}

/* CARD */
.contact-direct-item {
  padding: 30px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  transition: all 0.4s ease;
}

/* HOVER 3D */
.contact-direct-item:hover {
  transform: perspective(1000px) rotateX(5deg) rotateY(-5deg) translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  border-color: rgba(245,194,0,0.3);
}

/* TITRE */
.contact-direct-item h3 {
  margin-bottom: 10px;
  color: #fff;
  font-weight: 600;
}

/* EMAIL */
.contact-direct-item a {
  color: var(--gold);
  font-size: 1.1rem;
  text-decoration: none;
  font-weight: 600;
  position: relative;
}

/* UNDERLINE */
.contact-direct-item a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.contact-direct-item a:hover::after {
  width: 100%;
}

/* GLOW */
.contact-direct-item a:hover {
  text-shadow: 0 0 12px rgba(245,194,0,0.8);
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .contact-direct-title {
    font-size: 2.2rem;
  }

  .nav-links {
    gap: 1rem;
  }
}