* {
  scroll-behavior: smooth;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #203C4C;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

a:hover {
  color: #c19a6b;
}

/* ============================================ */
/* VIDÉO DE FOND */
/* ============================================ */
#background-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: contrast(1.05) brightness(0.3) saturate(1.1);
}

/* ============================================ */
/* HEADER */
/* ============================================ */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(2, 9, 14, 0.568);
  padding: 1.5vh 4vw;
  position: relative;
  min-height: 8vh;
}

/* Logo en haut à gauche - TOUJOURS VISIBLE */
.logo-header {
  height: 50px;
  width: auto;
  z-index: 10;
  filter: drop-shadow(0 0.2vh 0.8vh rgba(0, 0, 0, 0.3));
}

.logo-container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 10;
}

.logo {
  height: auto;
  width: 700px;
  filter: drop-shadow(0 0.2vh 0.8vh rgba(0, 0, 0, 0.3));
}

.partiedroite {
  display: flex;
  align-items: center;
  gap: 4vw;
  z-index: 5;
  font-family: "Raleway", sans-serif;
}

.header b {
  font-size: clamp(13px, 1.6vw, 16px);
  color: #ece2d0;
  white-space: nowrap;
}

.loupe img {
  width: clamp(18px, 2vw, 22px);
  height: auto;
}

/* Menu burger (caché par défaut) */
.burger-menu {
  display: none;
  flex-direction: column;
  gap: 0.5vh;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 100;
  padding: 1vh;
  position: relative;
}

