:root {
  --main-bg-color: #00796b; /* your desired green */
}

body {
	font-family: Georgia, "Times New Roman", Times, serif;
	line-height: 1.6;
	color: #333;
	background-color: #eeeeee;
	margin: 0;
	padding: 0;
}
h2, h3, footer {
	font-family: 'MyCalibri', sans-serif;
}

h1 {
        font-family: 'Marck Script', cursive;
        font-size: 6.18em;
        margin: 0px 0px;
}

h2 {
        margin: 2.4em 0 1.0em 0;
}

h3 {
	padding-top: 0.0em;
}

header {
  background-color: var(--main-bg-color);
  color: white;
  text-align: center;
  padding: 20px 10px;
  margin-top: 0;
  margin-bottom: 0px;
}

header h1 {
  font-family: 'Marck Script', cursive;
  font-size: 6.18em;
  margin: 0px 0px;
}

.header-subtitle {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 1.4em;
    margin: 0;
}

header {
	background-color: var(--main-bg-color);
	color: white;
	padding: 20px 10px;
	text-align: center;
}
.content {
	max-width: 800px;
	margin: 20px auto;
	background: white;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.content img {
	max-width: 100%;
	height: auto;
	border-radius: 10px;
}
.content a {
	color: #00796b;
	text-decoration: none;
}
.content a:hover {
	text-decoration: underline;
}
footer {
    text-align: center;
    padding: 10px;
    background-color: var(--main-bg-color);
    color: white;
    position: relative; /* Not fixed or absolute unless you want it sticky */
    width: 100%;
    box-sizing: border-box;
}

.images-container {
  display: flex;              /* Align items horizontally */
  gap: 10px;                  /* Add space between the images */
  justify-content: center;    /* Center the images */
  align-items: center;        /* Align items vertically */
}

.images-container a {
  text-align: center;         /* Center-align the content */
  max-width: 48%;             /* Each image link takes up 45% of the container */
  text-decoration: none;      /* Remove underline on links */
  box-sizing: border-box;     /* Include padding/border in the width */
}

.images-container img {
  display: block;             /* Removes any extra spacing under the image */
  width: 100%;                /* Ensures the image fills the link container */
  height: auto;               /* Maintain aspect ratio */
  border: 1px solid #ccc;     /* Optional: Add a border to the image */
  border-radius: 5px;         /* Optional: Rounded corners */
  cursor: pointer;            /* Show pointer cursor on hover */
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}

.youtube-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


// Gallery stuff

* {
  box-sizing: border-box;
}

/* Position the image container (needed to position the left and right arrows) */
.container {
  position: relative;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Add a pointer when hovering over the thumbnail images */
.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 14%;
  width: auto;
  padding: 29px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 42px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 20px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Container for image text */
.caption-container {
  font-family: 'MyCalibri', sans-serif;
  text-align: center;
  background-color: var(--main-bg-color);
  padding: 2px 16px;
  color: white;
  margin-bottom: 7px;
  border-radius: 10px;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Six columns side by side */
.column {
  float: left;
  width: 8.333%;
}

/* Add a transparency effect for thumnbail images */
.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}

/* Top Navigation Bar */
.topnav {
  background-color: #00796b;
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 12px 0;
  font-family: 'MyCalibri', sans-serif;
  font-size: 18px;
  border-radius: 10px; 
}

.topnav a {
  color: white;
  text-decoration: none;
  transition: background-color 0.3s ease;
  padding: 6px 12px;
  border-radius: 4px;
}

.topnav a:hover {
  background-color: #00695c;
}


header::before,
footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url("../img/twisty-vines.jpg");
  background-repeat: repeat;
  background-size: 400px auto;
  opacity: 0.05; /* % transparency */
  pointer-events: none;
  z-index: 0;
}

header,
footer {
  position: relative; /* Required for ::before layering */
  z-index: 1;
}

header > *,
footer > * {
  position: relative; /* Ensure text and content appear above the background */
  z-index: 1;
}

