/* Palette de couleurs */
:root {
  --blanc-casse: #f8f6f3;
  --gris-clair: #e5e7eb;
  --gris-fonce: #23272f;
  --corail: #ff7043;
  --corail-hover: #ff8a65;
  --text-main: #23272f;
  --text-light: #6b7280;
}

body {
  font-family: 'Inter', 'Poppins', Arial, sans-serif;
  background: var(--blanc-casse);
  color: var(--text-main);
  margin: 0;
  padding: 0;
  min-height: 100vh;
  scroll-behavior: smooth;
}

h1, h2, h3, .logo, .footer-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

header {
  background: var(--blanc-casse);
  box-shadow: 0 2px 8px rgba(35, 39, 47, 0.04);
  position: sticky;
  top: 0;
  z-index: 10;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo {
  font-size: 2rem;
  color: var(--corail);
  letter-spacing: 0.1em;
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--corail);
}

.hero-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gris-clair);
  overflow: hidden;
}
.hero-slideshow {
  width: 100%;
  height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s cubic-bezier(.4,0,.2,1);
  z-index: 1;
}
.slide.active {
  opacity: 1;
  z-index: 2;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px rgba(35,39,47,0.10);
}
.hero-overlay {
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
  background: rgba(248,246,243,0.15);
  backdrop-filter: blur(2px);
}
.hero-title {
  font-size: 3rem;
  color: var(--gris-fonce);
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(255,255,255,0.2);
  animation: fadeInUp 1s;
}
.hero-subtitle {
  font-size: 1.5rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  animation: fadeInUp 1.5s;
}
.btn {
  padding: 0.75rem 2rem;
  border-radius: 2rem;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(255,112,67,0.08);
}
.btn-primary {
  background: var(--corail);
  color: #fff;
}
.btn-primary:hover {
  background: var(--corail-hover);
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(255,112,67,0.15);
}
.btn-accent {
  background: transparent;
  color: var(--corail);
  border: 2px solid var(--corail);
}
.btn-accent:hover {
  background: var(--corail);
  color: #fff;
}

.section-title {
  font-size: 2.2rem;
  margin: 3rem 0 2rem 0;
  color: var(--gris-fonce);
  text-align: center;
  animation: fadeIn 1s;
}

.collections-grid, .produits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.collection-card, .produit-card {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 2px 12px rgba(35,39,47,0.07);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border 0.25s;
  cursor: pointer;
  border: 1.5px solid transparent;
}
.collection-card:hover, .produit-card:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 8px 32px rgba(255,112,67,0.10);
  border: 1.5px solid var(--corail);
}
.collection-card img, .produit-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid var(--gris-clair);
}
.collection-card .card-title, .produit-card .card-title {
  font-size: 1.2rem;
  margin: 1rem;
  color: var(--gris-fonce);
}

.filters {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  justify-content: center;
}
.filters select {
  padding: 0.5rem 1.2rem;
  border-radius: 1.2rem;
  border: 1px solid var(--gris-clair);
  font-size: 1rem;
  background: #fff;
  color: var(--text-main);
  transition: border 0.2s;
}
.filters select:focus {
  border: 1.5px solid var(--corail);
  outline: none;
}

.temoignages-section {
  background: var(--gris-clair);
  border-radius: 1.5rem;
  padding: 3rem 0;
  margin-bottom: 3rem;
}
.temoignages-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  min-height: 180px;
}
.temoignage-card {
  min-width: 320px;
  max-width: 400px;
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 2px 12px rgba(35,39,47,0.07);
  margin: 0 1rem;
  padding: 2rem 1.5rem;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s, transform 0.7s;
}
.temoignage-card.active {
  opacity: 1;
  transform: translateY(0);
}

.a-propos-section {
  margin-bottom: 4rem;
}
.a-propos-content {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.2rem;
  color: var(--text-light);
  line-height: 1.7;
  animation: fadeInUp 1.2s;
}

