
/* GLOBAL */

html, body {
  height: 100%;
}

body {
  margin: 0;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-content {
  flex: 1;
}

body {
  font-family: 'Biryani', sans-serif;
  color: #5A4037; /* taupe brown */
  margin: 0;
  background-color: #FFFBEA; /* subtle pale yellow */
}
/* Global link styling */
a {
  color: #6B5B4A;        /* taupe brown */
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  color: #A36A2A;        /* warm gold */
}

/* TOP NAVIGATION */
.top-nav {
  width: 100%;
  background-color: rgba(250, 248, 244, 0.95); /* matches #faf8f4 */
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5rem 1rem;
}

.nav-logo {
  height: 50px;
  width: auto;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: #5A4037;
  font-weight: 300;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #C89B3C; /* club gold */
}
/* -------------------------------
   Main content
---------------------------------*/
.site-content {
  padding: 2rem;
}

/* -------------------------------
   Health Page Styles
---------------------------------*/

/* Section container and spacing */
.health-intro,
.health-links {
  max-width: 900px;
  margin: 2rem auto;
  padding: 1rem 2rem;
  background-color: rgba(255, 255, 240, 0.6);
  border-radius: 8px;
}

/* Headings */
.health-intro h1,
.health-links h2 {
  font-family: 'Biryani', sans-serif;
  font-weight: 800;
  color: #5A4037;
  margin-bottom: 1rem;
}

.health-intro h1 {
  font-size: 2.5rem;
}

.health-links h2 {
  font-size: 2rem;
}

/* Paragraphs */
.health-intro p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #5A4037;
  margin-bottom: 1.5rem;
}

/* Vertical list of links */
.health-list {
  list-style-type: none;
  padding-left: 0;
}

.health-list li {
  margin-bottom: 1rem;
}

.health-list a {
  color: #5A4037;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.health-list a:hover {
  color: #C89B3C;
  text-decoration: underline;
}
/* -------------------------------
   Hero Section / Slide Show
---------------------------------*/
.hero-slide {
  position: relative;
  width: 100%;
  min-height: 400px;           /* adjust as needed */
  margin: 2rem 0;
  text-align: center;
}

/* H1 Heading on top */


.hero-slide h1 {
  font-family: 'Biryani', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  color: #5A4037;
  text-align: center;
  margin: 0 auto 2rem auto;
  position: relative;
  z-index: 100 !important;  /* make sure it is above everything */
}


/* Watermark container */
.watermark-container {
  position: relative;          /* container for overlay and watermark */
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Faint maple leaf watermark */
.watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.05;              /* very faint */
  z-index: 1;                  /* behind content */
  max-width: 80%;
  height: auto;
}

/* Hide hero watermark on home (index) page only */
.home .hero-slide .watermark {
  display: none;
}


/* Overlay content above watermark */
.content-overlay {
  position: relative;
  z-index: 2;
}

/* Placeholder box */
.image-placeholder {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.6); /* subtle overlay */
  padding: 4rem 2rem;
  border: 2px dashed #C89B3C;                /* dashed border for placeholder */
  color: #5A4037;
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.page-card{
  max-width: 900px;
  margin: 2rem auto;
  padding: 1.25rem 2rem;
  background: rgba(255,255,255,0.7);
  border-radius: 10px;
}

/* ===============================
   Quick Links (utility row)
   =============================== */

.quick-links-row {
  padding: 12px 16px;
  text-align: center;
}

.quick-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.quick-links a {
  text-decoration: none;
  color: inherit;
}

/* Pipe separators */
.quick-links a + a::before {
  content: " | ";
  opacity: 0.6;
  margin-right: 10px;
}

html, body { height: 100%; }
body { margin: 0; }

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-content {
  flex: 1;
}


/* ---- Footer (final override) ---- */

.site-footer {
  background-color: #faf8f4;
  border-top: 1px solid #e6e0d8;
  color: #5A4037;
  text-align: center;
  padding: 0.75rem 1rem;     /* slim */
}

.site-footer p {
  margin: 0;
  font-size: 0.85rem;
}

.footer-inner {
  position: relative;
  display: inline-block;     /* centers the inner block */
  padding: 0.25rem 0.75rem;
}

