/* Couleurs principales */
:root {
    --gold: #c9a24a;
    --gold-dark: #b18d3e;
    --black: #000;
    --white: #fff;
    --gray-light: #f8f9fa;
    --gray-dark: #343a40;
}

/* Global */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--gray-light);
    color: var(--black);
}

a {
    text-decoration: none;
}

h1, h2, h3, h4, h5 {
    font-weight: 700;
}

/* Navbar */
  
.navbar {
    padding: 1rem 2rem;
}

.navbar .nav-link {
    color: var(--black);
    font-weight: 500;
    transition: color 0.3s;
}

.navbar .nav-link:hover {
    color: var(--gold);
}

.navbar-brand {
    font-size: 1.5rem;
    color: var(--gold);
}

/* Hero Section */
/* ===========================
   HERO SLIDER ANIMÉ
=========================== */
.hero-slider-section .carousel-item {
    position: relative;
    height: 100vh; /* full screen */
    background-size: cover;
    background-position: center;
  }
  
  .hero-slider-section .carousel-caption {
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
  }
  
  .animate-slide {
    opacity: 0;
    animation: fadeInUp 1s forwards;
  }
  
  @keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(50px); }
    100% { opacity: 1; transform: translateY(0); }
  }
  
  /* Délais pour animation */
  .animate-slide[style*="animation-delay:0.5s"] { animation-delay: 0.5s; }
  .animate-slide[style*="animation-delay:1s"] { animation-delay: 1s; }
  
  /* Bouton doré stylé */
  .btn-gold {
    background-color: #c9a24a;
    color: white;
    border: none;
    transition: all 0.3s;
  }
  .btn-gold:hover {
    background-color: #b18d3e;
    transform: scale(1.05);
    text-decoration: none;
  }
  
  /* Carousel controls */
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    filter: invert(100%); /* blanc sur image sombre */
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .hero-slider-section .carousel-caption h1 {
      font-size: 2rem;
    }
    .hero-slider-section .carousel-caption p {
      font-size: 1rem;
    }
    .btn-gold {
      font-size: 1rem;
      padding: 0.75rem 2rem;
    }
  }
  
  @media (max-width: 480px) {
    .hero-slider-section .carousel-caption h1 {
      font-size: 1.5rem;
    }
    .hero-slider-section .carousel-caption p {
      font-size: 0.9rem;
    }
    .btn-gold {
      font-size: 0.9rem;
      padding: 0.5rem 1.5rem;
    }
  }

/* Cards Produits */
.product-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.product-card img {
    object-fit: cover;
    height: 250px;
}


/* Boutons Catégories */
.btn-outline-gold {
    color: #c9a24a;
    border: 2px solid #c9a24a;
    background-color: transparent;
    padding: 0.6rem 1.2rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
  }
  
  .btn-outline-gold:hover {
    background-color: #c9a24a;
    color: #fff;
    transform: scale(1.05);
  }
  
  /* Section Catégories */
  section.container {
    max-width: 1200px;
  }
  
  section h2 {
    font-size: 1.8rem;
  }
  
  .row.g-3 {
    gap: 1rem;
    justify-content: center;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    section h2 {
      font-size: 1.5rem;
    }
  
    .btn-outline-gold {
      padding: 0.5rem 1rem;
      font-size: 0.9rem;
    }
  }
  
  @media (max-width: 480px) {
    section h2 {
      font-size: 1.3rem;
    }
  
    .btn-outline-gold {
      padding: 0.4rem 0.8rem;
      font-size: 0.85rem;
    }
  }


/* Footer */
/* === Footer === */
footer {
    background-color: #111;
    color: #eee;
    font-size: 0.95rem;
    animation: fadeInFooter 1.2s ease-in-out;
  }
  
  @keyframes fadeInFooter {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .text-gold {
    color: #c9a24a;
  }
  
  /* Liens et icônes */
  footer a {
    color: #eee;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
  }
  
  footer a:hover {
    color: #c9a24a;
    transform: translateY(-2px);
  }
  
  /* === Icônes réseaux sociaux === */
  .social-icon {
    font-size: 1.9rem; /* plus grand */
    color: #eee;
    background: #222;
    padding: 14px;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
    opacity: 0;
    animation: fadeInIcons 1.2s ease forwards;
  }
  
  .social-icon:nth-child(1) { animation-delay: 0.3s; }
  .social-icon:nth-child(2) { animation-delay: 0.5s; }
  .social-icon:nth-child(3) { animation-delay: 0.7s; }
  
  @keyframes fadeInIcons {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
  }
  
  .social-icon:hover {
    background: #c9a24a;
    color: #fff;
    transform: scale(1.15);
    box-shadow: 0 4px 10px rgba(201,162,74,0.5);
  }
  
  /* === Bouton doré pour newsletter === */
  .btn-gold {
    background-color: #c9a24a;
    color: white;
    border: none;
    border-radius: 25px;
    transition: background-color 0.3s ease;
  }
  
  .btn-gold:hover {
    background-color: #b18d3e;
  }
  
  /* === Champs de formulaire newsletter === */
  .newsletter-form input {
    border-radius: 25px;
    border: 1px solid #444;
    background: #222;
    color: #eee;
    padding: 10px 15px;
  }
  
  .newsletter-form input::placeholder {
    color: #aaa;
  }
  
  /* === Responsive === */
  @media (max-width: 768px) {
    footer .col-md-4 {
      text-align: center;
    }
  
    footer .d-flex {
      justify-content: center !important;
    }
  
    .ratio {
      max-width: 90%;
      margin: 0 auto;
    }
  
    .newsletter-form {
      max-width: 80%;
      margin: 0 auto;
    }
  }
  
  
  

/* About Section */
/* Dégradé doré pour la carte */
.about-card {
    background: linear-gradient(135deg, #fff9f0, #ffe6b3);
    transition: all 0.4s ease;
  }

  /* Ombre animée au hover */
  .about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 2rem 3rem rgba(0,0,0,0.25);
  }

  /* Icône décorative */
  .about-icon i {
    color: #c9a24a; /* doré */
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .card-body {
      padding: 2rem !important;
    }
    .about-icon i {
      font-size: 2.5rem !important;
    }
    .card p {
      font-size: 1rem;
    }
  }

  @media (max-width: 480px) {
    .card-body {
      padding: 1.5rem !important;
    }
    .about-icon i {
      font-size: 2rem !important;
    }
  }


  /* ===========================
   SECTION LIVRAISON GRATUITE ANIMÉE
=========================== */
.free-shipping-section {
    background-color: #dc3545; /* rouge vif */
    color: #ffd700; /* doré */
    font-weight: bold;
    font-size: 1rem;
    overflow: hidden;
    position: relative;
  }
  
  .free-shipping-section p {
    margin: 0;
    margin-top: 0.5em;
    display: inline-block;
    animation: fadeSlide 2s ease-in-out infinite alternate;
  }
  
  /* Animation légère : apparition + mouvement horizontal */
  @keyframes fadeSlide {
    0% { opacity: 0.7; transform: translateX(-5px); }
    50% { opacity: 1; transform: translateX(5px); }
    100% { opacity: 0.7; transform: translateX(-5px); }
  }
  
  /* Responsive */
  @media(max-width:768px){
    .free-shipping-section {
      font-size: 0.95rem;
    }
  }
  
  @media(max-width:480px){
    .free-shipping-section {
      font-size: 0.9rem;
    }
  }
  
  

  

 
  