:root {
  --bg: #5C4433;
  --text: #FAF7F2;
  --accent: #8b5e3c;
  --font: 'Helvetica Neue', sans-serif;

  --navbar-bg: #5C4433;
  --navbar-text: #FAF7F2;
  --navbar-link: #E3B75E;
  --navbar-hover: #FAF7F2;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  padding: 1rem;
}

header {
  text-align: center;
  padding: 2rem 1rem;
  background-color: var(--bg);
}

header .title {
  font-size: 2.5rem;
  color: #E3B75E;
  margin-bottom: 0.5rem;
}

header .tagline {
  font-style: italic;
  font-size: 1.2rem;
  color: #D17F3F;
  margin-bottom: 1.5rem;
}

header .responsive-img {
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  margin: 0 auto;
  display: block;
}


.logo {
  width: 80px;
  height: auto;
  margin-bottom: 0.5rem;
}

.tagline {
  color: #D17F3F; /* Burnt Copper */
  font-style: italic;
  font-size: 1.2rem;
}

main {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

button,
.cta-button {
  background: var(--accent);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 4px;
  margin-top: 1rem;
  transition: background 0.3s ease;
}

button:hover,
.cta-button:hover {
  background: #6f472c;
}

footer {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.875rem;
  color: #777;
}

.powered-by {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: #9CA3AF;
  text-align: center;
}

.powered-by a {
  text-decoration: underline;
  color: #9CA3AF;
  transition: color 0.3s ease;
}

.powered-by a:hover {
  color: #4B5563;
}

/* 🌄 Updated Navbar Styling */
.navbar {
  background-color: var(--navbar-bg);
  color: var(--navbar-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  height: 80px;
}

.navbar a {
  color: var(--navbar-link);
  text-decoration: none;
  font-weight: 500;
}

.navbar a:hover {
  color: var(--navbar-hover);
}

.nav-brand {
  font-size: 1.5rem;
  cursor: pointer;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 8px;
}

.nav-logo {
  border: 2px solid var(--navbar-link);
  border-radius: 6px;
  padding: 4px;
  background-color: var(--navbar-text);
}

.nav-logo:hover {
  transform: scale(1.05);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.nav-dropdown {
  background: var(--accent);
  color: white;
  border: none;
  font-size: 1rem;
  padding: 0.5rem;
  cursor: pointer;
}

.nav-dropdown option {
  background: white;
  color: black;
}

/* 📱 Mobile Nav */
@media (max-width: 600px) {
  .nav-links {
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--accent);
    width: 100%;
    display: none;
  }

  .nav-links.show {
    display: flex;
  }
}

/* FAQ Section */
.faq {
  padding: 1rem;
  font-family: sans-serif;
}

.faq-item {
  border-bottom: 1px solid #ccc;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1rem 0;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  color: #E3B75E;
}

.faq-answer {
    /* Style for the collapsed state */
    display: none;
    transition: all 0.3s ease-in-out;
}

.faq-answer.expanded {
    /* Style for the expanded state */
    display: block;
}
.faq-link {
  color: #E3B75E; /* Golden-yellow (current) */
  font-weight: bold;
  text-decoration: underline;
}


.faq-answer.show {
  display: block;
}

/* Images */
img {
  max-width: 80%;
  height: auto;
}

.responsive-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  margin: 1rem auto;
  border-radius: 8px;
}
.title {
  color: #E3B75E; /* Golden Saddle */
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: 1px;
}
