@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --gold: #D4AF37;
  --gold-light: #F4E4C1;
  --gold-dark: #B8922E;
  --black: #0A0A0A;
  --charcoal: #1A1A1A;
  --silver: #C0C0C0;
  --white: #FFFFFF;
  --cream: #F5F5F0;
  --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F4E4C1 100%);
  --gradient-dark: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
}

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

::selection {
  background: var(--gold);
  color: var(--black);
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--cream);
  background: var(--black);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  letter-spacing: 1px;
}

h1 {
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 1.1;
  font-weight: 700;
}

h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.2;
}

h3 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.3;
}

/* Animated Geometric Shapes */
.shapes-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape-element {
  position: absolute;
  border: 2px solid rgba(212, 175, 55, 0.15);
  border-radius: 50%;
  animation: shapeFloat 20s ease-in-out infinite;
}

.shape-1 {
  width: 400px;
  height: 400px;
  top: 10%;
  left: -10%;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: morphShape 15s ease-in-out infinite, shapeFloat 25s ease-in-out infinite;
}

.shape-2 {
  width: 300px;
  height: 300px;
  top: 50%;
  right: -5%;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: morphShape 18s ease-in-out infinite reverse, shapeFloat 20s ease-in-out infinite;
}

.shape-3 {
  width: 250px;
  height: 250px;
  bottom: 10%;
  left: 20%;
  border-radius: 40% 60% 60% 40% / 40% 60% 40% 60%;
  animation: morphShape 12s ease-in-out infinite, rotateSlow 30s linear infinite;
}

.shape-4 {
  width: 350px;
  height: 350px;
  top: 30%;
  right: 25%;
  border-radius: 70% 30% 50% 50% / 30% 70% 50% 50%;
  animation: morphShape 20s ease-in-out infinite, shapeFloat 22s ease-in-out infinite reverse;
}

@keyframes shapeFloat {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -40px) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

@keyframes morphShape {
  0%, 100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }
}

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Grain Texture Overlay */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.5;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 2rem 5%;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.scrolled {
  padding: 1.2rem 5%;
  background: rgba(10, 10, 10, 0.95);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.nav-container {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 3px;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

.logo::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover::after {
  transform: scaleX(1);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 3.5rem;
  align-items: center;
}

.nav-menu a {
  color: var(--cream);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s ease;
}

.nav-menu a::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a:hover {
  color: var(--gold);
}

.nav-menu a:hover::before {
  width: 100%;
}

.cta-button {
  padding: 0.9rem 2.5rem;
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-gold);
  z-index: -1;
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-button:hover {
  color: var(--black);
  border-color: var(--gold);
}

.cta-button:hover::before {
  left: 0;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 10rem 5% 5rem;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6rem;
  align-items: center;
}

.hero-text {
  opacity: 0;
  animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

.hero-text h1 {
  color: var(--white);
  margin-bottom: 2rem;
  line-height: 1.1;
}

.gold-accent {
  color: var(--gold);
  font-style: italic;
}

.hero-text p {
  font-size: 1.2rem;
  line-height: 2;
  color: var(--silver);
  margin-bottom: 3rem;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.hero-buttons {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Bouton principal – style premium & responsive – coins droits */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.2rem;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none !important;
  color: #000000;
  background: var(--gold);               /* doré principal */
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 0;                      /* ← coins droits */
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.22);
  white-space: nowrap;
}

/* Hover / Focus */
.btn-primary:hover,
.btn-primary:focus-visible {
  background: #ffffff;
  color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.38);
  outline: none;
}

/* Active (clic / tap sur mobile) */
.btn-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.28);
}

/* ────────────────────────────────────────────────
 *  Adaptations responsive (inchangées)
 *  ──────────────────────────────────────────────── */
