:root {
  --sun-orange: #f78c25;
  --vinyl-blue: #00677f;
  --mountain-teal: #4ca8a1;
  --rust-red: #c74a28;
  --parchment: #fff5d3;
  --play: #f7f4ea;
  --spoke: #B1FFFD;
  --grace: #B5D3C3
}

/* ---------------- GLOBAL STYLES ---------------- */

body {
  margin: 0;
  font-family: 'Crimson Pro', serif;
  background-color: var(--parchment);
  color: var(--vinyl-blue);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

body.nothing-bg {
  background-color: var(--play);
}

body.spoke-bg {
  background-color: var(--spoke);
}

body.grace-bg {
  background-color: var(--grace);
}


/* ---------------- MENU TOGGLE ---------------- */

.menu-toggle {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--vinyl-blue);
  cursor: pointer;
  z-index: 1001;
}

/* ---------------- DROPDOWN MENU BASE ---------------- */

.menu-dropdown,
.menu-dropdown2,
.menu-dropdowngrace,
.menu-dropdownspoke {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: height 0.3s ease-in-out;
  z-index: 1000;
  border-bottom: 1px solid var(--vinyl-blue);
  visibility: hidden;
}

.menu-dropdown {
  background-color: var(--parchment);
}

.menu-dropdown2 {
  background-color: var(--play);
}

.menu-dropdownspoke {
  background-color: var(--spoke);
}

.menu-dropdowngrace {
  background-color: var(--grace);
}

.menu-dropdown.open,
.menu-dropdown2.open,
.menu-dropdowngrace.open,
.menu-dropdownspoke.open {
  height: auto;
  visibility: visible;
  padding: 1rem 0;
}

.menu-dropdown.open .menu-nav,
.menu-dropdown2.open .menu-nav,
.menu-dropdowngrace.open .menu-nav,
.menu-dropdownspoke.open .menu-nav {
  opacity: 1;
}

/* ---------------- NAVIGATION LINKS ---------------- */

.menu-nav {
  display: flex;
  gap: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu-nav a {
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--vinyl-blue);
  font-weight: bold;
  transition: color 0.3s ease;
}

.menu-nav a:hover {
  color: var(--sun-orange);
}

.menu-dropdownspoke nav a {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  width: 100%;
  text-align: center;
  white-space: nowrap;
}

.menu-dropdowngrace nav a {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  width: 100%;
  text-align: center;
  white-space: nowrap;
}

/* ---------------- MAIN LAYOUT ---------------- */

.main-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  text-align: center;
  z-index: 0;
}

.logo-of-holding,
.logo-of-holdingnothing,
.logo-of-holdinggrace,
.logo-of-holdingspoke {
  width: 100%;
  max-width: 280px;
  height: auto !important;
  display: block;
  margin: 2rem auto;
}

/* ---------------- CONTENT BLOCKS ---------------- */

.content-block {
  max-width: 700px;
  margin: 4vh auto;
  padding: 3vh 4vw;
  border: 2px solid var(--text-color);
  color: var(--text-color);
  background-color: transparent;
  border-radius: 8px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.two-column {
  column-count: 2;
  column-gap: 3rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.flex-columns {
  display: flex;
  gap: 3rem;
  justify-content: center;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.flex-columns > div {
  flex: 1;
}

/* ---------------- RESPONSIVE STYLES ---------------- */

@media (max-width: 768px) {
  .two-column {
    column-count: 1;
  }

  .flex-columns {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 16px;
  }

  .logo-of-holding,
  .logo-of-holdingnothing,
  .logo-of-holdinggrace,
  .logo-of-holdingspoke {
    width: 80%;
    max-width: 220px;
    height: auto !important;
    margin: 2rem auto;
  }

  .menu-dropdown nav,
  .menu-dropdown2 nav,
  .menu-dropdowngrace nav,
  .menu-dropdownspoke nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .menu-dropdown nav a,
  .menu-dropdown2 nav a,
  .menu-dropdowngrace nav a,
  .menu-dropdownspoke nav a {
    padding: 0.5rem 1rem;
    font-size: 1.2rem;
    width: 100%;
    text-align: center;
  }

  .menu-dropdownspoke nav a {
    padding: 0.3rem 0.6rem;
    font-size: 1rem;
  }
}
