/* Reset and base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: Verdana, sans-serif;
  color: #333;
  background-color: #fff;
}

.content-container {
  max-width: 800px;   /* or 70%, or whatever width you prefer */
  margin: 0 auto;     /* top/bottom margin 0, left/right auto — centers it */
  padding: 0 20px;    /* optional: adds some inner padding so text isn’t flush at edges */
}


/* Typography */
h1, h2, h3, h4 {
  font-family: 'Cochin', serif;
}
h1 {
  font-size: 3rem;
  color: #fff;
}
h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
h4 {
  font-size: 1.2rem;
  margin-bottom: 2rem;
	margin-top: 2rem;
}

/* Hero section */
.hero {
  position: relative;
  height: 100vh;
  background-image: url('/images/ovcover.jpg'); /* Replace with your actual image */
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-overlay {
  text-align: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5);
  margin-top: auto;
}
.hero-overlay p {
  color: #ccc;
  font-size: 1.2rem;
}



/* NAVBAR STYLES */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px 30px;
  position: relative;
  z-index: 10;
}

.nav-left .site-name {
  font-family: 'Cochin', serif;
  color: white;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: bold;
}

/* Toggle button for mobile */
.nav-toggle {
  display: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

/* Main nav links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.nav-links a:hover {
  color: red;
}

/* Submenu styles */
.has-submenu:hover .submenu {
  display: block;
}
.submenu {
  display: none;
  position: absolute;
  background-color: white;
  padding: 10px;
  top: 100%;
  right: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.submenu li {
  margin: 5px 0;
}
.submenu a {
  color: black;
  font-weight: normal;
}
.submenu a:hover {
  color: red;
}

/* Responsive nav */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.9);
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 15px;
  }
  .nav-links li {
    margin: 10px 0;
  }
  .nav-links.show {
    display: flex;
  }
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px 30px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 20;
}
.site-name {
  font-family: 'Cochin', serif;
  color: white;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: bold;
}
.nav-toggle {
  font-size: 2rem;
  color: white;
  cursor: pointer;
  display: none;
}

/* FULLSCREEN MENU */
.fullscreen-menu {
  display: none;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(2px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.fullscreen-menu.show {
  display: flex;
}
.fullscreen-links {
  list-style: none;
  padding: 0;
  text-align: center;
}
.fullscreen-links li {
  margin: 20px 0;
  position: relative;
}
.fullscreen-links a {
  color: white;
  font-size: 2rem;
  text-decoration: none;
  font-weight: bold;
}
.fullscreen-links a:hover {
  color: red;
}

/* Submenu inside fullscreen menu */
.fullscreen-links .submenu {
  display: none;
  position: static;
  background: none;
  box-shadow: none;
  padding-top: 10px;
}
.fullscreen-links .has-submenu:hover .submenu {
  display: block;
}
.fullscreen-links .submenu a {
  font-size: 1.4rem;
  color: #ddd;
}
.fullscreen-links .submenu a:hover {
  color: red;
}

/* Close button (X) */
.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: grey;
  cursor: pointer;
}

/* RESPONSIVE TOGGLE */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
}


/* Events section */
.events {
  padding: 40px 20px;
  background-color: #f9f9f9;
  text-align: center;
}
.events-grid {
  display: grid;
  gap: 20px;
  margin-top: 20px;
}
.event-card {
  display: block;           /* so it fills the grid cell */
  background-color: white;
  padding: 20px;
  border: 1px solid #ddd;
  text-decoration: none;    /* remove default link underline */
  color: inherit;           /* keep text the same colour */
  box-shadow: 2px 2px 5px rgba(0,0,0,.05);
  transition: border .2s;
}
.event-card:hover {
  border-left: 4px solid red;
}

.event-card img {
  width: 100%;
  height: auto;    /* or 200px */
  object-fit: cover;
  margin-bottom: 10px;
  border-radius: 6px;
}


/* Responsive grid */
@media (min-width: 600px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .events-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* Bio section */
.bio {
  padding: 10px 10px;
  background-color: #f9f9f9;
  text-align: left;
  margin-top: 20px
  margin-bottom: 20px
	  margin-left: 10px
	  margin-right: 10px
}