@media (max-width: 575px) {
  .btn-primary {
    padding: 1.1rem 2.4rem;
    font-size: 1.15rem;
    min-width: 260px;
    margin: 0.8rem auto;
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .btn-primary {
    padding: 1.05rem 2.3rem;
    font-size: 1.12rem;
  }
}

@media (min-width: 992px) {
  .btn-primary {
    padding: 1.1rem 2.5rem;
    font-size: 1.15rem;
  }
}

@media (min-width: 1400px) {
  .btn-primary {
    padding: 1.25rem 3rem;
    font-size: 1.22rem;
  }
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::after {
  width: 300px;
  height: 300px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

/* Bouton secondaire – style premium & responsive – rectangle net */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.2rem;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none !important;
  color: var(--gold);
  background: transparent;
  border: 2px solid var(--gold);
  border-radius: 0;                      /* rectangle parfait – coins droits */
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

/* Hover / Focus */
.btn-secondary:hover,
.btn-secondary:focus-visible {
  color: #000000;
  background: var(--gold);
  box-shadow: 0 10px 28px rgba(212, 175, 55, 0.32);
  transform: translateY(-3px);
  outline: none;
}

/* Active (clic / tap mobile) */
.btn-secondary:active {
  transform: translateY(-1px);
  box-shadow: 0 3px 12px rgba(212, 175, 55, 0.25);
}

/* Option : léger effet "shine" au hover (très luxury) */
.btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.25),
                              transparent
  );
  transition: left 0.6s;
}

.btn-secondary:hover::before {
  left: 150%;
}

/* ────────────────────────────────────────────────
 *  Adaptations responsive (mêmes tailles que .btn-primary pour cohérence)
 *  ──────────────────────────────────────────────── */
@media (max-width: 575px) {
  .btn-secondary {
    padding: 1.1rem 2.4rem;
    font-size: 1.15rem;
    min-width: 240px;
    margin: 0.8rem auto;
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .btn-secondary {
    padding: 1.05rem 2.3rem;
    font-size: 1.12rem;
  }
}

@media (min-width: 992px) {
  .btn-secondary {
    padding: 1.1rem 2.5rem;
    font-size: 1.15rem;
  }
}

@media (min-width: 1400px) {
  .btn-secondary {
    padding: 1.2rem 2.8rem;
    font-size: 1.18rem;
  }
}

.btn-secondary:hover {
  background: var(--cream);
  color: var(--black);
  transform: translateY(-3px);
}

.hero-visual {
  width: 100%;
  max-width: 800px;
  height: 500px;
  overflow: hidden;
  position: relative;
  margin: auto;
  border-radius: 12px;
}

.slider {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease-in-out;
}

.slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

.hero-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image:hover img {
  transform: scale(1.1);
}

.hero-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Section Divider */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  margin: 5rem auto;
  max-width: 300px;
}

/* Features Section */
.features-section {
  padding: 8rem 5%;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, var(--black) 0%, var(--charcoal) 50%, var(--black) 100%);
}

.section-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 6rem;
}

.section-header h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--silver);
  font-weight: 300;
  letter-spacing: 1px;
}

.features-grid {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.feature-card {
  background: rgba(26, 26, 26, 0.5);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.1) 50%, transparent 100%);
  transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  border-color: var(--gold);
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}

.feature-icon {
  font-size: 3.5rem;
  margin-bottom: 2rem;
  display: inline-block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
  color: var(--gold);
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--silver);
  line-height: 1.8;
  font-weight: 300;
}

/* Collection Section */
.collection-section {
  padding: 8rem 5%;
  position: relative;
  z-index: 1;
}

.collection-grid {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 4rem;
}

.car-card {
  background: rgba(26, 26, 26, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.15);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.car-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.car-card:hover::after {
  opacity: 1;
}

.car-card:hover {
  transform: translateY(-15px);
  border-color: var(--gold);
  box-shadow: 0 30px 80px rgba(212, 175, 55, 0.3);
}

.car-image-wrapper {
  height: 350px;
  overflow: hidden;
  position: relative;
}

.car-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.car-card:hover .car-image-wrapper img {
  transform: scale(1.15);
}

.car-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gradient-gold);
  color: var(--black);
  padding: 0.6rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  z-index: 2;
}

.car-details {
  padding: 2.5rem;
}

.car-details h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.car-specs {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--silver);
  font-size: 0.95rem;
  font-weight: 300;
}

.car-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.car-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
}

.car-price span {
  font-size: 1rem;
  color: var(--silver);
  font-weight: 300;
  font-family: 'Montserrat', sans-serif;
}

.btn-reserve {
  padding: 1rem 2.5rem;
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-reserve::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-gold);
  z-index: -1;
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-reserve:hover {
  color: var(--black);
}

.btn-reserve:hover::before {
  left: 0;
}

/* Contact Section */
.contact-section {
  padding: 8rem 5%;
  background: var(--charcoal);
  position: relative;
  z-index: 1;
}

