/* ════════════════════════════════════════════
   CAROLINE LE — Feuille de style partagée
   www.carolinele.fr
   ════════════════════════════════════════════ */

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

/* ── VARIABLES ── */
:root {
  --gold:        #c9a84c;
  --gold-light:  #e2c97e;
  --gold-dark:   #9a7a2e;
  --black:       #0d0d0d;
  --black-soft:  #1a1a1a;
  --white:       #f8f5f0;
  --grey:        #2e2e2e;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
  cursor: none;
}

/* ── CURSEUR PERSONNALISÉ ── */
.cursor {
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transition: transform 0.35s ease, opacity 0.3s;
  opacity: 0.6;
}

/* ── NAVIGATION ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.8rem 4rem;
  background: linear-gradient(to bottom, rgba(13,13,13,0.95), transparent);
  backdrop-filter: blur(4px);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 300; letter-spacing: 0.15em;
  color: var(--gold-light); text-decoration: none;
}
.nav-logo span { font-style: italic; color: var(--white); }
nav ul { list-style: none; display: flex; gap: 2.5rem; }
nav ul a {
  text-decoration: none; color: var(--white);
  font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase;
  font-weight: 500; opacity: 0.7;
  transition: opacity 0.3s, color 0.3s;
}
nav ul a:hover, nav ul a.active { opacity: 1; color: var(--gold); }

/* ── TYPOGRAPHIE ── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
}
.section-label {
  font-size: 0.6rem; letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem; display: block;
}
.section-title {
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  line-height: 1.15;
}
.gold-line {
  width: 50px; height: 1px;
  background: var(--gold);
  margin: 2rem 0;
}

/* ── BOUTONS ── */
.btn-gold {
  display: inline-block; padding: 1rem 2.5rem;
  background: var(--gold); color: var(--black);
  text-decoration: none; font-size: 0.7rem;
  letter-spacing: 0.25em; text-transform: uppercase;
  font-weight: 600; transition: background 0.3s, transform 0.2s;
  border: none; cursor: pointer; font-family: 'Montserrat', sans-serif;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline {
  display: inline-block; padding: 1rem 2.5rem;
  border: 1px solid rgba(201,168,76,0.4); color: var(--gold);
  text-decoration: none; font-size: 0.7rem;
  letter-spacing: 0.25em; text-transform: uppercase;
  font-weight: 500; transition: border-color 0.3s, background 0.3s;
  background: transparent; cursor: pointer; font-family: 'Montserrat', sans-serif;
}
.btn-outline:hover { border-color: var(--gold); background: rgba(201,168,76,0.08); }

/* ── FORMULAIRE ── */
.contact-form { display: flex; flex-direction: column; gap: 1.4rem; }
.field-group { display: flex; flex-direction: column; gap: 0.5rem; }
label {
  font-size: 0.65rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold);
}
input, textarea, select {
  background: transparent;
  border: none; border-bottom: 1px solid rgba(248,245,240,0.2);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem; padding: 0.8rem 0;
  outline: none; transition: border-color 0.3s;
  resize: none; width: 100%;
  -webkit-appearance: none;
}
input:focus, textarea:focus, select:focus { border-color: var(--gold); }
input::placeholder, textarea::placeholder { color: rgba(248,245,240,0.3); font-size: 0.8rem; }
select option { background: var(--black-soft); color: var(--white); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-18px); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
.shimmer-text {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold), var(--gold-dark));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}
.floating { animation: float 5s ease-in-out infinite; }

/* ── REVEAL AU SCROLL ── */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── FOOTER ── */
footer {
  padding: 3rem 4rem;
  border-top: 1px solid rgba(201,168,76,0.15);
  display: flex; justify-content: space-between; align-items: center;
  background: var(--black); flex-wrap: wrap; gap: 1rem;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 300;
  color: var(--gold-light); letter-spacing: 0.1em;
}
footer p { font-size: 0.65rem; color: rgba(248,245,240,0.3); letter-spacing: 0.1em; }
.ornament {
  display: inline-block; width: 30px; height: 1px;
  background: var(--gold); vertical-align: middle; margin: 0 0.8rem;
}

/* ════════════════════════════════════════════
   PAGE ACCUEIL (index.html)
   ════════════════════════════════════════════ */

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: 0 4rem;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,168,76,0.08) 0%, transparent 70%),
              radial-gradient(ellipse 40% 60% at 10% 80%, rgba(201,168,76,0.05) 0%, transparent 60%),
              var(--black);
}
.hero-lines {
  position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-linear-gradient(
    90deg, rgba(201,168,76,0.04) 0px, rgba(201,168,76,0.04) 1px, transparent 1px, transparent 80px
  );
}
.hero-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
  max-width: 1200px; width: 100%;
}
.hero-text { animation: fadeUp 1s ease both; }
.hero-tag {
  font-size: 0.65rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem; display: block;
  opacity: 0; animation: fadeUp 0.8s ease 0.2s both;
}
h1 {
  font-size: clamp(3.5rem, 6vw, 6rem); line-height: 1.05;
  letter-spacing: -0.01em;
  opacity: 0; animation: fadeUp 0.8s ease 0.4s both;
}
h1 em { font-style: italic; color: var(--gold-light); display: block; }
.hero-desc {
  margin-top: 2rem; font-size: 0.85rem; line-height: 1.9;
  color: rgba(248,245,240,0.6); max-width: 38ch; font-weight: 300;
  opacity: 0; animation: fadeUp 0.8s ease 0.6s both;
}
.hero-cta {
  margin-top: 3rem; display: flex; gap: 1.5rem; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.8s ease 0.8s both;
}