.burger-menu span {
  display: block;
  width: 25px;
  height: 3px;
  background: #ece2d0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Menu mobile */
.mobile-nav {
  position: fixed;
  top: 8vh;
  right: -100%;
  width: 70vw;
  max-width: 300px;
  height: calc(100vh - 8vh);
  background: rgba(2, 9, 14, 0.95);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  padding: 4vh 6vw;
  gap: 0;
  transition: right 0.3s ease;
  z-index: 50;
  box-shadow: -0.5vh 0 2vh rgba(0, 0, 0, 0.5);
  overflow-y: auto;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav a {
  color: #ece2d0;
  text-decoration: none;
  font-size: 16px;
  padding: 2vh 0;
  border-bottom: 1px solid rgba(236, 226, 208, 0.2);
  transition: all 0.3s ease;
  font-family: "Raleway", sans-serif;
}

.mobile-nav a:hover {
  color: #fff;
  padding-left: 2vw;
}

.mobile-nav .nav-divider {
  border-top: 2px solid rgba(236, 226, 208, 0.3);
  margin: 2vh 0;
}

.decouvrir-btn {
  color: #8b6f47;
  padding: 1vh 2vw;
  font-size: clamp(14px, 1.6vw, 16px);
  font-family:"Raleway", sans-serif;
  border-radius: 0.5em;
  background: #ece2d0;
  cursor: pointer;
  border: 1px solid #e8e8e8;
  transition: all 0.3s;
  box-shadow: 2px 2px 4px rgb(25, 29, 66);
  position: absolute;
  bottom: 15vh;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.decouvrir-btn:hover {
  border: 1px solid white;
}

/* ============================================ */
/* SECTION À PROPOS */
/* ============================================ */
.about-section {
  background: linear-gradient(135deg, #f5e6d3 0%, #e8d4ba 50%, #d4b896 100%);
  padding: 10vh 4vw;
  margin: 100vh auto 0;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60vh;
  height: 60vh;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.about-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 50vh;
  height: 50vh;
  background: radial-gradient(circle, rgba(203, 163, 110, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.about-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 8vw;
  align-items: center;
  position: relative;
  z-index: 2;
}

.about-content {
  color: #2a1810;
}

.about-badge {
  display: inline-block;
  font-size: clamp(10px, 1.1vw, 11px);
  letter-spacing: 0.3vw;
  color: #8b6f47;
  border: 1px solid #8b6f47;
  padding: 1vh 2vw;
  margin-bottom: 2.5vh;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.3);
}

.about-title {
  font-size: clamp(36px, 5.2vw, 52px);
  font-weight: 300;
  letter-spacing: 0.1vw;
  margin-bottom: 2vh;
  color: #2a1810;
  line-height: 1.1;
}

.about-divider {
  width: 8vw;
  max-width: 80px;
  height: 0.2vh;
  background: linear-gradient(90deg, #8b6f47 0%, transparent 100%);
  margin-bottom: 3vh;
}

.about-text {
  font-size: clamp(15px, 1.7vw, 17px);
  line-height: 1.8;
  color: #4a3828;
  margin-bottom: 2vh;
  font-weight: 300;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3vw;
  margin-top: 5vh;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2vh 2vw;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(139, 111, 71, 0.3);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-0.5vh);
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 1vh 3vh rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: clamp(24px, 3.2vw, 32px);
  font-weight: 300;
  color: #2a1810;
  margin-bottom: 0.8vh;
  letter-spacing: 0.1vw;
}

.stat-label {
  font-size: clamp(11px, 1.3vw, 13px);
  color: #6b5847;
  text-transform: uppercase;
  letter-spacing: 0.2vw;
  font-weight: 500;
}

.about-visual {
  position: relative;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-card {
  position: absolute;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.3) 100%);
  border: 1px solid rgba(139, 111, 71, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.5s ease;
  object-fit: cover;
}

.visual-card-1 {
  width: 28vh;
  height: 38vh;
  top: 10%;
  left: 5%;
  transform: rotate(-8deg);
  box-shadow: 0 2vh 6vh rgba(0, 0, 0, 0.15);
  border: 2px solid white;
}

.visual-card-2 {
  width: 28vh;
  height: 38vh;
  bottom: 4%;
  right: 8%;
  transform: rotate(17deg);
  box-shadow: 0 2vh 6vh rgba(0, 0, 0, 0.15);
  border: 2px solid white;
}

.visual-circle {
  position: absolute;
  width: 16vh;
  height: 16vh;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 111, 71, 0.3) 0%, rgba(139, 111, 71, 0.05) 100%);
  border: 0.2vh solid rgba(139, 111, 71, 0.4);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.8;
  }
}

/* ============================================ */
/* SECTION NOS BIJOUX - GRILLE SIMPLE */
/* ============================================ */
.nos-bijoux-section {
  background: rgba(2, 9, 14, 0.568);
  padding: 10vh 4vw;
  position: relative;
  overflow: hidden;
}

.nos-bijoux-section::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -15%;
  width: 50vh;
  height: 50vh;
  background: radial-gradient(circle, rgba(203, 163, 110, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.carousel-header {
  text-align: center;
  margin-bottom: 6vh;
  position: relative;
  z-index: 2;
}

.carousel-badge {
  display: inline-block;
  font-size: clamp(10px, 1.1vw, 11px);
  letter-spacing: 0.3vw;
  color: #8b6f47;
  border: 1px solid #8b6f47;
  padding: 1vh 2vw;
  margin-bottom: 2.5vh;
  font-weight: 600;
  background: #ece2d0;
}

.carousel-title {
  font-size: clamp(32px, 4.8vw, 48px);
  font-weight: 300;
  letter-spacing: 0.2vw;
  margin-bottom: 2vh;
  color: #ece2d0;
}

.carousel-divider {
  width: 8vw;
  max-width: 80px;
  height: 0.2vh;
  background: linear-gradient(90deg, #c7bbaa 0%, transparent 100%);
  margin: 0 auto 2.5vh;
}

.carousel-subtitle {
  font-size: clamp(14px, 1.6vw, 16px);
  color: #ece2d0;
  font-weight: 300;
}

/* Grille des bijoux */
.bijoux-grid {
  max-width: 1200px;
  margin: 0 auto 6vh;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4vw;
  padding: 0 2vw;
}

.bijou-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 1.2vh;
  overflow: hidden;
  box-shadow: 0 1vh 3vh rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bijou-card:hover {
  transform: translateY(-1vh);
  box-shadow: 0 2vh 4vh rgba(0, 0, 0, 0.2);
}

.bijou-image {
  width: 100%;
  padding-bottom: 100%;
  position: relative;
  overflow: hidden;
  background: #f5f5f5;
}

.bijou-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bijou-card:hover .bijou-image img {
  transform: scale(1.1);
}

.bijou-content {
  padding: 3vh 2vw;
  text-align: center;
}

.bijou-name {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 300;
  letter-spacing: 0.2vw;
  color: #2a1810;
  margin-bottom: 1.5vh;
  text-transform: uppercase;
}

.bijou-description {
  font-size: clamp(13px, 1.4vw, 14px);
  line-height: 1.6;
  color: #4a3828;
  margin-bottom: 2vh;
  min-height: 6vh;
}

.bijou-prices {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5vw;
  margin-bottom: 2vh;
}

.prix-barre {
  position: relative;
  font-size: clamp(16px, 1.8vw, 18px);
  color: #999999;
  font-weight: 400;
}

.prix-barre::after {
  content: "";
  position: absolute;
  left: -5%;
  top: 50%;
  width: 110%;
  height: 2px;
  background: #4f7388;
  transform: translateY(-50%) rotate(-10deg);
}

.prix-actuel {
  font-size: clamp(22px, 2.4vw, 26px);
  color: #2a1810;
  font-weight: 600;
}

.bijou-btn {
  display: inline-block;
  padding: 1.2vh 2.5vw;
  background: transparent;
  color: #8b6f47;
  text-decoration: none;
  border: 0.2vh solid #8b6f47;
  border-radius: 0.5vh;
  font-size: clamp(12px, 1.3vw, 13px);
  font-weight: 500;
  letter-spacing: 0.05vw;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.bijou-btn:hover {
  background: #8b6f47;
  color: #fff;
  transform: translateY(-0.2vh);
}

/* CTA Boutique Etsy */
.etsy-cta {
  text-align: center;
  margin-top: 6vh;
}

.etsy-btn {
  display: inline-flex;
  align-items: center;
  gap: 1.5vw;
  padding: 2vh 4vw;
  background: #ece2d0;
  color: #8b6f47;
  text-decoration: none;
  border-radius: 0.8vh;
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 600;
  letter-spacing: 0.05vw;
  transition: all 0.3s ease;
  box-shadow: 0 1vh 2vh rgba(139, 111, 71, 0.3);
  text-transform: uppercase;
}

.etsy-btn:hover {
  background: #582f0b;
  color: #ece2d0;
  transform: translateY(-0.5vh);
  box-shadow: 0 1.5vh 3vh rgba(139, 111, 71, 0.4);
}

.etsy-btn svg {
  width: clamp(20px, 2.4vw, 28px);
  height: clamp(20px, 2.4vw, 28px);
  flex-shrink: 0;
}

/* ============================================ */
/* FOOTER */
/* ============================================ */
.footer-section {
  background: rgba(2, 9, 14, 0.7);
  padding: 7vh 4vw 3vh;
  margin-top: 10vh;
  border-top: 1px solid rgba(236, 226, 208, 0.2);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5vw;
  padding-bottom: 4vh;
}

.footer-social-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-social {
  display: flex;
  gap: 2vw;
  margin-top: 2vh;
}

.footer-social a {
  width: clamp(40px, 5vh, 50px);
  height: clamp(40px, 5vh, 50px);
  background: rgba(236, 226, 208, 0.08);
  border: 1px solid rgba(236, 226, 208, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ece2d0;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: rgba(236, 226, 208, 0.15);
  transform: translateY(-0.3vh);
}

.footer-social a svg {
  width: clamp(20px, 2.4vh, 24px);
  height: clamp(20px, 2.4vh, 24px);
}

.footer-colonne h3 {
  color: #ece2d0;
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: 400;
  letter-spacing: 0.1vw;
  margin-bottom: 2vh;
  border-bottom: 1px solid rgba(236, 226, 208, 0.2);
  padding-bottom: 1.2vh;
}

.footer-colonne ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2vh;
}

.footer-colonne ul li {
  display: flex;
  align-items: center;
  gap: 1vw;
  color: rgba(236, 226, 208, 0.7);
  font-size: clamp(13px, 1.4vw, 14px);
}

.footer-colonne ul li svg {
  width: clamp(16px, 1.8vh, 18px);
  height: clamp(16px, 1.8vh, 18px);
  flex-shrink: 0;
}

.footer-colonne ul li a {
  color: rgba(236, 226, 208, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-colonne ul li a:hover {
  color: #ece2d0;
  transform: translateX(0.3vw);
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 3vh;
  border-top: 1px solid rgba(236, 226, 208, 0.15);
  text-align: center;
}

.footer-bottom p {
  color: rgba(236, 226, 208, 0.5);
  font-size: clamp(12px, 1.3vw, 13px);
}

/* ============================================ */
/* RESPONSIVE TABLETTE */
/* ============================================ */
@media (max-width: 1024px) {
  .logo {
    width: 500px;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 5vh;
  }

  .about-visual {
    height: 40vh;
    margin: 0 auto;
    max-width: 500px;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .bijoux-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4vw;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 4vh;
  }

  .footer-social-col {
    order: -1;
  }
}

/* ============================================ */
/* RESPONSIVE MOBILE */
/* ============================================ */
@media (max-width: 768px) {
  /* Cacher les éléments desktop, montrer le burger */
  .partiedroite {
    display: none;
  }

  .burger-menu {
    display: flex;
  }

  .header {
    padding: 1.5vh 4vw;
  }

  .logo-header {
    height: 45px;
  }

  .logo {
    width: 400px;
  }

  .decouvrir-btn {
    padding: 1.2vh 6vw;
    font-size: 14px;
  }

  .about-section {
    padding: 6vh 4vw;
  }

  .about-title {
    font-size: 36px;
  }

  .about-text {
    font-size: 15px;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 2vh;
  }

  .about-visual {
    height: 30vh;
  }

  .visual-card-1 {
    width: 20vh;
    height: 28vh;
  }

  .visual-card-2 {
    width: 18vh;
    height: 25vh;
  }

  .nos-bijoux-section {
    padding: 6vh 4vw;
  }

  .carousel-title {
    font-size: 32px;
  }

  .bijoux-grid {
    grid-template-columns: 1fr;
    gap: 4vh;
    padding: 0;
  }

  .bijou-description {
    min-height: auto;
  }

  .etsy-btn {
    gap: 3vw;
    padding: 2vh 6vw;
    font-size: 16px;
  }

  .footer-section {
    padding: 5vh 4vw 2vh;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 3vh;
  }

  .footer-colonne {
    text-align: center;
  }

  .footer-colonne ul li {
    justify-content: center;
  }
}

/* ============================================ */
/* RESPONSIVE TRES PETIT MOBILE */
/* ============================================ */
@media (max-width: 480px) {
  .header {
    padding: 1.5vh 3vw;
  }

  .logo-header {
    height: 40px;
  }

  .logo {
    width: 300px;
  }

  .bijoux-grid {
    gap: 3vh;
  }

  .etsy-btn {
    flex-direction: column;
    gap: 1.5vh;
    padding: 2.5vh 8vw;
    font-size: 14px;
  }

  .etsy-btn svg {
    width: 28px;
    height: 28px;
  }

  .bijou-name {
    font-size: 20px;
  }

  .footer-social {
    gap: 4vw;
  }

  .footer-social a {
    width: 45px;
    height: 45px;
  }
}