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

body {
  background: linear-gradient(160deg, #1a1a2e 0%, #16213e 100%);
  min-height: 100vh;
  font-family: 'Georgia', serif;
  color: #f5ecd4;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 20px;
}

.container {
  width: 100%;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero {
  display: flex;
  justify-content: center;
  gap: 16px;
  font-size: 28px;
  color: #c9a84c;
}

h1 {
  font-family: 'Palatino Linotype', serif;
  font-size: 22px;
  font-weight: 400;
  color: #e8d5a3;
  text-align: center;
  letter-spacing: 1px;
}

.subtitle {
  font-size: 13px;
  color: #c8c0b0;
  text-align: center;
  line-height: 1.6;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 8px;
  padding: 24px;
}

.form-row {
  display: flex;
  gap: 12px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

label {
  font-size: 12px;
  color: #c8c0b0;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.optional {
  text-transform: none;
  font-style: italic;
  color: #8a7f72;
  letter-spacing: 0;
}

input, select {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 4px;
  padding: 10px 12px;
  color: #faf8f2;
  font-family: 'Georgia', serif;
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s;
}

input:focus, select:focus {
  border-color: #c9a84c;
}

select option {
  background: #16213e;
}

.hint {
  font-size: 11px;
  color: #8a7f72;
  font-style: italic;
}

.apercu-fixe {
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 4px;
  padding: 12px 14px;
  font-size: 12px;
  color: #c8c0b0;
  line-height: 1.7;
}

button[type="submit"] {
  background: linear-gradient(135deg, #16213e 0%, #c9a84c 100%);
  border: none;
  border-radius: 4px;
  padding: 14px;
  color: #faf8f2;
  font-family: 'Palatino Linotype', serif;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: opacity 0.2s;
}

button:disabled { opacity: 0.5; cursor: default; }

#success-message {
  text-align: center;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 8px;
  padding: 32px 24px;
}

.success-icone { font-size: 36px; margin-bottom: 12px; }

#success-message h2 {
  font-family: 'Palatino Linotype', serif;
  font-weight: 400;
  color: #e8d5a3;
  margin-bottom: 12px;
}

#error-message {
  text-align: center;
  color: #ff6b6b;
  padding: 16px;
  border: 1px solid rgba(255,107,107,0.3);
  border-radius: 4px;
}

.rgpd {
  font-size: 11px;
  color: #6b6355;
  text-align: center;
}

.hidden { display: none !important; }

.lieu-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ccc;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  color: #000;              /* texte en noir */
}

/* Un item de suggestion */
.lieu-suggestion-item {
  padding: 4px 8px;
  font-size: 0.9rem;
  cursor: pointer;
  color: #000;              /* texte en noir */
  background: #fff;
}

.lieu-suggestion-item:hover {
  background: #eee;
  color: #000;              /* reste noir au survol */
}