/* index.css */


.container {
  max-width: 800px;
  margin: auto;
  padding: 20px;
}

.header {
  text-align: center;
  margin-bottom: 30px;
}

.header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.subtitle {
  font-size: 1.1rem;
  color: #bbbbbb;
}

.main-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.option-btn {
  display: block;
  text-align: center;
  background-color: #1e1e1e;
  color: #ffffff;
  padding: 14px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
  border: 1px solid #333;
}

.option-btn:hover {
  background-color: #333333;
}

.recommendations,
.notes {
  background-color: #1a1a1a;
  padding: 16px;
  border-radius: 6px;
  margin-bottom: 20px;
  border-left: 4px solid #00bcd4;
}

.recommendations h2,
.notes h3 {
  margin-top: 0;
  color: #00bcd4;
}

.recommendations ul,
.notes ul {
  padding-left: 20px;
  margin: 0;
}

.recommendations li,
.notes li {
  margin-bottom: 8px;
  line-height: 1.5;
}

.logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
}

.header-logo {
  width: 10vw;
  border-radius: 50%;
  object-fit: cover;
}

.title-group {
  text-align: center;
}


/* --- Force dark baseline for the index page --- */
:root { color-scheme: dark; }

html, body {
  background: #0f1115;     /* dark page background */
  color: #e5e7eb;          /* light text */
}

/* Nice link colors on dark */
a { color: #7dd3fc; }
a:hover { color: #bae6fd; }


/* Global font */
html, body {
  font-family: 'Segoe UI', sans-serif;
}

/* Ensure inputs/buttons use it too */
input, button, select, textarea {
  font: inherit;
}

