@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Cormorant+Garamond:wght@300;400;500;600&family=Montserrat:wght@200;300;400;500&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --noir: #0a0a0a;
  --noir-velours: #0d0d0d;
  --or: #c9a961;
  --or-mat: #b89850;
  --or-clair: #e8d7b0;
  --ivoire: #f8f6f0;
  --gris-anthracite: #1a1a1a;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: var(--noir);
  color: var(--or-clair);
  overflow-x: hidden;
  line-height: 1.6;
  padding-top: 80px;
}

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 169, 97, 0.2);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: "Cinzel", serif;
  font-size: 1.3rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--or);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin-right: 360px;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--or-clair);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
  display: block;
}

.nav-link:hover {
  color: var(--or);
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(26, 26, 26, 0.98);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 169, 97, 0.2);
  list-style: none;
  padding: 1rem 0;
  margin: 0;
  min-width: 250px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--or-clair);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.dropdown-menu a:hover {
  background: rgba(201, 169, 97, 0.1);
  color: var(--or);
  padding-left: 2rem;
}

/* Language Selector */
.nav-language {
  margin-left: 1rem;
  display: none;
}

.language-selector {
  background: transparent;
  border: 1px solid rgba(201, 169, 97, 0.3);
  color: var(--or);
  padding: 0.5rem 1rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.language-selector:hover {
  border-color: var(--or);
  background: rgba(201, 169, 97, 0.1);
}

.language-selector option {
  background: var(--noir);
  color: var(--or-clair);
}

@media (max-width: 768px) {
  .nav-language {
    display: none;
  }
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.4rem;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background: var(--or);
  transition: all 0.3s ease;
}

/* Custom Cursor */
body {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20"><circle cx="10" cy="10" r="8" fill="rgba(212,175,55,0.3)" stroke="%23D4AF37" stroke-width="1"/></svg>')
      10 10,
    auto;
}

a,
button {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"><circle cx="12" cy="12" r="10" fill="rgba(212,175,55,0.5)" stroke="%23D4AF37" stroke-width="2"/></svg>')
      12 12,
    pointer;
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Sections commune */
section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 4rem 2rem;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
}

/* SECTION 1 - HERO D'OUVERTURE */
.hero {
  min-height: 100vh;
  background: linear-gradient(rgba(10, 10, 10, 0.55), rgba(10, 10, 10, 0.6)),
    url("images/hero.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .hero {
    min-height: 100vh;
    background-attachment: scroll;
    background-size: cover;
    padding: 1rem 1rem;
  }
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 20% 50%,
      rgba(201, 169, 97, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(201, 169, 97, 0.1) 0%,
      transparent 50%
    );
  animation: shimmer 20s ease-in-out infinite;
}

@keyframes shimmer {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
}

.globe-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  opacity: 0.1;
  animation: rotateGlobe 60s linear infinite;
}

@keyframes rotateGlobe {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.globe-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.3));
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  animation: fadeInUp 1.5s ease-out;
  margin-top: -70px;
}

.hero-logo-container {
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeIn 2s ease-out 0.3s forwards;
}

.hero-logo-img {
  width: 200px;
  height: auto;
  filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.4));
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-pre-title {
  font-family: "Cinzel", serif;
  font-size: 0.9rem;
  letter-spacing: 0.5em;
  color: var(--or);
  margin-bottom: 2rem;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 2s ease-out 0.5s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.hero-title {
  font-family: "Cinzel", serif;
  font-size: 5rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--or);
  margin-bottom: 2rem;
  text-shadow: 0 0 40px rgba(212, 175, 55, 0.4);
  opacity: 0;
  animation: fadeIn 2s ease-out 1s forwards;
}

.hero-subtitle {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 300;
  font-style: italic;
  color: var(--or-clair);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeIn 2s ease-out 1.5s forwards;
}

.hero-description {
  font-size: 1rem;
  font-weight: 300;
  color: var(--or-clair);
  letter-spacing: 0.1em;
  margin-bottom: 4rem;
  opacity: 0.8;
  opacity: 0;
  animation: fadeIn 2s ease-out 2s forwards;
}

.hero-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  opacity: 0;
  animation: fadeIn 2s ease-out 2.5s forwards;
}

.btn {
  padding: 1.2rem 2rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--or);
  color: var(--noir);
  padding-left: 10px;
  padding-right: 10px;
  border: #0a0a0a;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background: var(--or-mat);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--or);
  border: 1px solid var(--or);
}

.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--or-clair);
  color: var(--or-clair);
  transform: translateY(-2px);
}

/* SECTION 2 - L'ESPRIT DE LA MAISON */
.esprit {
  background: var(--noir-velours);
  position: relative;
}

.esprit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("https://images.unsplash.com/photo-1595428774223-ef52624120d2?w=1600&q=90");
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  filter: grayscale(100%);
}

.esprit-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.section-label {
  font-family: "Cinzel", serif;
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--or);
  text-align: center;
  margin-bottom: 2rem;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--or-clair);
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.3;
}