.footer-section {
  background: var(--gris-fonce);
  color: #fff;
  padding: 3rem 0 1.5rem 0;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-logo {
  font-size: 2rem;
  color: var(--corail);
  margin-bottom: 1rem;
}
.footer-newsletter p {
  margin-bottom: 0.5rem;
}
.footer-newsletter input {
  padding: 0.5rem 1rem;
  border-radius: 1.2rem;
  border: none;
  margin-right: 0.5rem;
  font-size: 1rem;
}
.footer-newsletter button {
  margin-top: 0.5rem;
}
.footer-socials {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1rem;
}
.footer-socials a {
  color: var(--corail);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-socials a:hover {
  color: var(--corail-hover);
}
.footer-contact {
  font-size: 1rem;
  color: #e5e7eb;
}

.contact-section {
  margin-bottom: 4rem;
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 2px 12px rgba(35,39,47,0.07);
  padding: 3rem 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contact-form input,
.contact-form textarea {
  padding: 0.7rem 1.2rem;
  border-radius: 1.2rem;
  border: 1.5px solid var(--gris-clair);
  font-size: 1rem;
  background: #f8f6f3;
  color: var(--text-main);
  transition: border 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border: 1.5px solid var(--corail);
  outline: none;
}
.contact-form button {
  align-self: flex-end;
}
.contact-success {
  color: var(--corail);
  font-weight: 600;
  margin-top: 1rem;
  text-align: center;
  animation: fadeIn 0.7s;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in {
  animation: fadeIn 1s;
}
.slide-up {
  animation: fadeInUp 1s;
}

/* Responsive */
@media (max-width: 900px) {
  .container { max-width: 98vw; }
  .footer-content { flex-direction: column; align-items: flex-start; }
  .hero-title { font-size: 2.2rem; }
  .hero-slideshow { height: 320px; }
}
@media (max-width: 600px) {
  nav { flex-direction: column; height: auto; gap: 1rem; }
  .nav-links { flex-direction: column; gap: 1rem; }
  .hero-slideshow { height: 180px; }
  .slide img { border-radius: 0.7rem; }
  .collections-grid, .produits-grid { grid-template-columns: 1fr; }
  .temoignage-card { min-width: 90vw; }
  .contact-section {
    padding: 1.2rem 0.5rem;
  }
} 

/* Animations élégantes et professionnelles pour Rowae */

/* Animations d'entrée subtiles */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Animation de slide subtile */
@keyframes slideInFromBottom {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animation de pulsation très douce */
@keyframes gentlePulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

/* Animation de flottement subtil */
@keyframes gentleFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* Animation de gradient élégant */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Classes d'animation élégantes */
.animate-fade-in {
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in-left {
  animation: fadeInLeft 0.8s ease-out forwards;
}

.animate-fade-in-right {
  animation: fadeInRight 0.8s ease-out forwards;
}

.animate-scale-in {
  animation: scaleIn 0.6s ease-out forwards;
}

.animate-slide-up {
  animation: slideInFromBottom 0.8s ease-out forwards;
}

.animate-gentle-pulse {
  animation: gentlePulse 3s ease-in-out infinite;
}

.animate-gentle-float {
  animation: gentleFloat 4s ease-in-out infinite;
}

/* Délais d'animation */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

/* Effets de hover élégants */
.hover-lift {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.hover-glow {
  transition: all 0.3s ease;
}

.hover-glow:hover {
  box-shadow: 0 0 20px rgba(249, 115, 22, 0.15);
}

.hover-scale {
  transition: transform 0.3s ease;
}

.hover-scale:hover {
  transform: scale(1.02);
}

/* Gradient animé subtil */
.gradient-animated {
  background: linear-gradient(-45deg, #fef3e2, #fed7aa, #fef3e2, #fed7aa);
  background-size: 400% 400%;
  animation: gradientShift 4s ease infinite;
}

/* Effet de glassmorphism élégant */
.glass-effect {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Effet de focus élégant */
.focus-ring {
  transition: all 0.3s ease;
}

.focus-ring:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.2);
  transform: scale(1.01);
}

/* Animation de scroll reveal */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Animation de chargement élégant */
.loading-spinner {
  width: 30px;
  height: 30px;
  border: 2px solid rgba(249, 115, 22, 0.1);
  border-left: 2px solid #f97316;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Effet de morphing subtil pour les boutons */
.morph-button {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.morph-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(249, 115, 22, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}

.morph-button:hover::before {
  width: 200px;
  height: 200px;
}

/* Animation de typewriter élégant */
.typewriter {
  overflow: hidden;
  border-right: 1px solid #f97316;
  white-space: nowrap;
  animation: typing 2.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes blink-caret {
  from, to { border-color: transparent; }
  50% { border-color: #f97316; }
}

/* Effet de vibration très subtile */
.vibrate {
  animation: vibrate 0.2s linear;
}

@keyframes vibrate {
  0% { transform: translate(0); }
  25% { transform: translate(-1px, 1px); }
  50% { transform: translate(-1px, -1px); }
  75% { transform: translate(1px, 1px); }
  100% { transform: translate(0); }
}

/* Animation de rebond élégant */
.bounce-in {
  animation: bounceIn 0.6s ease-out;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  50% {
    opacity: 1;
    transform: scale(1.02);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Effet de profondeur 3D subtil */
.depth-3d {
  transform-style: preserve-3d;
  transition: transform 0.3s ease;
}

.depth-3d:hover {
  transform: rotateX(5deg) rotateY(5deg);
}

/* Animation de wave très douce */
.wave {
  animation: wave 3s ease-in-out infinite;
}

@keyframes wave {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(2deg); }
  75% { transform: rotate(-2deg); }
}

/* Effet de néon très subtil pour le texte */
.neon-text {
  color: #f97316;
  text-shadow: 0 0 3px rgba(249, 115, 22, 0.3);
  transition: all 0.3s ease;
}

.neon-text:hover {
  text-shadow: 0 0 6px rgba(249, 115, 22, 0.5);
}

/* Particules très subtiles */
.particles {
  position: relative;
  overflow: hidden;
}

.particles::before,
.particles::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(249, 115, 22, 0.2);
  border-radius: 50%;
  animation: particleFloat 8s ease-in-out infinite;
}

.particles::before {
  left: 15%;
  animation-delay: 0s;
}

.particles::after {
  right: 15%;
  animation-delay: 4s;
}

@keyframes particleFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0;
  }
  50% {
    transform: translateY(-50px) rotate(180deg);
    opacity: 0.5;
  }
}

/* Carousel Styles */
.carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.carousel-slides {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}

.carousel-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.carousel-slide:hover img {
  transform: scale(1.02);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  z-index: 20;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.carousel-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel-prev {
  left: 20px;
}

.carousel-next {
  right: 20px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0 4px;
}

.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: scale(1.2);
}

.carousel-dot-active {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.3);
}

/* Carousel text animations */
.carousel-slide h1 {
  opacity: 0;
  transform: translateY(20px);
  animation: carouselTextFadeIn 0.8s ease-out 0.3s forwards;
}

.carousel-slide p {
  opacity: 0;
  transform: translateY(20px);
  animation: carouselTextFadeIn 0.8s ease-out 0.5s forwards;
}

.carousel-slide a {
  opacity: 0;
  transform: translateY(20px);
  animation: carouselTextFadeIn 0.8s ease-out 0.7s forwards;
}

@keyframes carouselTextFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive carousel */
@media (max-width: 768px) {
  .carousel-container {
    height: 400px;
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
  }
  
  .carousel-prev {
    left: 10px;
  }
  
  .carousel-next {
    right: 10px;
  }
  
  .carousel-slide h1 {
    font-size: 1.75rem;
  }
  
  .carousel-slide p {
    font-size: 1rem;
  }
}

/* Animation de vibration pour feedback */
@keyframes vibrate {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-2px); }
  75% { transform: translateX(2px); }
}

.vibrate {
  animation: vibrate 0.3s ease-in-out;
} 