/* Base Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Font setup */
body {
  font-family: Consolas, sans-serif;
  background-color: #f8f9fa;
  color: #212529;
  line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5 {
  font-family: Garamond, serif;
  color: #000000;
}
h2 {
  margin-bottom: 1rem;
}
p {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #212529;
}

/* Links */
a {
  color: #00FFFF;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Top red bar */
.top-bar {
  background-color: #b30000;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.3rem 0;
  text-align: center;
}
.top-bar a {
  color: #ffffff;
  margin: 0 0.6rem;
  font-weight: 600;
  text-decoration: none;
}
.top-bar a:hover {
  text-decoration: underline;
}

/* Newsletter */
.newsletter {
  background-color: #f6f5eb;
  padding: 0.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: #333333;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.newsletter button {
  padding: 0.3rem 0.8rem;
  background-color: transparent;
  border: 1px solid #333333;
  color: #333333;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}
.newsletter button:hover {
  background-color: #b30000;
  color: #ffffff;
  border-color: #b30000;
}

/* Header */
.site-header {
  background-color: #00ffff;
  color: #ffffff;
  padding: 1rem 0;
}
.site-header .site-title {
  font-size: 1.75rem;
}
.site-header .site-nav a {
  color: #ffffff;
  margin-left: 1rem;
  font-weight: 600;
}
.site-header .site-nav a:hover {
  text-decoration: underline;
}

/* Footer */
.site-footer {
  background-color: #00ffff;
  color: #ffffff;
  padding: 1rem 0;
  text-align: center;
  margin-top: 2rem;
  font-weight: 600;
}

/* Cards */
.card {
  border: none;
  background-color: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  margin-bottom: 1rem;
}
.card-img-top {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-body {
  padding: 1rem 1.25rem;
}
.card-title {
  font-family: Garamond, serif;
  font-size: 1.3rem;
  font-weight: bold;
  color: #212529;
}
.card-text {
  font-size: 1rem;
  color: #212529;
}

/* Buttons */
.btn-primary {
  background-color: #00ffff;
  color: #ffffff;
  font-weight: 600;
  border: none;
  padding: 0.5rem 1rem;
}
.btn-primary:hover {
  background-color: #00ffff;
}

/* Section separators */
main section {
  border-bottom: 2px solid #000000;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}
main section:last-child {
  border-bottom: none;
}

.section-divider {
  border-bottom: 2px solid #000000;
  margin: 1.5rem 0;
}

.popular-section {
  padding-top: 1rem;
}

/* Article style */
article {
  max-width: 900px;
  margin: 0 auto 3rem;
}
article img {
  max-width: 100%;
  height: auto;
  margin: 1rem 0;
}
article h2, article h3 {
  font-family: Garamond, serif;
}

/* Form blocks (custom page) */
#options-1, #options-2 {
  background-color: #dee2e6;
  padding: 1rem;
  margin-bottom: 1rem;
}
#options-1 label,
#options-2 label {
  display: block;
  margin-top: 1rem;
  font-weight: 600;
}
#options-1 select, #options-2 select,
#options-1 input,  #options-2 input {
  width: 100%;
  padding: 0.5rem;
  margin-top: 0.3rem;
  border: 1px solid #ced4da;
}

/* Aperçu */
#aperçu {
  background-color: #ffffff;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.card, .card-img-top, .btn, .btn-primary {
  border-radius: 0 ;  
}