@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600&family=Inter:wght@400;600&display=swap');

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background: #f2f5f9;
  color: #1a1a1a;
}

header {
  background: #1d1f27;
  color: #fff;
  padding: 16px 0;
  text-align: center;
}

nav ul {
  display: flex;
  justify-content: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.5px;
}

nav a:hover {
  text-decoration: underline;
}

main {
  max-width: 800px;
  margin: auto;
  padding: 40px 20px;
}

h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 34px;
  color: #2b3a55;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-bottom: 3px solid #2b3a55;
  padding-bottom: 10px;
  margin-bottom: 30px;
}

.rapport-header {
  background: #fff;
  border-left: 6px solid #2b3a55;
  padding: 20px;
  margin-bottom: 40px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.rapport-header h2 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  color: #333;
}

.rapport-header .confidentiel {
  font-size: 13px;
  font-weight: bold;
  color: #c62828;
  text-transform: uppercase;
  letter-spacing: 1px;
}

form {
  background: #fff;
  padding: 30px;
  border: 1px solid #d0d0d0;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.question-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
}

.question-row label {
  flex: 1;
  font-weight: 600;
}

.question-row input[type="text"] {
  flex: 2;
  padding: 12px 14px;
  font-size: 15px;
  background: #f8f9fc;
  color: #1a1a1a;
  border: 1px solid #b0b0b0;
  border-radius: 12px;
  transition: border-color 0.2s ease;
}

.question-row input[type="text"]:focus {
  border-color: #2b3a55;
  outline: none;
}

fieldset {
  border: none;
  margin-top: 25px;
  padding: 0;
}

fieldset legend {
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  color: #2b3a55;
  border-left: 4px solid #2b3a55;
  padding-left: 10px;
  margin-bottom: 10px;
}

fieldset label {
  display: block;
  padding: 6px 0;
  font-weight: 500;
  cursor: pointer;
}

input[type="radio"] {
  margin-right: 10px;
}

button {
  width: 100%;
  margin-top: 30px;
  padding: 16px;
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  background: #2b3a55;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.2s ease;
}

button:hover {
  background: #1e2a40;
}

iframe,
img {
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  margin: 20px 0;
}

.button-group {
  margin-top: 60px;
  text-align: center;
}

.button-group a {
  display: inline-block;
  margin: 12px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  text-transform: uppercase;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 114, 255, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.button-group a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: skewX(-20deg);
  transition: left 0.4s ease;
}

.button-group a:hover::before {
  left: 130%;
}

.button-group a:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0, 200, 255, 0.8);
}
