
html, body {
  margin: 0;
  padding: 0;
  position: relative;
}

#observation-page{
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body{
  background-color: white;
  font-family: Georgia, serif;
  color: #222;
  padding: 0;
  margin: 0;
}

p {
  font-size: 22px;
  font-family: Georgia, serif;
  color: #444;
  text-align: center;
  line-height: 1.8;
  margin-bottom: 2vh;
}

h1 {
  font-family: 'Permanent Marker', cursive;
  font-size: 72px;
  text-align: center;
  margin-bottom: 1vh;
  line-height: 1.1;
}

h2 {
  font-size: 26px;
  font-family: 'Permanent Marker', cursive;
  color: #222;
  text-align: center;
  margin: 2em 0 0.5em 0;
}


header {
  text-align: center;
  margin: 0 auto;
  padding-top: 4vh;
  padding-bottom: 4vh;
  max-width: 1200px;
}

h1, p, nav {
  margin: 0 auto;
  max-width: 90vw;
}

nav a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
  font-family: Georgia;
  margin-bottom: 4vh;
  text-align: center;
}

nav a:hover {
  text-decoration: underline;
  color: #111;
}

main {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.6;
}

footer {
  text-align: center;
  font-size: 0.8em;
  color: #777;
  margin-top: 6em;
}

.form-section {
  max-width: 400px;
  margin: 3em auto;
  padding: 2em;
  border: 1px solid #ccc;
  border-radius: 10px;
  background-color: #f9f9f9;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

form {
  text-align: left;
  font-family: Georgia, serif;
}

form label {
  display: block;
  margin-bottom: 0.5em;
  color: #333;
  font-weight: bold;
}

form input[type="text"],
form input[type="password"] {
  width: 100%;
  padding: 0.6em;
  margin-bottom: 1.2em;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
}

form input[type="submit"] {
  background-color: #0055cc;
  color: white;
  border: none;
  padding: 0.7em 1.5em;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1em;
  transition: background-color 0.3s ease;
}

form input[type="submit"]:hover {
  background-color: #003f99;
}

h2 a {
  text-decoration: none;
  color: inherit;
}

h2 a:hover {
  text-decoration: underline;
  color: #0055cc;
}

.boxed-section {
  margin: 2em auto;
  padding: 1.5em;
  border: 1px solid #ddd;
  border-radius: 10px;
  max-width: 600px;
  background-color: #f9f9f9;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  text-align: center;
}

.image-wall {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
  padding: 0;
}

@media (min-width: 1200px) {
  .image-wall {
    grid-template-columns: repeat(5, 1fr);
  }
}

.image-wall img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block; 
  object-fit: cover;
  border-radius: 6px;
}

.hero {
  width: 100%;
  display: block;
}

.hero--cover {
  height: min(60 vh, 520px);
  object-fit: cover;
  object-position: center 20%;
  border-radius: 0;
}





.image-wall img:hover {
  transform: scale(1.03);
  z-index: 2;
}

.full-bleed {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.link {
  display: block;
  text-align: center;
  text-decoration: none;
  color: inherit;
  padding: 2vh 0;
  margin: 2vh auto;
  cursor: pointer;
}

.link section {
  background: none;
  border: none;
  padding: 0;
  box-shadow: none;
}

.link:hover {
  opacity: 0.85;
  text-decoration: underline;
}

.top-nav {
  position: fixed;
  top: 20px;
  right: 30px;
  display: flex;
  gap: 15px;
  font-size: 1rem;
  z-index: 1000;
}

.top-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.top-nav a:hover {
  color: #555;
  text-decoration: underline;
}



/* Styles the ROOM TITLE link */
section h2 a {
  text-decoration: none;
  color: #003399;
  font-weight: bold;
  font-size: 1.2rem;
}

/* On hover, darken link + underline */
section h2 a:hover {
  text-decoration: underline;
  color: #001f66;
}

/* Subheading below the Room Title */
section p {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: #333;
}

.spaces{
  font-size: 6rem;
  font-family: 'IM Fell English SC',serif;
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 2rem;
  letter-spacing: 3px;
  line-height: 1.1;
}

.spaces a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.spaces a:hover {
  text-decoration: underline;
}

header p {
  font-family: 'IM Fell English SC', serif;
  font-size: 2.2rem;
  text-align: center;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.flame-title {
  text-align: center;
  font-size: 2.5rem;
  font-family: 'Permanent Marker', cursive;
  color: #111;
  margin-top: 1.5em;
  letter-spacing: 2px;
}

#observation-page .quest-flames {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 2rem;
  transform: none;

}

.flame-row{
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.flame-row:last-child{
  justify-content: center;
  margin-left: 0;
}

.flame {
  display: inline-block;
  text-decoration: none;
  font-size: 1.2rem;
  padding: 1.2em 2.5em;
  border-radius: 50px;
  border: none;
  background: linear-gradient(to right, orange, red);
  color: white;
  text-align: center;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.2s ease;
}

.flame:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, #ffcc00, #ff6600);
  cursor: pointer;
}

.no-box {
  border: none;
  background: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
}

#observation-page footer{
  text-align: center;
  margin-top: auto;
  padding: 2rem 1rem;
  font-size: 0.9 rem;
}

