/* ==========================
   Global Typography
   ========================== */
body {
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #2B1F15;
  line-height: 1.6;
}

/* ==========================
   Body Background for pages without hero
   ========================== */
body.has-no-hero {
  background-color: #faf7f2;
  background-image: url('/backgrounds/linen-bg.jpg');
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: #2B1F15;
  line-height: 1.6;
}

body.has-no-hero::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(250, 247, 242, 0.85);
  pointer-events: none;
  z-index: -1; /* behind content */
}

/* ==========================
   Headings
   ========================== */
h1, h2, h3 {
  font-family: 'Cinzel', Georgia, 'Times New Roman', serif;
}

h1 {
  font-weight: 700;
  font-size: 2.2em;
  letter-spacing: 1px;
  margin-top: 80px;
  margin-bottom: 10px;
  color: #2B1F15;
  border-bottom: 2px solid #a67c52;
  display: inline-block;
  padding-bottom: 6px;
}

h2 {
  font-weight: 700;
  font-size: 1.2em;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #4a3f3f;
}

h3 {
  font-weight: 400;
  color: #4a3f3f;
}

/* ==========================
   Navigation
   ========================== */
header nav {
  background-color: #e8dfd3;
  padding: 15px 20px;
  text-align: center;
  margin-top: 140px; /* pushes nav below fixed logo if hero exists */
}

header nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #2B1F15;
  font-weight: bold;
}

/* ==========================
   Content Container
   ========================== */
.content {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
}

/* Add extra top padding on pages with hero to avoid overlap */
body:not(.has-no-hero) .content {
  padding-top: 520px; /* hero height + extra space */
}

/* ==========================
   Hero Section
   ========================== */
.hero {
  background-image: url('/banners/Hero-Banner.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  position: fixed;      /* keeps it always visible */
  top: 0;
  left: 0;
  width: 100%;
  height: 500px;        /* keep the height */
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 120px 20px;
  color: #2B1F15;
  text-align: left;
  z-index: -1;          /* content will be on top */
}

.hero-content {
  background-color: rgba(255, 255, 255, 0.7);
  padding: 30px 40px;
  border-radius: 8px;
}

.hero h1 {
  font-size: 2.8em;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

/* ==========================
   Buttons
   ========================== */
.button {
  display: inline-block;
  padding: 12px 25px;
  background-color: #a67c52;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 10px;
}

/* ==========================
   Logos (if used elsewhere)
   ========================== */
.logo-container {
  position: fixed;
  top: 10px;
  left: 20px;
  z-index: 1000;
}

.logo-container img {
  width: 150px;
  height: auto;
}

.logo-section {
  margin-top: 80px;
  text-align: center;
}

.secondary-logo {
  width: 50vw;
  max-width: 600px;
  height: auto;
}

/* ==========================
   Lists
   ========================== */
ul {
  margin-left: 20px;
  color: #4a3f3f;
}

/* ==========================
   Responsive tweaks (optional)
   ========================== */
@media (max-width: 768px) {
  .hero {
    height: 400px;
    padding: 80px 20px;
  }

  .hero h1 {
    font-size: 2em;
  }

  .hero p {
    font-size: 1em;
  }

  header nav a {
    display: block;
    margin: 5px 0;
  }
}





