@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Styles du footer */
.site-footer {
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  color: var(--light);
  padding: 4rem 0 0;
  margin-top: 6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.site-footer h3 {
  font-family: var(--font-family-primary);
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #c9a77c;
}
.site-footer h4 {
  font-family: var(--font-family-primary);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #c9a77c;
  position: relative;
}
.site-footer h4::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 3rem;
  height: 1px;
  background-color: rgba(201, 167, 124, 0.5);
}
.site-footer p {
  font-family: var(--font-family-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
  color: var(--light-opacity);
}
.site-footer a {
  color: var(--light);
  text-decoration: none;
  transition: color 0.3s ease;
}
.site-footer a:hover {
  color: #c9a77c;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-section.brand p {
  max-width: 80%;
}
.footer-section.links ul {
  list-style: none;
  padding: 0;
}
.footer-section.links ul li {
  margin-bottom: 1rem;
}
.footer-section.links ul li a {
  position: relative;
  padding-left: 1rem;
  font-size: 0.95rem;
  line-height: 1.4;
  display: block;
}
.footer-section.links ul li a::before {
  content: "›";
  position: absolute;
  left: 0;
  transition: transform 0.3s ease;
}
.footer-section.links ul li a:hover::before {
  transform: translateX(3px);
}
.footer-section.links ul li a:hover {
  text-decoration: underline;
}
.footer-section.contact address {
  font-style: normal;
}
.footer-section.contact address p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.footer-section.contact address p i {
  color: #c9a77c;
  font-size: 1.1rem;
}
.footer-section.contact address p a {
  font-size: 1.1rem;
}

.footer-bottom {
  margin-top: 4rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}
.footer-bottom .legal-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 1rem;
}
.footer-bottom .legal-links a {
  font-size: 0.9rem;
  color: var(--light-opacity);
}
.footer-bottom .legal-links a:hover {
  color: #c9a77c;
}
.footer-bottom .copyright {
  font-size: 0.85rem;
  color: var(--light-opacity);
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
  .footer-container .footer-section.brand {
    grid-column: 1/-1;
    text-align: center;
  }
  .footer-container .footer-section.brand p {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .site-footer {
    padding: 3rem 0 0;
    margin-top: 4rem;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    margin-top: 2rem;
  }
  .footer-bottom .legal-links {
    flex-direction: column;
    gap: 1rem;
  }
}
.blog-home {
  /* ---- Styles généraux ---- */
  /* ---- Style de chaque article ---- */
  /* ---- Titre de l’article ---- */
  /* ---- Extrait de l’article ---- */
  /* ---- Bouton "Lire la suite" ---- */
}
.blog-home .blog-leader {
  width: 90%;
  margin: 0 auto;
}
.blog-home .blog-leader hr {
  margin: 2rem 0;
}
.blog-home .blog-posts {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
.blog-home .blog-post {
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out;
}
.blog-home .blog-post:hover {
  transform: translateY(-5px);
}
.blog-home .blog-post h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.blog-home .blog-post h2 a {
  color: var(--dark);
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
.blog-home .blog-post h2 a:hover {
  color: var(--dark); /* Rouge profond */
}
.blog-home .blog-post p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.blog-home .read-more {
  display: inline-block;
  background: var(--light);
  color: var(--dark);
  font-weight: 600;
  padding: 0.6rem 1.2rem;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease-in-out;
}
.blog-home .read-more:hover {
  background: var(--dark);
  color: var(--light);
}

body.blog-post article {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  color: var(--dark);
}
body.blog-post article .post-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--dark);
}
body.blog-post article .post-header .post-image {
  margin: -2rem -2rem 2rem;
  width: calc(100% + 4rem);
  height: 400px;
  overflow: hidden;
  position: relative;
}
body.blog-post article .post-header .post-image img {
  margin-top: 3rem;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
body.blog-post article .post-header h1 {
  font-family: var(--font-family-primary);
  font-size: 2rem;
  margin-bottom: 4rem;
  line-height: 1.3;
  color: var(--dark);
  font-weight: 900;
  letter-spacing: -0.02em;
}
body.blog-post article .post-header .post-meta {
  display: flex;
  gap: 1.5rem;
  color: var(--dark);
  opacity: 0.8;
  font-size: 0.9rem;
}
body.blog-post article section {
  margin-bottom: 3rem;
}
body.blog-post article section:last-child {
  margin-bottom: 0;
}
body.blog-post article h2 {
  font-family: var(--font-family-primary);
  font-size: 2rem;
  margin: 2rem 0 1rem;
  color: var(--dark);
}
body.blog-post article h3 {
  font-family: var(--font-family-primary);
  font-size: 1.5rem;
  margin: 1.5rem 0 1rem;
  color: var(--dark);
}
body.blog-post article p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--dark);
}
body.blog-post article ul {
  list-style-type: none;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-family-secondary);
}
body.blog-post article ul li {
  position: relative;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}
