/* GLOBAL SETTINGS */
html,
body {
  min-height: 100vh;
  /* Ensures the page fills the screen */
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  /* Stacks elements vertically */
}

/* GENERAL STYLES */
body {
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* Ensures content fills space and keeps footer at bottom */
  background-color: #0a0a0a;
  color: #ffffff;
  padding-top: 4.8125rem;
  /* Adjust for fixed header */
}

/* Heading Styles */
h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 8px;
}

h3 {
  font-size: 1.75rem;
  font-weight: bold;
  margin-bottom: 6px;
}

h4 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 4px;
}

/* BACKGROUND VIDEO */
.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ensures the video fills the background */
  z-index: -1;
  /* Sends video behind the content */
}

/* HEADER */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4.8125rem;
  background-color: rgba(3, 3, 3, 0.95);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  z-index: 1000;
  transition: background 0.3s ease-in-out;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* LEFT SECTION: LOGO + SITE NAME */
.header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo img {
    max-width: 100px;  /* Adjust this size as needed */
    height: auto;  /* Maintain aspect ratio */
    display: block;
    margin: 0 auto;  /* Center the logo */
    position: relative;
    z-index: 100;
}

.site-name {
  font-size: 1.4rem;
  font-weight: bold;
  color: white;
  white-space: nowrap;
}

.site-name span {
  font-weight: normal;
  color: #b0aebb;
  margin-left: 3px;
}

/* SEARCH BAR */
#search-form {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  padding: 5px 12px;
  width: 250px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

#search-input {
  border: none;
  outline: none;
  background: transparent;
  color: white;
  width: 100%;
  padding: 5px;
  font-size: 14px;
}

#search-icon {
  color: white;
  margin-right: 8px;
  width: 16px;
  height: 16px;
}

/* RIGHT SECTION: NAVIGATION BUTTONS */
.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;  /* Reduce space between buttons */
    margin-right: 20px;  /* Adjust alignment */
}

.nav-right ul {
    list-style: none;
    display: flex;
    gap: 20px; /* Add spacing between buttons */
    padding: 0;
    margin-right: 20px; /* Adjust right spacing */
}

.nav-right ul li {
    display: inline-block;
}

.nav-right ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: color 0.3s ease;
    padding: 5px 10px; /* Add button padding */
}


.nav-right ul li a:hover {
  color: #1401F3;
}

/* HERO SECTION */
#hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  /* Allows the hero section to take up remaining space */
  text-align: center;
  padding: 20px;
}

/* HERO TEXT */
#hero h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

#hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

/* BUTTON */
.btn {
  display: inline-block;
  background-color: #1401F3;
  color: white;
  padding: 10px 20px;
  margin-top: 20px;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #1401F3;
}

/* FOOTER */
footer {
  background-color: #111;
  color: white;
  text-align: center;
  padding: 20px;
  width: 100%;
}

footer ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 15px;
}

footer ul li {
  display: inline;
}

footer ul li a {
  color: #ff4747;
  text-decoration: none;
  font-weight: bold;
}

footer ul li a:hover {
  color: #1401F3;
}

.content-container {
    max-width: 900px; /* Limits width for readability */
    margin: auto; /* Centers it horizontally */
    text-align: center; /* Centers text inside */
    padding: 30px;
	border: none; /* Border Color */
    background: rgba(0, 0, 0, 0.7); /* Semi-transparent background for readability */
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    
    /* Center vertically */
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 80vh; /* Adjust this to center it properly */
}

.frontpage-container {
    max-width: 600px; /* Limits width for readability */
    width: 90%; /* Makes it responsive */
    margin: auto; /* Centers horizontally */
    text-align: center; /* Centers text inside */
    padding: 30px;
    background: rgba(0, 0, 0, 0.7); /* 70% Transparent Black */
    border-radius: 8px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
    
    /* Center it Vertically */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}