/* Page fade-out animation for navigation */
body.page-fade-out {
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(.4,0,.2,1);
}
body {
  transition: opacity 0.35s cubic-bezier(.4,0,.2,1);
}

nav {
  margin: 1rem 0;
}

/* Rounded button style for nav links */
nav a {
  display: inline-block;
  background: #f6f0df;
  color: #000;
  padding: 0.5em 1.2em;
  margin: 0 0.3em;
  border-radius: 2em;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid #e2d2a7;
  box-shadow: none;
  transition: background 0.2s, color 0.2s, border 0.2s;
}
nav a:hover, nav a:focus {
  background: #c6b175;
  color: #fff;
  border: 2px solid #c6b175;
}

/* Make all links brown and black on hover */
a, a:visited {
  color: #8B6F28;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #000;
}

/* Extra space between TOS/Privacy Policy list items */
#privacy .cta ol > li {
  margin-bottom: 1.2em;
}

/* Centered section headings */
.centered-heading {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

/* Footer mimic styles */
.site-footer-mimic {
  width: 100%;
  background: #2d2d2d;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2.5rem 4vw 0.5rem 4vw;
  position: relative;
  box-sizing: border-box;
  border-top: 6px solid #e0d7c3;
  font-family: 'Segoe UI', Arial, sans-serif;
  margin-top: 3rem;
  gap: 2vw;
  min-height: 0;
}
.footer-col {
  display: flex;
  flex-direction: column;
  min-width: 140px;
}
.footer-logo-col {
  align-items: flex-start;
  min-width: 180px;
}
.footer-logo-img {
  width: 90px;
  margin-bottom: 0.5em;
}
.footer-logo-title {
  font-family: 'Georgia', serif;
  font-size: 1.2em;
  font-weight: bold;
  letter-spacing: 0.04em;
  color: #fff;
  opacity: 0.95;
  margin-top: 0.2em;
}
.footer-heading {
  font-weight: bold;
  font-size: 1.15em;
  letter-spacing: 0.04em;
  margin-bottom: 0.7em;
  color: #fff;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin: 0.3em 0;
  font-size: 1.15em;
  font-family: 'Georgia', serif;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.footer-col ul li::before {
  content: '\203A';
  color: #bfa76a;
  margin-right: 0.6em;
  font-size: 1.1em;
}
.footer-col ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: #bfa76a;
}
.footer-contact-col {
  align-items: flex-end;
  min-width: 140px;
}
.footer-contact-icons {
  display: flex;
  gap: 1.1em;
  margin-top: 0.5em;
}
.footer-contact-icons a {
  display: inline-block;
  background: #444;
  border-radius: 6px;
  padding: 0.3em 0.4em;
  transition: background 0.2s;
}
.footer-contact-icons a:hover {
  background: #bfa76a;
}
.footer-contact-icons img {
  width: 28px;
  height: 28px;
  vertical-align: middle;
}
@media (max-width: 900px) {
  .site-footer-mimic {
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem 2vw 1.5rem 2vw;
  }
}
@media (max-width: 600px) {
  .site-footer-mimic {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.2rem 1vw 1.2rem 1vw;
  }
  .footer-contact-col {
    align-items: flex-start;
  }
}

/* Base styles */
body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f5f1e6;
  color: #222;
  min-height: 100vh;
  position: relative;
}

header {
  background: #f5f1e6;
  padding: 2rem 0;
  text-align: center;
  border-bottom: 2px solid #e0d7c3;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.logo {
  width: 120px;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  margin: 0;
  font-family: 'Georgia', serif;
  color: #222;
}

h2 {
  color: #222;
  font-size: 2rem;
  margin-top: 2rem;
}

nav {
  margin: 1rem 0;
}

main {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.cta {
  background: #bfa76a;
  color: #fff;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  margin: 2rem auto;
  font-size: 1.3rem;
  box-shadow: 0 2px 12px #e0d7c3;
  transition: transform 0.2s;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cta:hover {
  transform: scale(1.03);
}

section {
  margin-bottom: 2.5rem;
}