/* ── ILLUSTRATION MUG (SVG) ── */
.hero-visual {
  display: flex; justify-content: center; align-items: center;
  opacity: 0; animation: fadeIn 1.2s ease 0.5s both;
}
.mug-wrap {
  position: relative;
  filter: drop-shadow(0 40px 80px rgba(201,168,76,0.2));
}
.mug-wrap::after {
  content: '';
  position: absolute; bottom: -40px; left: 50%; transform: translateX(-50%);
  width: 200px; height: 30px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.25) 0%, transparent 70%);
  border-radius: 50%;
}

/* ── SECTION COMMUNE ── */
section { padding: 8rem 4rem; }

/* ── SERVICES ── */
#services { background: var(--black-soft); }
.services-inner { max-width: 1200px; margin: 0 auto; }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 5rem; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}
.service-card {
  background: var(--black); padding: 3rem 2.5rem;
  border-top: 1px solid rgba(201,168,76,0.15);
  transition: background 0.4s, border-color 0.4s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s ease;
}
.service-card:hover { background: #111; }
.service-card:hover::before { transform: scaleX(1); }
.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem; font-weight: 300; color: rgba(201,168,76,0.12);
  line-height: 1; margin-bottom: 1.5rem; display: block;
}
.service-icon { font-size: 1.8rem; margin-bottom: 1.2rem; display: block; }
.service-card h3 {
  font-size: 1.5rem; font-weight: 400; margin-bottom: 1rem;
}
.service-card p { font-size: 0.8rem; line-height: 1.8; color: rgba(248,245,240,0.55); font-weight: 300; }

/* ── CRÉATIONS / GALERIE ── */
#creations { background: var(--black); }
.creations-inner { max-width: 1200px; margin: 0 auto; }
.gallery-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: auto auto;
  gap: 2px; margin-top: 4rem;
}
.gallery-item {
  position: relative; overflow: hidden;
  background: var(--grey); aspect-ratio: 1;
}
.gallery-item:first-child { grid-row: span 2; aspect-ratio: auto; }
.gallery-item svg { width: 100%; height: 100%; display: block; }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(13,13,13,0.6);
  display: flex; align-items: flex-end; padding: 1.5rem;
  opacity: 0; transition: opacity 0.4s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-style: italic; color: var(--gold-light);
}
.creations-soon {
  margin-top: 4rem; padding: 5rem 2rem;
  text-align: center;
  border: 1px solid var(--gold-dark);
  background: var(--black-soft);
}
.creations-soon .soon-icon {
  display: block; font-size: 2rem; color: var(--gold);
  opacity: 0.7; margin-bottom: 1.5rem;
}
.creations-soon .soon-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-style: italic; color: var(--gold-light);
  margin-bottom: 0.75rem;
}
.creations-soon .soon-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem; letter-spacing: 1px; color: var(--white); opacity: 0.65;
}

/* ── PROCESSUS ── */
#processus { background: var(--black-soft); }
.processus-inner { max-width: 1100px; margin: 0 auto; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 5rem; position: relative; }
.steps::before {
  content: '';
  position: absolute; top: 40px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dark), var(--gold), var(--gold-dark), transparent);
}
.step { text-align: center; padding: 0 1.5rem; position: relative; }
.step-circle {
  width: 80px; height: 80px; border-radius: 50%;
  border: 1px solid var(--gold); background: var(--black);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; color: var(--gold); font-weight: 300;
  position: relative; z-index: 1;
}
.step h4 {
  font-size: 1.25rem; font-weight: 400; margin-bottom: 0.8rem;
}
.step p { font-size: 0.75rem; line-height: 1.7; color: rgba(248,245,240,0.5); }

/* ── CONTACT ── */
#contact { background: var(--black); }
.contact-inner {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
}
.contact-info { display: flex; flex-direction: column; gap: 2.5rem; }
.info-block .info-label {
  font-size: 0.6rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.5rem; display: block;
}
.info-block p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 300; color: var(--white);
}
.social-links { display: flex; gap: 1.5rem; margin-top: 0.5rem; }
.social-links a {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(248,245,240,0.5); text-decoration: none;
  transition: color 0.3s;
}
.social-links a:hover { color: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 1.5rem 2rem; }
  nav ul { display: none; }
  footer { flex-direction: column; text-align: center; }
  section { padding: 5rem 2rem; }
  .hero-content { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { order: -1; }
  .services-grid { grid-template-columns: 1fr; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
}