.contact-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
}

.contact-info h2 {
  color: var(--white);
  margin-bottom: 2rem;
}

.contact-info p {
  color: var(--silver);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  font-weight: 300;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-text h4 {
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.contact-text p {
  color: var(--silver);
  margin: 0;
  font-size: 1rem;
}

.contact-form {
  background: rgba(10, 10, 10, 0.5);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  color: var(--gold);
  margin-bottom: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1.2rem;
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--cream);
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(26, 26, 26, 1);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.btn-submit {
  width: 100%;
  padding: 1.3rem;
  background: var(--gradient-gold);
  border: none;
  color: var(--black);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

/* Footer */
footer {
  background: var(--black);
  padding: 5rem 5% 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  position: relative;
  z-index: 1;
}

.footer-content {
  max-width: 1600px;
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
}

.footer-section h3 {
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.footer-section p {
  color: var(--silver);
  line-height: 1.8;
  font-weight: 300;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links a {
  color: var(--silver);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 300;
}

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

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icons a {
  width: 50px;
  height: 50px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: var(--gradient-gold);
  color: var(--black);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  color: var(--silver);
  font-weight: 300;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  h1 {
    font-size: 3rem;
  }

  .collection-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 8rem;
  }
}

/* Scroll Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Page Loader – texte FORCÉMENT plus petit */
.page-loader {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.9s ease 0.3s, visibility 1.3s;
  opacity: 1;
  visibility: visible;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;              /* base très petite */
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  text-align: center;
  padding: 0 0.8rem;
  line-height: 1;
  white-space: nowrap;
  animation: loaderPulse 2.6s infinite ease-in-out;
}
/* Animations légères */
@keyframes loaderPulse {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.03); }
}

@keyframes loaderDot {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50%      { transform: translateY(-4px); opacity: 1; }
}

/* ────────────────────────────────────────────────
 *  Réductions forcées par taille d'écran
 *  ──────────────────────────────────────────────── */

/* Grands écrans (desktop large) */
@media (min-width: 1200px) {
  .loader-logo {
    font-size: 1.5rem;           /* max raisonnable même sur 4K */
  }
}

/* Desktop / tablette normale */
@media (min-width: 768px) and (max-width: 1199px) {
  .loader-logo {
    font-size: 1.4rem;
  }
}

/* Mobile paysage / petites tablettes */
@media (max-width: 767px) {
  .loader-logo {
    font-size: 1.15rem;
    letter-spacing: 1.5px;
  }
  .loader-logo::before,
  .loader-logo::after {
    width: 4px;
    height: 4px;
    left: -12px;                 /* ::before */
  }
  .loader-logo::after {
    right: -12px;
  }
}

/* Petits mobiles portrait */
@media (max-width: 480px) {
  .loader-logo {
    font-size: 1rem;             /* très petit maintenant */
    letter-spacing: 1.2px;
    padding: 0 0.6rem;
  }
  .loader-logo::before,
  .loader-logo::after {
    width: 4px;
    height: 4px;
    left: -10px;
  }
  .loader-logo::after {
    right: -10px;
  }
}

/* Très très petits écrans (< 360px) */
@media (max-width: 360px) {
  .loader-logo {
    font-size: 0.9rem;           /* quasi minimal */
    letter-spacing: 1px;
  }
  .loader-logo::before,
  .loader-logo::after {
    display: none;               /* on enlève les points pour ne pas encombrer */
  }
}

/*reseau sociaux*/
.social-icons {
  display: flex;
  gap: 1.2rem;           /* un peu plus d'espace entre les cercles */
  margin-top: 1.5rem;
}

.social-icons a {
  width: 50px;
  height: 50px;
  background: rgba(212, 175, 55, 0.08);  /* fond légèrement plus discret */
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all 0.35s ease;
  overflow: hidden;       /* empêche tout débordement */
}

.social-icons a svg {
  width: 60%;             /* 60-65% donne généralement le meilleur rendu */
  height: 60%;
  transition: transform 0.35s ease;
}

.social-icons a:hover {
  background: var(--gradient-gold);
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.social-icons a:hover svg {
  transform: scale(1.15); /* léger zoom au survol pour plus de dynamisme */
}

/*Logo services*/
.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 50%;
  color: var(--gold);
  transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
  background: var(--gradient-gold);
  color: var(--black);
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.25);
}

.feature-icon svg {
  width: 48px;
  height: 48px;
  transition: transform 0.4s ease;
}

.feature-card:hover .feature-icon svg {
  transform: scale(1.15);
}

.premium-logo {
  position: relative;
  transition: transform 0.4s ease;
}

.premium-logo svg {
  filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.25));
  transition: all 0.4s ease;
}

