/* Somali-inspired colors */
:root {
  --gold: #f4b400;
  --turquoise: #0097a7;
  --coral: #ff7043;
  --cream: #fff8e1;
  --dark: #222;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* Body & Layout */
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, var(--turquoise), var(--coral));
  color: var(--cream);
  padding: 2em;
}

/* Headings */
h1, h2 {
  margin-bottom: 1em;
}

h1 {
  font-size: 2.8rem;
}

h2.section-title {
  font-size: 2rem;
  margin-bottom: 1em;
}

/* Container */
.vision-container {
  max-width: 900px;
  width: 100%;
}

/* Text & Image Wrapping */
.text-image-wrap {
  max-width: 800px;
  margin: 2em auto;
  text-align: justify;
}

.text-image-wrap img.large-image {
  float: right;
  width: 45%;
  max-width: 600px;
  height: auto;
  margin: 0 0 1em 1em;
  border-radius: 12px;
}

.text-image-wrap::after {
  content: "";
  display: block;
  clear: both;
}

.text-image-wrap p {
  line-height: 1.5;
  margin-bottom: 1em;
}

.image-caption {
  text-align: center;
  margin-top: 0.5em;
  font-style: italic;
  color: var(--cream);
}

/* Buttons */
button {
  background-color: var(--gold);
  color: var(--dark);
  border: none;
  padding: 1em 2.5em;
  font-size: 1.2rem;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

button:hover {
  background-color: var(--cream);
  transform: scale(1.05);
}

/* Footer */
footer {
  margin-top: 3em;
  font-size: 0.9rem;
  opacity: 0.8;
  color: var(--cream);
}

/* Quiz Page Placeholder */
body.quiz {
  background-color: var(--cream);
  color: var(--dark);
}

/* Logo styling */
.logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: white;
  padding: 10px;
  object-fit: contain;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}
