body {
    margin: 0;
    font-family: 'Georgia', serif;
    background-color: #fff;
    color: #111;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: black;
    color: gold;
}

nav a {
    color: gold;
    margin-left: 20px;
    text-decoration: none;
    font-weight: bold;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh; /* full viewport height */
  background: url('../images/hero.jpg') no-repeat center center/cover;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center; /* centers vertically */
  align-items: center;     /* centers horizontally */
  text-align: center;
}


.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 0; /* keep overlay behind */
}

.hero h1, 
.hero p, 
.hero .hero-btn {
  position: relative;
  z-index: 1; /* keep text and button above overlay */
  left: 30px; /* small nudge to the right */
}

.hero h1 {
    font-size: 50px;
    
}

.hero-btn {
  display: inline-block;   /* ensures it behaves like a button */
  padding: 12px 24px;
  background: gold;
  color: black;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
  transition: 0.3s ease;
}

.hero-btn:hover {
  background: black;
  color: gold;
}


.card {
    width: 250px;
    background: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
}

.card img {
    width: 100%;
    border-radius: 6px;
}

.card h3 {
    margin: 15px 0 5px;
    font-size: 20px;
    color: #111;
}

.card p {
    color: gold;
    font-weight: bold;
}

/* Footer */
footer {
    background: black;
    color: gold;
    text-align: center;
    padding: 20px;
    margin-top: 0;
}

footer .socials a {
    color: gold;
    margin: 0 10px;
    text-decoration: none;
    font-weight: bold;
}

/* About Page */
.about {
  max-width: 900px;
  margin: 60px auto;
  text-align: center;
  line-height: 1.8;
  background: linear-gradient(to bottom, #fff, #fdf5e6); /* ivory fade */
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.about h2 {
  font-size: 40px;
  margin-bottom: 20px;
  color: black;
  letter-spacing: 2px;
  font-family: 'Playfair Display', serif;
  position: relative;
}

.about h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: gold;
  margin: 10px auto 0;
}

}
.products-page {
    text-align: center;
    padding: 50px;
}

.products-page h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: black;
}

.products-page .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.products-page .card {
    background: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.products-page .card:hover {
    transform: translateY(-10px);
}

.products-page .card img {
    width: 100%;
    border-radius: 6px;
}

.products-page .card h3 {
    margin: 15px 0 5px;
    font-size: 20px;
    color: #111;
}

.products-page .card p {
    color: gold;
    font-weight: bold;
}
#trustees {
  padding: 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.trustees {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.trustees div {
  width: 150px;
}

.trustees img {
  width: 100%;
  border-radius: 8px;
}

.trustees p {
  margin-top: 10px;
  font-weight: bold;
}
marquee {
  background: gold;
  color: black;
  font-weight: bold;
  margin: 0;       /* removes default spacing */
  padding: 4px;    /* smaller padding so it hugs the hero */
  display: block;  /* ensures it aligns neatly */
}

nav a:hover {
  text-decoration: underline;
  color: white;
}
nav a.active {
  color: white;
  border-bottom: 2px solid gold;
}

.trustees img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
@media (max-width: 768px) {
  header {
    flex-direction: column;
    text-align: center;
    padding: 10px 20px;
  }

  nav {
    margin-top: 10px;
  }

  .products, .trustees {
    flex-direction: column;
    align-items: center;
  }

  /* Hero text resize */
  .hero h1 {
    font-size: 32px;
  }
}


form {
  max-width: 500px;
  margin: 30px auto;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

form label {
  display: block;
  margin-top: 10px;
  font-weight: bold;
}

form input:focus, form textarea:focus {
  border-color: gold;
  outline: none;
  box-shadow: 0 0 5px rgba(218,165,32,0.5);
}

form button {
  margin-top: 15px;
  padding: 10px 20px;
  background: gold;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
}

form button:hover {
  background: black;
  color: gold;
}
form input:focus, form textarea:focus {
  border-color: gold;
  outline: none;
  box-shadow: 0 0 5px rgba(218,165,32,0.5); /* gold glow */
}
.events {
  max-width: 900px;
  margin: 60px auto;
  text-align: center;
  padding: 40px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.events h1, .events h2 {
  font-family: 'Playfair Display', serif;
  color: black;
  margin-bottom: 20px;
  letter-spacing: 2px;
  position: relative;
}

.events h1::after, .events h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: gold;
  margin: 10px auto 0;
}

.events ul {
  list-style: none;
  padding: 0;
}

.events li {
  background: #f9f9f9;
  margin: 12px 0;
  padding: 18px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  font-weight: bold;
  transition: transform 0.3s ease, background 0.3s ease;
}

.events li:hover {
  transform: scale(1.02);
  background: #fff8dc; /* subtle gold tint */
}

#countdown {
  font-size: 26px;
  color: black;
  margin-top: 25px;
  font-weight: bold;
  border: 2px solid gold;
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  background: #fff8dc; /* soft gold tint */
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

#countdown {
  animation: pulse 2s infinite;
}


.logo {
  font-size: 28px;        /* bigger */
  font-weight: 900;       /* extra bold */
  color: gold;
  letter-spacing: 2px;    /* spacing for elegance */
  text-transform: uppercase;
  font-family: 'Georgia', serif; /* matches your brand style */
}
.trustees {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 per row */
  gap: 20px;
  margin: 40px 0;
}
.trustees .member {
  text-align: center;
  background: #f9f9f9;
  padding: 15px;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.trustees .member img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid gold;
  transition: transform 0.3s ease;
}

.trustees .member:hover img {
  transform: scale(1.1);
}

.trustees .member-name {
  font-weight: bold;
  color: black;
  margin-top: 8px;
  white-space: normal;   /* allow wrapping if needed */
  word-break: break-word; /* break long names nicely if too wide */
}
.trustees .member-title {
  color: #8b0000; /* deep burgundy accent */
  font-style: italic;
}


.trustees .member-reg {
  margin-top: 3px;
  font-size: 0.9em;
  color: #777;
}

/* Responsive tweaks */
@media (max-width: 1024px) {
  .trustees {
    grid-template-columns: repeat(3, 1fr); /* 3 per row on tablets */
  }
}

@media (max-width: 600px) {
  .trustees {
    grid-template-columns: repeat(2, 1fr); /* 2 per row on phones */
  }
}

@media (max-width: 400px) {
  .trustees {
    grid-template-columns: 1fr; /* 1 per row on very small screens */
  }
}