.premium-logo:hover svg {
  transform: scale(1.12) rotate(5deg);
  filter: drop-shadow(0 8px 20px rgba(212, 175, 55, 0.45));
}

/* Loader – version compacte et premium */
.loader-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;          /* ← taille réduite */
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: none;          /* plus clean */
  animation: loaderPulse 2.6s infinite ease-in-out;
}
}

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --gold: #D4AF37;
  --gold-light: #F4E4C1;
  --gold-dark: #B8922E;
  --black: #0A0A0A;
  --charcoal: #1A1A1A;
  --silver: #C0C0C0;
  --white: #FFFFFF;
  --cream: #F5F5F0;
  --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F4E4C1 100%);
  --gradient-dark: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
}

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

::selection {
  background: var(--gold);
  color: var(--black);
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--cream);
  background: var(--black);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  letter-spacing: 1px;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 6rem);
  line-height: 1.1;
  font-weight: 700;
}

h2 {
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 1.2;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.3;
}

/* Animated Geometric Shapes */
.shapes-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape-element {
  position: absolute;
  border: 2px solid rgba(212, 175, 55, 0.15);
  border-radius: 50%;
  animation: shapeFloat 20s ease-in-out infinite;
}

.shape-1 {
  width: clamp(200px, 40vw, 400px);
  height: clamp(200px, 40vw, 400px);
  top: 10%;
  left: -10%;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: morphShape 15s ease-in-out infinite, shapeFloat 25s ease-in-out infinite;
}

.shape-2 {
  width: clamp(150px, 30vw, 300px);
  height: clamp(150px, 30vw, 300px);
  top: 50%;
  right: -5%;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: morphShape 18s ease-in-out infinite reverse, shapeFloat 20s ease-in-out infinite;
}

.shape-3 {
  width: clamp(125px, 25vw, 250px);
  height: clamp(125px, 25vw, 250px);
  bottom: 10%;
  left: 20%;
  border-radius: 40% 60% 60% 40% / 40% 60% 40% 60%;
  animation: morphShape 12s ease-in-out infinite, rotateSlow 30s linear infinite;
}

.shape-4 {
  width: clamp(175px, 35vw, 350px);
  height: clamp(175px, 35vw, 350px);
  top: 30%;
  right: 25%;
  border-radius: 70% 30% 50% 50% / 30% 70% 50% 50%;
  animation: morphShape 20s ease-in-out infinite, shapeFloat 22s ease-in-out infinite reverse;
}

@keyframes shapeFloat {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -40px) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