#blooming-books-page {
  background: white;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: Georgia, serif;
}

#blooming-books-page header {
  text-align: center;
  padding: 2rem 1rem 0.5rem;
}

#blooming-books-page .tagline {
  font-style: italic;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.book-grid {
  flex-grow: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
}

.book-tile {
  text-align: center;
  width: 180px;
  transition: transform 0.2s;
  cursor: pointer;
}

.book-tile img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.book-tile:hover {
  transform: scale(1.05);
}

.book-title {
  margin-top: 0.5rem;
  font-weight: bold;
  font-size: 1rem;
}

#blooming-books-page footer {
  text-align: center;
  margin-top: auto;
  padding: 2rem 1rem;
  font-size: 0.9rem;
}

#book-page {
  background: white;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: Georgia, serif;
}

#book-page header {
  text-align: center;
  margin: 2rem 0 1rem;
}

.book-detail {
  flex-grow: 1;
  max-width: 700px;
  margin: auto;
  padding: 2rem;
  line-height: 1.6;
}

.book-detail a {
  color: #333;
  text-decoration: underline;
}

#book-page footer {
  text-align: center;
  margin-top: auto;
  padding: 2rem 1rem;
  font-size: 0.9rem;
}

#ideas-page {
  background: white;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: Georgia, serif;
}

.ideas-list {
  max-width: 800px;
  margin: auto;
  padding: 2rem;
}

.idea-item {
  background: #f8f8f8;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.idea-item:hover {
  transform: scale(1.02);
}

.idea-item h2 {
  margin: 0 0 0.5rem;
  color: #222;
}

.idea-item p {
  color: #555;
}

#concept-page {
  background: white;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.sphere-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
}

.sphere-item {
  text-align: center;
}

.sphere {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at 30% 30%, #ffcc00, #ff6600);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sphere:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

.sphere-title {
  margin-top: 0.5rem;
  font-weight: bold;
  color: #333;
}

/* Perspiring Inspiration Clouds - final styling */
#clouds-page .cloud-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
}

#clouds-page .cloud {
  background: #f0f8ff;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%; /* irregular cloud shape */
  padding: 1.2rem 2rem;
  text-align: center;
  min-width: 140px;
  max-width: 200px;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.2s ease, background 0.3s ease;
}

#clouds-page .cloud:hover {
  transform: scale(1.08);
  background: #e6f2ff;
}

#clouds-page .cloud a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

/* header layout */
.site-header { display: block; padding: 1rem 2rem; text-align: center; }
.brand { text-align: center; margin: 1rem 0; }

/* name + tagline keep your existing fonts; these just align/size safely */
.logo { margin: 0; line-height: 1; text-align: center; font-family: 'IM Fell English SC', serif; font-size: 3rem; }
.tagline { margin: 0.5rem 0 1rem 0; text-align: center; font-family: 'IM Fell English SC', serif; font-size: 1.5rem; }

/* “super-computer talking” animated dots */
.ellipsis { display: inline-block; margin-right: 0.25rem; }
.ellipsis .dot { opacity: 0; display: inline-block; animation: talk 1.2s infinite; }
.ellipsis .dot:nth-child(1) { animation-delay: 0s; }
.ellipsis .dot:nth-child(2) { animation-delay: 0.2s; }
.ellipsis .dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes talk { 0%, 20% { opacity: 0; } 35%, 100% { opacity: 1; } }

/* “Spaces” alignment options */
.page-title { margin: 2rem 0 1rem 0; text-align: center; font-family: 'IM Fell English SC', serif; font-size: 2.5rem; font-weight: bold; letter-spacing: 2px; }
.page-title a {
  text-decoration: none;
  color: inherit;
  cursor: default;
}



