/* Base */
body {
  margin: 0;
  padding: 0;
  font-family: 'Georgia', serif;
  background: #f8f4f2;
  color: #4b3b47;
  line-height: 1.6;
  scroll-behavior: smooth;
}
.cover{
  width:40%; max-width:720px; border-radius:20px; display:block; margin:0 auto 16px; box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.card{
  background:var(--card); border:1px solid var(--border); border-radius:18px; padding:24px;
}
.social img{width:32px; height:32px; border-radius:8px; border:1px solid var(--border)}
/* Container full width */
.container {
  width: 100%;
  padding: 2rem 5%;
  box-sizing: content-box;
}

/* Header */
.header {
  text-align: center;
  padding: 3rem 1rem;
  background: linear-gradient(to bottom, #fce7f3, #f8f4f2);
}
.header img.logo {
  align-items: flex-start;
  max-width: 240px;
  height: auto;
  margin-bottom: 1rem;
}
.header img.cover {
  max-width: 800px;
  margin-bottom: 1rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.author {
  opacity: 80%;
  max-width: 600px;
  margin-bottom: 1rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.header .tagline {
  font-size: 1.2rem;
  font-style: italic;
  color: #7b5e78;
}

/* Navigation */
.navbar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  background-color: #c8a2c8;
  padding: 1rem;
}
.navbar a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  background-color: #a87ca0;
  transition: background 0.3s ease;
}
.navbar a:hover {
  background-color: #fff;
  color: #a87ca0;
  border: 1px solid #a87ca0;
}

/* Sections pleines largeur */
.section {
  padding: 4rem 5%;
  background: #ffffff;
  margin: 2rem 0;
  border-top: 1px solid #e2d7e3;
}
.section:nth-child(even) {
  background: #f9f7f8;
}
.section h2 {
  font-size: 2.2rem;
  color: #c8a2c8;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}
a {
  color: #c8a2c8;
}

/* Boutons */
.btn-primary, .btn-secondary {
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.btn-primary {
  background: #c8a2c8;
  color: white;
}
.btn-primary:hover {
  background: #a87ca0;
}
.btn-secondary {
  background: #4b3b47;
  color: white;
}
.btn-secondary:hover {
  background: #3a2e39;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  color: #7b5e78;
  background: #f0e8ef;
}

/* Responsive design */
@media (max-width: 768px) {
  .header img.logo {
    max-width: 180px;
  }
  .header img.cover {
    max-width: 300px;
  }
  .author {
    max-width: 300px;
  }
  .navbar {
    background: #f8f4f2;
    align-items: center;
  }
  .section h2 {
    font-size: 1.8rem;
  }
  .btn-primary, .btn-secondary {
    width: 100%;
    text-align: center;
  }
}

/* Newsletter Modal Styles */
#newsletterModal .modal-content {
  border-radius: 12px;
  padding: 1.5rem;
}
#newsletterModal .modal-header,
#newsletterModal .modal-footer {
  border: none;
}






/*
body {
  background: #f8f4f2;
  color: #4b3b47;
  font-family: 'Georgia', serif;
  scroll-behavior: smooth;
  margin: auto;
}
.container {
  max-width: 1200px;
  background: #ffffff;
  padding: 2.5rem;
  margin: auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
}
.header img.logo {
  max-width: 300px;
  margin-bottom: 1rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.header img.cover {
  max-width: 800px;
  argin-bottom: 1rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: #c8a2c8;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}
.navbar a {
  color: #fff;
  padding: 0.5rem 1rem;
  text-decoration: none;
  background: #c8a2c8;
  border-radius: 50px;
  margin: 0 0.5rem;
  transition: background 0.3s;
}
.navbar a:hover {
  background: #fff;
  color: #c8a2c8;
  border: 1px solid #c8a2c8;
}
.section {
  margin: 4rem 0;
}
.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #c8a2c8;
  border-bottom: 2px solid #4b3b47;
  padding-bottom: 0.5rem;
}
.btn-primary {
  border-radius: 50px;
  padding: 0.75rem 2.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  background: #c8a2c8;
  border: none;
  color: #fff;
  transition: transform 0.2s;
}
.btn-primary:hover {
  transform: scale(1.05);
}
.btn-secondary {
  border-radius: 50px;
  padding: 0.75rem 2.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  background: #4b3b47;
  border: none;
  color: #fff;
  transition: transform 0.2s;
}
.btn-secondary:hover {
  transform: scale(1.05);
}
footer p {
  color: rgba(75, 59, 71, 0.6);
}



/* static/css/style.css
body {
  background: linear-gradient(135deg, rgba(228, 122, 158, 0.7) 0%, #100f0f 100%);
  color: #333;
  font-family: 'Georgia', serif;
  scroll-behavior: smooth;
  margin: auto;
}
.container {
  max-width: max-content;
  background: rgb(255, 255, 255);
  padding: 2.5rem;
  margin: auto;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.header img.cover {
  max-width: max-content;
  border-radius: 10px;
  margin-bottom: 1rem;
}
.header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: rgba(228, 122, 158, 0.7);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}
.navbar a {
  position: relative;
  color: #fff;
  padding: 0.5rem 1rem;
  text-decoration: none;
  background: rgba(228, 122, 158, 0.7);
  border-radius: 50px;
  margin: 0 0.5rem;
  transition: background 0.3s;
}
.navbar a:hover {
  background: #fff;
  color: rgba(228, 122, 158, 0.7);
}
.section {
  margin: 4rem 0;
}
.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: rgba(228, 122, 158, 0.7);
  border-bottom: 2px solid #100f0f;
  padding-bottom: 0.5rem;
}
.btn-primary, .btn-secondary {
  border-radius: 50px;
  padding: 0.75rem 2.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  transition: transform 0.2s;
}
.btn-primary {
  background: rgba(228, 122, 158, 0.7);
  border: none;
  color: rgba(228, 122, 158, 0.7);
}
.btn-primary:hover {
  transform: scale(1.05);
}
.btn-secondary {
  background: #100f0f;
  border: none;
  color: rgba(228, 122, 158, 0.7);
}
.btn-secondary:hover {
  transform: scale(1.05);
}
footer p {
  color: rgba(51,51,51,0.6);
}
*/