
/* Base Styles – Dark Theme */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #f0f0f0;                 /* Light text */
  background-color: #121212;      /* Dark background */
}

a {
  color: #80bfff;                 /* Light blue link */
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Header */
header {
  background: #1e1e1e;
  color: white;
  padding: 20px;
  text-align: center;
}

nav a {
  margin: 0 10px;
  color: #f0f0f0;
  font-weight: bold;
  /* opacity: 0.4; /* Adjust opacity here */ */
}

.site-header {
  background-color: rgba(0, 0, 0, 0.2); /* Black with 60% opacity */
  padding: 20px;
  text-align: center;
  position: relative;
  z-index: 2;
  color: white; /* Text remains fully opaque */
}

.site-header h1 {
  margin: 0;
  font-size: 2.5em;
}


/* .site-header .header-images { */
/*   align-items: center; */
/*   display: flex; */
/*   gap: 10px; */
/* } */


.header-images {
  display: flex;
  justify-content: center; /* Center the group horizontally */
  align-items: center;
  gap: 40px; /* space between images */
  margin-top: 20px;
}

.site-header .header-images img {
  height: 70px;
  width: auto;
  object-fit: contain;
}

/* Sections */
section {
  max-width: 800px;
  margin: 40px auto;
  background: #1f1f1f;            /* Darker section background */
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.4);
  background-color: rgba(0, 0, 0, 0.5); /* Black with 60% opacity */
}

/* Headings (optional center) */
section h2 {
  /* text-align: center; */      /* Optional: remove or use class */
}

/* Form */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input, textarea {
  padding: 10px;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #444;
  border-radius: 4px;
  background-color: #2b2b2b;
  color: #f0f0f0;
}

input::placeholder, textarea::placeholder {
  color: #aaa;
}

button {
  padding: 10px;
  background: #007acc;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

button:hover {
  background: #005fa3;
}

/* Footer */
footer {
  text-align: center;
  padding: 10px;
  background: #1e1e1e;
  color: #bbb;
}



.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 15px 20px;
  color: white;
  position: absolute;
  z-index: 2;
  font-size: 0.9em;
  bottom:0;
}

.site-footer .footer-images {
  display: flex;
  gap: 10px;
}

.site-footer .footer-images img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

/* Video Styling */
.video-container {
  margin-top: 20px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
}




.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.video-background video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1024px;           /* Fixed width */
  max-width: 100%;
  height: auto;           /* Maintain aspect ratio */
  transform: translate(-50%, -50%);
  opacity: 0.5;           /* Dim background */
}

/* .video-background video { */
/*   position: absolute; */
/*   /* top: 50%; */ */
/*   /* left: 50%; */ */
/*   min-width: 100%; */
/*   min-height: 100%; */
/*   width: auto; */
/*   height: auto; */
/*   /* transform: translate(-50%, -50%); */ */
/*   /* object-fit: cover; */ */
/*   opacity: 0.2; /* Lower value = dimmer background */ */
/* } */


/* Content sits on top */
.content {
  position: relative;
  z-index: 1;
  color: #f0f0f0;
  text-align: center;
  top: 30%;
  transform: translateY(-30%);
  padding: 0 20px;
}

.content h1 {
  font-size: 3em;
  margin-bottom: 0.5em;
}

.content p {
  font-size: 1.5em;
}
/* /* Video fills the background */ */
/* .video-background { */
/*   position: fixed; */
/*   top: 0; */
/*   left: 0; */
/*   min-width: 100%; */
/*   min-height: 100%; */
/*   z-index: -1; */
/*   overflow: hidden; */
/* } */

/* .video-background video { */
/*   position: absolute; */
/*   top: 0%; */
/*   left: 25%; */
/*   height: 100%; */
/*   width: auto; */
/*   object-fit: cover; */
/*   opacity: 0.6; /* 
/* } */
