body {
  font-family: 'EB Garamond', serif;
  margin: 0;
  background-color: #1f1206;
  color: #fcf2e0;
  font-size: 18px; /* increased from default */
}

header.hero {
  background-color: #2e1503;
  text-align: center;
  padding: 40px 20px;
  box-shadow: 0 0 15px #e2aa3b;
}
.hero-content {
  display: flex;
  align-items: flex-start;
  justify-content: center; /* keeps text centered */
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
  flex-wrap: wrap; /* keeps it responsive */
}

.logo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
}

.hero-text {
  flex: 1;
  text-align: center;
}
h1 {
  font-size: 3.8rem; /* bigger than 3rem */
  color: #e2aa3b;
  text-shadow: 0 0 15px rgba(226, 170, 59, 0.7);
}

h2 {
  font-size: 2.6rem; /* bigger than before */
  color: #e2aa3b;
  text-shadow: 0 0 10px rgba(226, 170, 59, 0.4);
}

.button-wrapper {
  text-align: center;
  margin: 20px;
}

.cta-button {
  display: inline-block;
  padding: 14px 26px; /* slightly larger */
  margin: 10px;
  font-size: 1.3rem; /* bigger than 1.1rem */
  font-weight: bold;
  text-transform: uppercase;
  color: #fcf2e0;
  background-color: #462109;
  border: 2px solid #e2aa3b;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 200, 0, 0.4);
}

.cta-button:hover {
  background-color: transparent;
  border: 2px solid #e2aa3b;
  color: #fcf2e0;
  box-shadow: 0 0 15px #fcf2e0, 0 0 25px #e2aa3b;
}

nav.tab-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}
.tiny-text {
  font-size: 0.5rem; /* very small text */
  color: #d3c7a0; /* lighter beige color for subtlety */
  margin-top: 1em;
  line-height: 1.3;
  max-width: 700px;  /* optional: keep it readable */
  margin-left: auto;
  margin-right: auto;
  font-style: italic; /* optional styling */
}

nav.tab-nav button {
  background-color: #462109;
  color: #e2aa3b;
  border: 2px solid #e2aa3b;
  margin: 10px;
  padding: 14px 26px; /* larger buttons */
  cursor: pointer;
  border-radius: 6px;
  font-size: 1.2rem; /* bigger font */
  transition: all 0.3s ease;
}

nav.tab-nav button:hover,
nav.tab-nav button.active {
  background-color: #1f1206;
  box-shadow: 0 0 12px #e2aa3b;
}

section.tab-content {
  display: none;
  padding: 24px; /* slightly more padding */
  max-width: 1000px;
  margin: auto;
  font-size: 1.2rem; /* larger text */
  line-height: 1.5;
}

section.tab-content.active {
  display: block;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #2e1503;
  color: #fcf2e0;
  box-shadow: 0 0 15px #e2aa3b;
  font-size: 1.3rem; /* larger footer font */
}

ul {
  list-style: none;
  padding-left: 0;
}

li {
  margin-bottom: 14px; /* slightly bigger spacing */
  font-size: 1.15rem; /* larger list font */
}