/**
 * Typography & Text styles
 */
 html {
  font-size: 62.5%;
}
body {
  font-size: 1.5em; 
  line-height: 1.6;
  font-weight: 400;
  font-family: "Roboto", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #FFFFFF;
}

/**
 * Links
 */
a {
  font-weight: normal;
  text-decoration: none; 
  color: #EF6D3D;
}
a:focus {
  outline: solid;
}

small {
  font-size: 75%;
}

/**
 * Headings
 */
h1, h2, h3, h4, h5, h6 {
  line-height: 1;
  text-rendering: optimizeLegibility; 
  margin-top: 0;
  margin-bottom: 2rem;
  font-weight: 300;
}
h1 { font-size: 3.6rem; line-height: 1.25; letter-spacing: -.1rem; }
h2 { font-size: 3.0rem; line-height: 1.3;  letter-spacing: -.1rem; }
h3 { font-size: 2.4rem; line-height: 1.35; letter-spacing: -.08rem; }
h4 { font-size: 1.8rem; line-height: 1.5;  letter-spacing: -.05rem; }
h5 { font-size: 1.5rem; line-height: 1.6;  letter-spacing: 0; }
h6 { font-size: 1.4rem; line-height: 1.6;  letter-spacing: 0; }

/**
 * Paragraphs
 */
p {
  margin: 0 auto 1.5em auto;
}

/**
 * Layout styles
 */
html, #container, .inner {
  background-color:transparent;
}
html {
  padding-top: 100px;
  background:url(Background2.png) center center no-repeat fixed;
  background-size:cover;
}
body {
  max-width: 1000px;
  margin: 25px auto;
  padding-top: 40px; /* Adjust this value based on the height of your header */
}
#content, footer { 
  background: rgba(0, 0, 0, .8); 
  padding: 30px;
  color: #FFFFFF;
}
header {

  padding: 10px;
  color: #FFFFFF;
  position: fixed; /* Fix the header at the top of the page */
  top: 0;          /* Align it to the top */
  left: 0;         /* Align it to the left */
  width: 100%;     /* Make it full width */
  background: rgba(0, 0, 0, 1); /* Semi-transparent background */
  z-index: 1000;  /* Ensure it stays above other content */
}
/**
 * image styles
 */

 .image-container {
  display: flex;                /* Use flexbox to align items side by side */
  align-items: center;          /* Center images vertically */
  justify-content: center;       /* Center images horizontally within the container */
  gap: 15px;                     /* Optional: space between images */
}

.full-width-image {
  width: 100%;
  height: auto; /* Maintain aspect ratio */
  display: block; /* Ensure there’s no inline spacing */
  margin: 0 auto; /* Center the image if needed */
}
.half-width-image {
  width: 50%;
  height: auto; /* Maintain aspect ratio */
  display: block; /* Ensure there’s no inline spacing */
  margin: 0 auto; /* Center the image if needed */
}


.quarter-width-image,
.third-width-image {
  height: auto;                 /* Maintain aspect ratio */
}

.quarter-width-image {
  width: 25%;                   /* Define width without setting a fixed height */
}

.third-width-image {
  width: 33%;                   /* Define width without setting a fixed height */
}

/**
 * Main menu
 */
ul.main-menu {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.main-menu li {
  position: relative;
}

ul.main-menu li a {
  font-size: 2.0rem;
  margin-right: 20px;
  text-decoration: none;
  color: #cfd2da;
  padding: 10px;
}

ul.main-menu li:hover > a {
  color: #FFFFFF;
}

/* Dropdown menu */
ul.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 10px;
  z-index: 1000;
}

ul.dropdown-menu li {
  margin-bottom: 5px;
}

ul.dropdown-menu li a {
  font-size: 1.6rem;
  padding: 5px;
  color: #cfd2da;
  text-decoration: none;
}

ul.dropdown-menu li a:hover {
  color: #FFFFFF;
}

/* Show dropdown on hover */
ul.main-menu li:hover ul.dropdown-menu {
  display: block;
}

/* Mobile Styling for dropdown */
@media (max-width: 768px) {
  ul.main-menu {
    flex-direction: column;
    align-items: flex-start;
  }

  ul.dropdown-menu {
    position: static;
    display: none;
    width: 100%;
  }

  ul.main-menu li:hover ul.dropdown-menu {
    display: block;
  }
}

/**
 * Section and Subsection Styling
 */
.content-region {
  margin-bottom: 30px;
}

.sub-content {
  margin-left: 20px;
}

/**
 * Smooth Scrolling
 */
html {
  scroll-behavior: smooth;
}

/* Utility classes */
.hide {
  display:none;
}
.show {
  display:block;
}
