.elementor-7 .elementor-element.elementor-element-4782288{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-301dbdb *//*
  RÉGLAGES GLOBAUX & POLICES
*/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: #333;
  background-color: #F5F5F5; /* Gris neutre pour le fond */
  line-height: 1.6;
}

/*
  BARRE DE NAVIGATION
*/
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #1A2B4F; /* Bleu principal */
}

.nav-links a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #888888; /* Couleur de texte neutre */
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #1A2B4F;
}

/*
  SECTION HÉRO
*/
.hero-section {
  height: 100vh;
  width: 100%;
  background:
    linear-gradient(
      rgba(26, 43, 79, 0.5),
      rgba(26, 43, 79, 0.5)
    ),
    url('http://cardinalspirits.fr/wp-content/uploads/2025/02/caridnal-dist-scaled.webp');
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-content {
  max-width: 600px;
  padding: 0 1rem;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-btn {
  padding: 0.75rem 1.5rem;
  border: 2px solid #fff;
  color: #fff;
  background-color: transparent;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-family: 'Open Sans', sans-serif;
}

.cta-btn:hover {
  background-color: #1A2B4F;
  border-color: #1A2B4F;
  color: #fff;
}

/*
  SECTION À PROPOS
*/
.about-section {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  background-color: #fff;
  padding: 3rem 2rem;
}

.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.about-image img {
  max-width: 400px;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(26, 43, 79, 0.1);
}

.about-content {
  flex: 1;
  min-width: 300px;
  padding: 0 2rem;
}

.about-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #1A2B4F;
}

.divider {
  width: 40px;
  height: 4px;
  background-color: #5078A0; /* Bleu secondaire */
  margin-bottom: 1rem;
}

.about-content p {
  margin-bottom: 1rem;
  color: #555;
}

/*
  SECTIONS PRODUITS
  - Chaque section a une image large et un texte
  - On peut personnaliser l'agencement (ex. image en haut, puis texte)
*/
.product-section {
  background-color: #ffffff;
  padding: 3rem 2rem;
  text-align: center;
}

.product-section:not(:last-of-type) {
  border-bottom: 1px solid #ddd; /* Séparation légère */
}

.product-img {
  width: 400px;
  max-width: 800px; /* Largeur max pour rendre l’image "grande" */
  height: auto;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(26, 43, 79, 0.1);
  margin-bottom: 2rem;
}

.product-content {
  max-width: 700px;
  margin: 0 auto;
}

.product-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #1A2B4F;
  margin-bottom: 1rem;
}

.product-description {
  color: #555;
  line-height: 1.6;
}

/*
  SECTION CONTACT
*/
.contact-section {
  background-color: #fff;
  padding: 3rem 2rem;
  text-align: center;
}

.contact-inner {
  max-width: 700px;
  margin: 0 auto;
}

.contact-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #1A2B4F;
}

.contact-inner p {
  margin-bottom: 2rem;
  color: #555;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  font-family: 'Open Sans', sans-serif;
  border-radius: 4px;
}

.contact-form button {
  align-self: center;
  padding: 0.75rem 2rem;
  background-color: #1A2B4F;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #355B8C;
}

.contact-details p {
  margin-bottom: 0.5rem;
}

.contact-details a {
  color: #1A2B4F;
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

.social-links a {
  margin: 0 0.5rem;
  color: #fff;
  background-color: #1A2B4F;
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  text-align: center;
  transition: background-color 0.3s ease;
}

.social-links a:hover {
  background-color: #355B8C;
}

/*
  SECTION PIED DE PAGE
*/
.footer-section {
  background-color: #1A2B4F;
  color: #fff;
  text-align: center;
  padding: 2rem;
}

.footer-section p {
  margin-bottom: 0.5rem;
}

/*
  RÉPONSES ADAPTÉES (RESPONSIVE)
*/
@media screen and (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .about-section {
    padding: 2rem 1rem;
    flex-direction: column;
  }
  .about-image,
  .about-content {
    padding: 0;
  }
}

@media screen and (max-width: 576px) {
  .navbar {
    flex-direction: column;
  }

  .nav-links a {
    margin-left: 0;
    margin: 0.5rem 0;
  }

  .hero-section {
    height: auto;
    padding: 5rem 1rem;
  }

  .hero-title {
    font-size: 2rem;
  }
}/* End custom CSS */