/*
 * Orféa Oracle Style
 *
 * This stylesheet defines a dark, elegant aesthetic inspired by the original
 * Orféa homepage. It uses a deep blue background with warm gold accents and
 * off‑white typography. Elements are kept airy with generous padding and
 * rounded corners. Links and interactive elements adopt a blue hue for
 * contrast and accessibility.
 */

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background-color: #0a0e27; /* deep midnight blue */
  color: #e8e6e3; /* light parchment */
  line-height: 1.6;
}

header {
  background-color: #0a0e27;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(200, 200, 200, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header h1 {
  margin: 0;
  font-size: 1.5rem;
  color: #c5a059; /* gold */
}

nav a {
  color: #a8dadc; /* muted aqua */
  text-decoration: none;
  margin-left: 20px;
  font-weight: 500;
}

nav a:hover {
  text-decoration: underline;
}

.main-content {
  padding: 40px 20px;
  max-width: 900px;
  margin: auto;
}

h1 {
  color: #c5a059;
  font-size: 2.2rem;
  margin-bottom: 10px;
}

h2 {
  color: #c5a059;
  font-size: 1.5rem;
  margin-top: 1.8rem;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
  text-align: justify;
}

img {
  max-width: 100%;
  border-radius: 12px;
  display: block;
  margin: 20px auto;
}

.cta {
  margin-top: 40px;
  text-align: center;
}

.cta button {
  background-color: #c5a059;
  color: #0a0e27;
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.cta button:hover {
  background-color: #d5b170;
}

footer {
  background-color: #0a0e27;
  color: #a8dadc;
  padding: 20px;
  text-align: center;
  font-size: 0.8rem;
  border-top: 1px solid rgba(200, 200, 200, 0.1);
}

footer a {
  color: #a8dadc;
  text-decoration: none;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

.gallery-item {
  flex: 1 1 calc(45% - 20px);
  max-width: calc(45% - 20px);
  text-align: center;
}

.gallery-item img {
  margin-bottom: 10px;
}

.gallery-item span {
  display: block;
  font-size: 0.9rem;
  color: #a8dadc;
}