/* Set up the flex container for the entire page */
html, body {
  height: 100%;
  margin: 0;
  color: #333;
}

/* Wrapper to hold all the content and push the footer to the bottom */
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

/* Global Styles */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* Header Styles */
.main-header {
  background-color: #444; /* Use a dark background */
  color: #fff;
  padding: 1rem; /* Padding for the header */
  text-align: center;
}

/* Navigation Styles */
.sidebar-nav {
  background-color: #555; /* Slightly lighter than the header for distinction */
  color: #fff;
  padding: 1rem; /* Padding for the navigation */
  text-align: center; /* Center the navigation */
}

.sidebar-nav ul {
  list-style: none;
  padding: 0;
}

.sidebar-nav ul li {
  display: inline; /* Keep the list items in line */
  margin: 0 10px; /* Space between navigation items */
}

.sidebar-nav ul li a {
  color: #fff; /* Link colors */
  text-decoration: none; /* Remove underline */
}

.sidebar-nav ul li a:hover {
  text-decoration: underline; /* Underline on hover */
}

/* Main Content */
main {
  flex: 1; /* This makes the main content area grow and push the footer to the bottom */
  padding: 2rem; /* Padding for main content */
  max-width: 800px;
  margin: 0 auto;
}

/* Video Container - for responsive video */
.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  margin-top: 2rem;
}

.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Location Section */
.centered  {
  text-align: center;
  margin-top: 2rem;
}

.centered img {
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

.centered p {
  font-size: 1rem;
  color: #555;
  margin: 0 auto;
  max-width: 600px;
  line-height: 1.5;
}

/* Footer Styles */
footer {
  background-color: #333;
  color: #fff;
  padding: 1rem 2rem;
  text-align: center;
}

.button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  color: #007BFF;
  background-color: transparent;
  border: 2px solid #007BFF;
  border-radius: 25px;
  text-decoration: none;
  opacity: 0.7; /* Slightly transparent */
  transition: all 0.3s;
  cursor: pointer;
}

.button:hover {
  opacity: 1; /* Fully opaque on hover */
  background-color: #007BFF;
  color: #FFFFFF;
}