/* css styles */

/* Background pattern */
body {
  background-image: url('www/bg-pattern.svg');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
}

/* Layout principale */
main.content {
  max-width: auto;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Navbar styling */
.navbar {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  font-weight: 500;
}

.navbar-title {
  font-weight: 700;
  font-size: 1.3em;
  letter-spacing: 0.5px;
}

/* Headings */
h1, h2, h3 {
  color: #2c3e50;
}

h2 {
  border-bottom: 2px solid #3A64AA;
  padding-bottom: 0.4em;
  margin-top: 1.5em;
}

h3 {
  margin-top: 1.2em;
}

/* Links */
a {
  transition: color 0.2s ease;
}

/* Cards and sections */
.quarto-section-identifier {
  color: #3A64AA;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* TOC styling */
.sidebar nav[role="doc-toc"] {
  border-left: 3px solid #3A64AA;
  padding-left: 0.8em;
}

/* Team member cards hover effect */
div[style*="display: flex; align-items: flex-start; gap: 1.5em"] {
  padding: 1em;
  border-radius: 10px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

div[style*="display: flex; align-items: flex-start; gap: 1.5em"]:hover {
  background-color: #f8f9fa;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

/* Footer */
.nav-footer {
  border-top: 3px solid #3A64AA;
}
