body {
  margin: 0;
  min-height: 100vh;
  /* base gradient from very light grey to slightly darker grey */
  background: #f3f3f3;

  /* overlay subtle pixel/stripe texture */
  background-image: repeating-linear-gradient(
    90deg,
    rgba(0,0,0,0.06) 0px,      /* very faint darker lines */
    rgba(0,0,0,0.02) 1px,
    transparent 1px,
    transparent 4px
  );
  background-blend-mode: none; /* blends stripes with gradient */
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #222;
}

/* Polished header styling */
header {
  text-align: center;
  padding: 2rem 1rem 3rem;  /* more breathing room */
  border-bottom: 1px solid #ddd;
  background: #fff;
}

header h1 {
  font-family: 'Poppins', Arial, sans-serif;  /* elegant serif */
  font-weight: 500;                        /* light, sophisticated */
  letter-spacing: 0.25em;                  /* spaced letters */
  line-height: 1.1;                        /* tight stacking for two lines */
  margin: 0;
  color: #222;
  text-shadow: 0 1px 2px rgba(0,0,0,0.05); /* subtle depth */
}
hr {
  border: none;
  height: 2px;
  background: linear-gradient(to right, #e0e0e0, #bbb, #e0e0e0); /* subtle tonal shift */
  margin: 2rem 0;
  border-radius: 1px; }
header > p {
  font-family: "Helvetica Neue", Arial, sans-serif;
  margin-top: 0.5rem;
  color: #777;
  font-weight: 300;
  letter-spacing: 0.15em;
  font-size: 1rem;
  text-transform: uppercase;  /* echoes spaced letters in h1 */
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1rem;
}

h2 {
  font-weight: 400;
  text-align: center;
  margin-bottom: 1.5rem;
  margin-top: 5rem;
  color: #444;
}

.homegallery {
  width: 100vw;
  display: flex;
  justify-content: center; /* horizontal centre */
  align-items: center;     /* vertical centre */
  height: auto;            /* adjust height as needed */
}

.homegallery img {
  max-width: 100%;  /* make it responsive */
  height: auto;
  justify-content: center;
}
/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(200px, 1fr));
  gap: 0rem;
}

.gallery img {
  width: 300px;       /* fixed width */
  height: 150px;      /* fixed height */
  object-fit: cover;  /* crop to fill, maintain aspect ratio */
  border: 2px solid #fff;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* Video grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

.video-card {
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  padding: 1rem;
  border-radius: 4px;
  text-align: center;
}

.video-card iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  margin-bottom: 0.5rem;
}

/* Lightbox */
#lightbox {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
  box-shadow: 0 0 20px rgba(255,255,255,0.2);
}

footer {
  background: none;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  color: #777;
  border-top: 1px solid #ddd;
}

footer p {
  border: 2px solid #ccc;
border-radius: 4px;
  padding: 5px;
 background: white; 
   display: inline;
}


.menu {
  text-align: center;
  margin: 10px 0;
  font-family: Arial, sans-serif;
}

.menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  gap: 50px;
;

}

.menu a {
  text-decoration: none;
  color: #222;
  font-size: 1.1rem;
  position: relative;
  padding: 10px 10px;
  transition: color 0.3s ease;
  background: #C8E2E6;
  border: 1px solid #ccc;
}

/* underline animation */
.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #333;
  transition: width 0.3s ease;
}

.menu a:hover {
  color: #000;
}

.menu a:hover::after {
  width: 100%;
}

.slideshow {
  position: relative;
  max-width: 900px;  /* adjust to your liking */
  margin: 2rem auto;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.slideshow-images img {
  width: 100%;
  display: none;
  transition: opacity 1s ease;
}

.slideshow-images img.active {
  display: block;
  opacity: 1;
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 0.8rem;
  cursor: pointer;
  border-radius: 50%;
}

.prev:hover, .next:hover {
  background: rgba(0,0,0,0.8);
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