.footer-watermark {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 52px;
  width: auto;
  opacity: 0.12;
  pointer-events: none;
}

.site-content h1 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
}

.site-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 1.25rem 0 0.75rem 0;
}

/* Restore semantic heading styles (Tailwind override) */
.site-content h1 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.site-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  
  
}


/* Headings (restore after Tailwind reset) */
/* ===============================
   Typography (Option 1)
   =============================== */
/* ===============================
   Typography (Option 1)
   =============================== */

.site-content {
  padding: 2rem;
  line-height: 1.6;
}

.site-content h1 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1rem 0;
  text-align: center;
}

.site-content h2 {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.25;
  margin: 1.5rem 0 0.75rem 0;
}

/* Paragraphs */
.site-content p {
  margin: 0 0 1rem 0;
}

/* Subheadings */
.site-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 1.25rem 0 0.5rem 0;
}



.photo-banner {
  margin-bottom: 30px;
}



.photo-banner {
  position: relative;
  margin-bottom: 30px;
}



.photo-banner-grid {
  position: relative;
  z-index: 1;
}

.photo-banner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.photo-banner-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.photo-banner-grid img:hover {
  transform: scale(1.01);
}
.feature-event-simple {
  max-width: 750px;
  margin: 50px auto 50px auto; /* adds space below */

}
.feature-event-simple img {
  display: block;
  margin-bottom: 50px;
}

.photo-banner-grid img {
  transition: transform 0.3s ease;
}

.photo-banner-grid img:hover {
  transform: scale(1.02);
}

/* Links inside content */
.site-content a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.photo-banner {
  margin-bottom: 30px;
}

.banner-maple {
  display: flex;
  justify-content: center;
  margin: 0 0 20px 0;
}

.banner-maple img {
  width: 140px;
  height: auto;
  opacity: 0.08;
}

.photo-banner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.photo-banner-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.photo-banner-grid img:hover {
  transform: scale(1.01);
}

.page-title {
  text-align: center;
  margin: 20px 0 5px 0;
}



.photo-banner {
  margin-bottom: 30px;
}

.photo-banner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.photo-banner-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.photo-banner-grid img:hover {
  transform: scale(1.01);
}

.content-narrow p {
  line-height: 1.6;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 10px;
}

/* existing styles above */

/* General content styling */
.content-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem;
}

.content-section p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Headings spacing */
.content-section h1,
.content-section h2 {
  margin-bottom: 1rem;
}
.content-section a {
  display: inline-block;
  margin-top: 0.75rem;
}

.content-section .more-link {
  margin-top: 0.5rem;
  font-size: 1rem;
}

.objectives-list {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.objectives-list li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.two-column-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.contact-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.contact-list li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .two-column-layout {
    grid-template-columns: 1fr;
  }
}


.feature-event-simple .content-section {
  padding-top: 0;
  padding-bottom: 0;
}

.home-feature {
  max-width: 420px;
  margin: 0.5rem auto 1.25rem auto;
}

.home-feature img {
  width: 100%;
  height: auto;
  display: block;
}

.more-link a {
  font-weight: 600;
  text-decoration: none;
}

.more-link a:hover {
  text-decoration: underline;
}

.more-link a {
  font-weight: 600;
  color: #b30000; /* or your site color */
} 
  
.photo-banner-grid img {
  width: 100%;
  height: auto;
}

.home-banner .photo-banner-grid img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 6px;
}

.more-link a {
  color: #8b0000;
  font-weight: 500;
  text-decoration: none;
}

.more-link a:hover {
  text-decoration: underline;
}

.document-list a {
  color: #8b0000;
  text-decoration: none;
  transition: all 0.2s ease;
}

.document-list a:hover {
  color: #7a3b3b;
  text-decoration: underline;
}

.content-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .nav-container {
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.75rem;
    text-align: center;
  }

  .nav-links.active {
    display: flex;
  }

  .page-title {
    font-size: 2.2rem;
    line-height: 1.1;
    margin-top: 1rem;
  }

  .photo-banner-grid {
    grid-template-columns: 1fr;
  }

  .home-banner .photo-banner-grid img,
  .photo-banner-grid img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}

.site-content {
  padding: 2rem;
  line-height: 1.6;
  flex: 1;              /* keeps footer at bottom */
}