body.blog-post article ul li::before {
  content: "•";
  position: absolute;
  left: -1rem;
  color: var(--dark);
}
body.blog-post article ul li strong {
  color: var(--dark);
  font-weight: 600;
}
body.blog-post article section[aria-labelledby=conclusion-title] {
  background-color: var(--dark);
  padding: 2rem;
  border-radius: 8px;
  margin-top: 3rem;
}
body.blog-post article section[aria-labelledby=conclusion-title] h2 {
  color: #fff;
  margin-top: 0;
}
body.blog-post article section[aria-labelledby=conclusion-title] p {
  color: #fff;
  margin-bottom: 1.5rem;
}
body.blog-post article section[aria-labelledby=conclusion-title] p strong {
  color: #fff;
}
body.blog-post article section[aria-labelledby=conclusion-title] .cta-button {
  display: inline-block;
  background-color: #fff;
  color: var(--dark);
  padding: 1rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-family: var(--font-family-secondary);
}
body.blog-post article section[aria-labelledby=conclusion-title] .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
body.blog-post article .post-footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(var(--dark), 0.1);
}
body.blog-post article .post-footer .post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
body.blog-post article .post-footer .post-tags .tag {
  background-color: rgba(var(--dark), 0.05);
  color: var(--dark);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-family: var(--font-family-secondary);
  transition: all 0.3s ease;
}
body.blog-post article .post-footer .post-tags .tag:hover {
  background-color: rgba(var(--dark), 0.1);
  transform: translateY(-1px);
}
body.blog-post article .post-footer .post-share h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--dark);
  font-family: var(--font-family-secondary);
}
@media (max-width: 768px) {
  body.blog-post article {
    padding: 1rem;
  }
  body.blog-post article .post-header .post-image {
    margin: -1rem -1rem 1.5rem;
    width: calc(100% + 2rem);
    height: 300px;
  }
  body.blog-post article h1 {
    font-size: 2rem;
  }
  body.blog-post article h2 {
    font-size: 1.75rem;
  }
  body.blog-post article h3 {
    font-size: 1.25rem;
  }
  body.blog-post article p {
    font-size: 1rem;
  }
  body.blog-post article .post-footer {
    margin-top: 3rem;
  }
  body.blog-post article .post-footer .post-tags {
    gap: 0.5rem;
  }
  body.blog-post article .post-footer .post-tags .tag {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
  }
}
body.blog-post footer {
  margin-top: 0;
}

:root {
  --dark: #56453f;
  --light: #f0f0e5;
  --font-family-primary: "Playfair Display", serif;
  --font-family-secondary: "Source Sans 3", sans-serif;
  --dark-opacity: rgba(86, 69, 63, 0.5);
  --light-opacity: rgba(240, 240, 229, 0.5);
}

body {
  background-color: #fff;
}

.bi {
  font-weight: 700;
  font-style: italic;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.8);
  color: var(--light);
  height: 50px;
}
header .logo img {
  width: 30px;
  height: 30px;
}
header span {
  font-family: var(--font-family-primary);
  font-size: 1.2rem;
  font-weight: 600;
}
header ul {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
header ul li {
  list-style: none;
}
header ul li a {
  color: var(--light);
  text-decoration: none;
  font-family: var(--font-family-primary);
  font-size: 1.2rem;
  font-weight: 600;
}

h1,
p {
  margin-left: 1rem;
  margin-top: 2rem;
}

h1 {
  font-family: var(--font-family-primary);
  font-size: 4rem;
  text-transform: uppercase;
}

p {
  font-family: var(--font-family-secondary);
  font-size: 1.5rem;
  line-height: 1.5;
}

/*# sourceMappingURL=blog.css.map */