.esprit-box {
  background: rgba(26, 26, 26, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 4rem;
  position: relative;
}

.esprit-box::before,
.esprit-box::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  border: 1px solid var(--or);
}

.esprit-box::before {
  top: -1px;
  left: -1px;
  border-right: none;
  border-bottom: none;
}

.esprit-box::after {
  bottom: -1px;
  right: -1px;
  border-left: none;
  border-top: none;
}

.esprit-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--or-clair);
  line-height: 2;
  text-align: center;
  margin-bottom: 2rem;
}

.esprit-text strong {
  color: var(--or);
  font-weight: 400;
}

.esprit-signature {
  font-family: "Cinzel", serif;
  font-size: 1rem;
  letter-spacing: 0.3em;
  text-align: center;
  color: var(--or);
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

/* SECTION 3 - NOS SERVICES */
.nos-services {
  background: var(--noir-velours);
  padding: 8rem 2rem;
}

.section-description {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--or-clair);
  max-width: 800px;
  margin: 0 auto 4rem;
  line-height: 1.8;
  opacity: 0.9;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.service-card {
  background: var(--gris-anthracite);
  border: 1px solid rgba(212, 175, 55, 0.1);
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--or), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.service-card:hover::before {
  transform: translateX(100%);
}

.service-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--or);
  margin-bottom: 1.5rem;
}

.service-title {
  font-family: "Cinzel", serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--or);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.service-description {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--or-clair);
  line-height: 1.8;
  opacity: 0.85;
}

/* IMAGE SECTIONS WITH PARALLAX */
.image-section {
  height: 60vh;
  position: relative;
  overflow: hidden;
  margin: 0;
}

.parallax-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  filter: brightness(0.7);
}

@media (min-width: 769px) {
  .parallax-image {
    height: 120%;
    top: -10%;
  }
}

@media (max-width: 768px) {
  .image-section {
    height: 50vh;
    min-height: 300px;
  }

  .parallax-image {
    height: 100%;
    top: 0;
    object-fit: cover;
    object-position: center;
    position: relative;
  }
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(10, 10, 10, 0.5), rgba(10, 10, 10, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--or);
  text-align: center;
  padding: 2rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
  line-height: 1.4;
}

/* SECTION 4 - PÔLES PAR CONTINENT */
.poles-continents {
  background: linear-gradient(180deg, var(--noir) 0%, var(--noir-velours) 100%);
  padding: 8rem 2rem;
}

.poles-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 4rem auto 0;
}

/* First row: 4 cards, each taking 3 columns */
.pole-card:nth-child(1) {
  grid-column: 1 / 4;
}

.pole-card:nth-child(2) {
  grid-column: 4 / 7;
}

.pole-card:nth-child(3) {
  grid-column: 7 / 10;
}

.pole-card:nth-child(4) {
  grid-column: 10 / 13;
}

/* Second row: 3 cards centered, each taking 3 columns, starting from column 3 */
.pole-card:nth-child(5) {
  grid-column: 3 / 6;
}

.pole-card:nth-child(6) {
  grid-column: 6 / 9;
}

.pole-card:nth-child(7) {
  grid-column: 9 / 12;
}

@media (max-width: 1200px) {
  .poles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pole-card:nth-child(n) {
    grid-column: span 1 !important;
  }
}

@media (max-width: 768px) {
  .poles-grid {
    grid-template-columns: 1fr;
  }
}

.pole-card {
  background: var(--gris-anthracite);
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}

.pole-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--or), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.pole-card:hover::before {
  transform: translateX(100%);
}

.pole-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
}

.pole-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  filter: grayscale(100%) brightness(1.5);
}

.pole-title {
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
  color: var(--or);
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.pole-subtitle {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--or-clair);
  margin-bottom: 1.5rem;
}

.pole-description {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--or-clair);
  line-height: 1.8;
  opacity: 0.85;
}

/* SECTION 5 - PHILOSOPHIE MONDIALE */
.philosophie {
  background: var(--noir);
  position: relative;
  overflow: hidden;
}

.philosophie::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.1) 0%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  animation: breathe 8s ease-in-out infinite;
}

@keyframes breathe {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
  }
}

.philosophie-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.philosophie-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  font-weight: 300;
  font-style: italic;
  color: var(--or);
  margin-bottom: 4rem;
  line-height: 1.6;
  position: relative;
}

.philosophie-quote::before,
.philosophie-quote::after {
  content: '"';
  font-size: 4rem;
  opacity: 0.3;
}

.philosophie-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}

.value-item {
  text-align: center;
  padding: 2rem;
}

.value-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  font-weight: 300;
  color: var(--or);
  opacity: 0.3;
  margin-bottom: 1rem;
}

.value-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  border: 1px solid var(--or);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--or);
  transition: all 0.4s ease;
}

.value-item:hover .value-icon {
  background: var(--or);
  color: var(--noir);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
}

.value-title {
  font-family: "Cinzel", serif;
  font-size: 1.2rem;
  color: var(--or-clair);
  margin-bottom: 1rem;
}

.value-description {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--or-clair);
  line-height: 1.8;
  opacity: 0.85;
}

