/* Reset Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Bona Nova', serif;
  line-height: 1.6;
  color: #333;
  background-color: #f4f4f4;
  padding-top: 10px;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Header */
#header {
  background-color: #0a3161;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}

#header h1 {
  font-family: 'Bowlby One', sans-serif;
  font-size: 2.5rem;
  margin: 0;
}

/* Hero Section */
#hero {
  text-align: center;
  margin: 20px 0;
}

.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* About Section */
#about {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

#about h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #b31942;
}

/* Video Container */
.video-container {
  position: relative;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  overflow: hidden;
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
  margin: 2vh auto; /* Centering and vertical margin */
  width: 90%; /* Full width with some padding */
}

/* Responsive iframe */
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none; /* Remove border */
  border-radius: 10px; /* Match the container's rounded corners */
}

/* Evidence Section */
#evidence {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.beliefs, .support {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#evidence h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #0a3161;
}

/* Footer */
#footer {
  position: relative;
  height: 150px;
  background: url('flag.jpg') no-repeat center center;
  background-size: cover;
  opacity: 0.5; /* Adjust the flag's transparency for a clearer view */
}

.footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 49, 97, 0.85); /* Darker overlay to increase text contrast */
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Add text shadow for extra clarity */
}

#footer p {
  font-size: 1.4rem; /* Increase the font size */
  font-weight: bold; /* Make the text bold */
  margin: 0;
}