@keyframes morphShape {
  0%, 100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }
}

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Grain Texture Overlay */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: -1;
  opacity: 0.5;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 5%;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.scrolled {
  padding: 1rem 5%;
  background: rgba(10, 10, 10, 0.95);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.nav-container {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 3px;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

.logo::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover::after {
  transform: scaleX(1);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: clamp(1.5rem, 3vw, 3.5rem);
  align-items: center;
  transition: all 0.3s ease;
}

.nav-menu li {
  margin: 0;
}

.nav-menu a {
  color: var(--cream);
  text-decoration: none;
  font-size: clamp(0.9rem, 2vw, 1rem);
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s ease;
}

.nav-menu a::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a:hover {
  color: var(--gold);
}

.nav-menu a:hover::before {
  width: 100%;
}

.cta-button {
  padding: clamp(0.7rem, 1.5vw, 0.9rem) clamp(1.5rem, 3vw, 2.5rem);
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-gold);
  z-index: -1;
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-button:hover {
  color: var(--black);
  border-color: var(--gold);
}

.cta-button:hover::before {
  left: 0;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  cursor: pointer;
  z-index: 3;
}

.hamburger .line {
  width: 100%;
  height: 3px;
  background: var(--gold);
  transition: all 0.3s ease;
}

.hamburger.active .line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  padding: clamp(8rem, 15vh, 12rem) 5% clamp(5rem, 10vh, 8rem);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.hero-content {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(3rem, 5vw, 6rem);
  align-items: center;
}

.hero-text {
  max-width: 700px;
  text-align: center;
}

.hero-text p {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  line-height: 1.8;
  color: var(--silver);
  margin: 2rem 0 3rem;
  font-weight: 300;
}

.gold-accent {
  color: var(--gold);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.btn-primary, .btn-secondary {
  padding: clamp(1rem, 2vw, 1.2rem) clamp(2rem, 4vw, 3rem);
  text-align: center;
  min-width: 200px;
}

/* ============================
 *  HERO GALERIE – VERSION CLEAN
 *  ============================ */

.hero-visual {
  width: 100%;
  max-width: 800px;
  height: clamp(320px, 45vw, 480px); /* hauteur adaptative */
  margin: auto;
  overflow: hidden;
  position: relative;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

/* Slider */
.slider {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease-in-out;
}

/* Images */
.slider img {
  width: 100%;
  height: 100%;
  flex-shrink: 0;

  /* IMPORTANT : stop le zoom agressif */
  object-fit: cover;
  object-position: center;

  /* Sécurité anti-zoom */
  transform: none !important;
  transition: none !important;
}

/* Other sections remain similar, with clamp() for spacing */
.section-divider {
  width: 100%;
  height: 1px;
  background: rgba(212, 175, 55, 0.1);
  margin: clamp(4rem, 8vw, 6rem) 0;
}

.features-section, .collection-section, .contact-section {
  padding: clamp(5rem, 10vw, 8rem) 5%;
}

.features-grid, .collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(250px, 40vw, 300px), 1fr));
  gap: clamp(2rem, 4vw, 3rem);
}

/* Footer */
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(2rem, 4vw, 4rem);
}

/* Responsive Media Queries */
@media (max-width: 1200px) {
  .hero-content, .contact-container {
    grid-template-columns: 1fr;
  }
  .footer-content {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  nav {
    padding: 1rem 3%;
  }
  .nav-container {
    flex-wrap: wrap;
  }
  .hamburger {
    display: flex;
  }
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    padding: 2rem 0;
    gap: 2rem;
    align-items: center;
    z-index: 2;
  }
  .nav-menu.active {
    display: flex;
  }
  .cta-button {
    display: none; /* Hide desktop CTA, show in mobile menu */
  }
  .nav-menu .cta-button {
    display: block; /* Show in mobile menu */
    width: 80%;
    text-align: center;
  }
  .hero {
    min-height: 80vh;
    padding-top: 8rem;
  }
  .hero-text {
    text-align: center;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .slider {
    aspect-ratio: 4/3; /* Adjust for mobile */
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.5rem;
  }
  .hamburger {
    width: 25px;
    height: 20px;
  }
  .nav-menu a {
    font-size: 1.2rem;
  }
  .hero-visual {
    aspect-ratio: 1/1; /* Square on very small screens */
  }
}

/* Remaining styles (reveal, loader, icons, etc.) unchanged for brevity */

/* Bouton "Voir sur Google Maps" - Responsive & premium look */
.btn-maps {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1rem 2.2rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #000;
  background: var(--gold);                /* ou #d4af37 si pas de var */
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 50px;
  text-decoration: none !important;
  transition: all 0.35s ease;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.25);
  white-space: nowrap;
  letter-spacing: 0.4px;
}

/* Hover + focus */
.btn-maps:hover,
.btn-maps:focus {
  background: #fff;
  color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.35);
  outline: none;
}

/* Active / tapped (mobile) */
.btn-maps:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* ────────────────────────────────────────────────
 *  Adaptations par taille d'écran
 *  ──────────────────────────────────────────────── */

/* Mobile (< 576px) → bouton plus large et touch-friendly */
@media (max-width: 575px) {
  .btn-maps {
    padding: 1.1rem 2.5rem;
    font-size: 1.15rem;
    min-width: 240px;               /* évite qu'il soit trop étroit */
    margin: 0 auto;                 /* centre si dans un bloc flex/centered */
  }
}

/* Tablette (~768px) */
@media (min-width: 576px) and (max-width: 991px) {
  .btn-maps {
    padding: 1rem 2.4rem;
    font-size: 1.12rem;
  }
}

/* Grand écran — reste élégant */
@media (min-width: 992px) {
  .btn-maps {
    padding: 1.1rem 2.6rem;
    font-size: 1.15rem;
  }
}