.philosophie-footer {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.philosophie-footer-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--or-clair);
  line-height: 2;
}

/* SECTION 6 - VALEURS */
.valeurs {
  background: radial-gradient(
    ellipse at center,
    rgba(212, 175, 55, 0.05) 0%,
    var(--noir-velours) 70%
  );
  position: relative;
}

.valeurs-monogram {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Cinzel", serif;
  font-size: 20rem;
  font-weight: 300;
  color: var(--or);
  opacity: 0.03;
  letter-spacing: -0.1em;
}

.valeurs-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.valeurs-title {
  font-family: "Cinzel", serif;
  font-size: 1.7rem;
  color: var(--or);
  margin-bottom: 3rem;
  letter-spacing: 0.3em;
  line-height: 1.8;
}

.valeurs-subtitle {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--or-clair);
  margin-bottom: 3rem;
}

.valeurs-tagline {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 300;
  font-style: italic;
  color: var(--or-clair);
  line-height: 1.8;
}

/* SECTION 7 - CONTACT */
#contact {
  background: var(--ivoire);
  color: var(--gris-anthracite);
}

.contact-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.contact .section-label {
  color: var(--or-mat);
}

.contact .section-title {
  color: var(--gris-anthracite);
}

.contact-info {
  margin: 3rem 0;
}

.contact-item {
  font-size: 1.1rem;
  margin: 1rem 0;
  color: var(--gris-anthracite);
}

.contact-item a {
  color: var(--or-mat);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--or);
}

.contact-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 3rem;
}

.btn-gold {
  background: var(--or);
  color: var(--noir);
}

.btn-gold:hover {
  background: var(--or-mat);
}

.btn-outline-dark {
  background: transparent;
  color: var(--noir);
  border: 1px solid var(--noir);
  padding-left: 12px;
  padding-right: 12px;
}

.btn-outline-dark:hover {
  background: var(--noir);
  color: var(--or);
}

/* SECTION 8 - SIGNATURE DE FIN */
.signature-finale {
  background: var(--noir);
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem;
}

.signature-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.signature-logo-container {
  margin-bottom: 2rem;
}

.signature-logo-svg {
  color: var(--or);
  filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.3));
  animation: glow 3s ease-in-out infinite;
}

.signature-logo-text {
  font-family: "Cinzel", serif;
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--or);
  margin-bottom: 2rem;
}

.signature-logo {
  font-family: "Cinzel", serif;
  font-size: 4rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--or);
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.signature-tagline {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
  color: var(--or-clair);
  margin-bottom: 2rem;
}

.signature-text {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--or-clair);
  line-height: 2;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 968px) {
  .hero-title {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .poles-grid,
  .philosophie-values {
    grid-template-columns: 1fr;
  }

  .hero-buttons,
  .contact-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .valeurs-monogram {
    font-size: 10rem;
  }

  .image-section {
    height: 40vh;
  }

  .image-text {
    font-size: 1.5rem;
    padding: 0 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2rem !important;
    letter-spacing: 0.05em;
  }

  .hero-tagline {
    font-size: 1rem !important;
  }

  .hero-description {
    font-size: 0.9rem !important;
  }

  .section-title {
    font-size: 1.8rem !important;
  }

  .parallax-image {
    background-attachment: scroll !important;
  }

  .image-section {
    height: 40vh;
  }

  .pole-card,
  .service-card {
    padding: 2rem 1.5rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
  }

  .nav-menu.active {
    display: flex;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: none;
    padding-left: 1rem;
  }
}

/* Loading Animation */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--noir);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 1s ease-out, visibility 1s ease-out;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.loading-logo-img {
  width: 250px;
  height: auto;
  animation: fadeInOut 2s ease-in-out infinite;
}

.loading-logo {
  font-family: "Cinzel", serif;
  font-size: 2rem;
  letter-spacing: 0.3em;
  color: var(--or);
  animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes fadeInOut {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

/* Footer */
footer {
  background: var(--noir);
  border-top: 1px solid rgba(201, 169, 97, 0.2);
  padding: 4rem 2rem 2rem;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  font-family: "Cinzel", serif;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--or);
  margin-bottom: 0.5rem;
}

.footer-subtitle {
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--or-clair);
  margin-bottom: 3rem;
  opacity: 0.8;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--or-clair);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
  font-weight: 300;
}

.footer-links a:hover {
  color: var(--or);
}

.footer-social {
  margin: 3rem 0;
}

.footer-social-title {
  font-family: "Cinzel", serif;
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 1.5rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.social-icon {
  color: var(--or-clair);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icon:hover {
  color: var(--or);
  transform: translateY(-3px);
}

.social-icon svg {
  width: 24px;
  height: 24px;
}

.footer-legal {
  font-size: 0.75rem;
  color: var(--or-clair);
  opacity: 0.7;
  line-height: 1.8;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 169, 97, 0.1);
  font-weight: 300;
}

.footer-legal-link {
  color: var(--or-clair);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal-link:hover {
  color: var(--or);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--noir);
}

::-webkit-scrollbar-thumb {
  background: var(--or);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--or-clair);
}
