@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@520&family=Fascinate&family=Zilla+Slab:ital,wght@1,600&display=swap');

body {
  font-family: 'Quicksand';
  background: #c8e7fa;
  margin: 0;
  padding: 0;
}

header {
  background: #000000;
  color: #fff;
  padding: 1.5rem 0 1.2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-left {
  margin-left: 2rem;
  font-size: 1.7rem;
  font-weight: bold;
  font-family: 'Fascinate';
}


.header-right nav {
  margin-right: 2rem;
  font-size: 1.1rem;
}
.header-right nav a {
  color: #fff;
  margin: 0 0.7em;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.header-right nav a:hover {
  color: #c8e7fa;
  text-decoration: underline;
}

@media (max-width: 700px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.2rem 0.5rem;
  }
  .header-left, .header-center, .header-right {
    margin: 0.3rem 0;
    text-align: left;
  }
  .header-right nav {
    margin-right: 0;
  }
}

h1 {
  display: none;
}

section {
  margin: 3rem auto 2rem auto;
  padding: 0 1.5rem;
  max-width: 700px;
}

h2 {
  color: #000000;
  border-bottom: 2px solid ;
  padding-bottom: 0.3em;
  margin-top: 0;
}

h2, h3, h4, h5, h6 {
  font-family: 'Fascinate';
}

ul {
  padding-left: 1.2em;
}

li {
  margin-bottom: 0.5em;
  color: #000000;
}

p {
  color: #000000;
  line-height: 1.7;
  font-size: 1.1rem;
}

a {
  color: #2f74f4;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

footer {
  text-align: center;
  color: #fff;
  padding: 1.5rem 0;
  background: #000000;
  margin-top: 2rem;
  border-radius: 0 0 10px 10px;
  font-size: 1rem;
}

.img-caption {
  text-align: right;
  font-size: 0.98em;
  color: #000000;
  margin-top: -1.5em;
  margin-bottom: 1.5em;
  padding-right: 1.5em;
}

@media (max-width: 700px) {
  .img-caption {
    text-align: right;
    padding-right: 0.5em;
    font-size: 0.93em;
  }
}

.main-quote {
  font-family: 'Quicksand', Arial, sans-serif;
  font-style: italic;
  color: #000000;
  background: none;
  border-left: 6px solid #000;
  border-radius: 0 12px 12px 0;
  margin: 2em 0 1.5em 0;
  padding: 0.7em 0 0.7em 1.7em;
  box-shadow: none;
  position: relative;
  font-size: 1em;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

.main-quote:before {
  content: '\201C';
  font-size: 2em;
  color: #c8e7fa;
  position: absolute;
  left: 12px;
  top: 0.2em;
  font-family: serif;
  opacity: 0.7;
}

.quote-author {
  font-size: 0.8em;
  color: #4f4f4f;
  display: block;
  margin-left: 2.5em;
  margin-top: 0.7em;
  font-style: normal;
  font-family: 'Quicksand', Arial, sans-serif;
  letter-spacing: 0.03em;
}


/* Welcome screen styles */
.welcome-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #c8e7fa;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: opacity 0.7s;

}
.welcome-message {
  font-family: Fascinate;
  font-size: 4em;
  color: #222;
  margin-bottom: 0.8em;
}
.welcome-btn {
  padding: 0.5em 1em;
  font-size: 1.1em;
  background: #05192e;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Quicksand', Arial, sans-serif;
}