:root {
  --primary: #9b2c4f;
  --secondary: #f2c1cc;
  --dark: #1a1a1a;
  --light: #ffffff;
  --bg: #faf7f8;
}

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

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--dark);
}

/* GLOBAL */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

h1, h2, h3, h4 {
  font-family: "Playfair Display", serif;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255,255,255,0.95);
  border-bottom: 1px solid #eee;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}


.logo {
  color: var(--primary);
  font-size: 1.8rem;
}

nav a {
  margin-left: 25px;
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
}

nav a:hover {
  color: var(--primary);
}

/* HERO */
.hero {
  height: 100vh;
  background: linear-gradient(135deg, #9b2c4f, #5a1c2d);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero-content {
  max-width: 700px;
  padding: 20px;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero h2 span {
  color: var(--secondary);
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.btn-primary {
  padding: 14px 30px;
  background: white;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  transition: 0.3s;
}

.btn-primary:hover {
  background: var(--secondary);
}

/* SECTIONS */
.section {
  padding: 90px 0;
}

.section h3 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 30px;
  font-size: 2.2rem;
}

.about p {
  max-width: 750px;
  margin: auto;
  text-align: center;
  font-size: 1.05rem;
}

/* PRODUCTS */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.card {
  background: white;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-8px);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.card h4 {
  margin-bottom: 10px;
  color: var(--primary);
}

/* CONTACT */
.contact {
  background: linear-gradient(135deg, #f7e3e8, #ffffff);
}

.contact-box {
  background: white;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-align: center;
}

/* FOOTER */
.footer {
  background: var(--dark);
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}

.lingerie-img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 20px auto;
  border-radius: 10px;
}

/* Icônes sociales animées - header */
.social-header {
  display: flex;
  justify-content: flex-end; /* à droite */
  align-items: center;
  gap: 15px;
}

.social-header a {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ff4d8d, #9b2cff);
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  text-decoration: none;
  box-shadow: 0 0 12px rgba(255,77,141,0.6);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.social-header a:hover {
  transform: scale(1.3) rotate(10deg);
  box-shadow: 0 0 25px rgba(155,44,255,0.9);
}

/* Animation pulse */
@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 10px rgba(255,77,141,0.6); }
  50% { transform: scale(1.1); box-shadow: 0 0 20px rgba(255,77,141,0.9); }
  100% { transform: scale(1); box-shadow: 0 0 10px rgba(255,77,141,0.6); }
}

/* Responsive mobile */
@media (max-width: 600px) {
  .social-header { justify-content: center; gap: 12px; }
}



