/* CSS Document */

@font-face {
  font-family: 'interFont';
  src: url('fonts/inter.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'oswaldsbFont';
  src: url('fonts/oswald-sb.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* Reset & basic styling */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html, body {
    height: 100%;
    min-height: 100%;
    font-family: Arial, sans-serif;
	line-height: 1.5;
    color: rgba(130, 213, 191,1.00);
    overflow: auto;
    display: flex;
    flex-direction: column;
	background-color: #000;
}
/* Fix for the blurred background issue */
.blurred-bg {
    position: fixed; 
    top: 0;
    left: 0;
    width: 98%;
    height: 100%;
    background-image: url('img/embers.gif');
    background-size: cover;
    background-position: center;
    filter: blur(12px);
    z-index: 0;  /* Ensure it's behind all other content */
}
/* Overlay Styles */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    background-image: url('img/embers.gif'); 
    background-repeat: no-repeat;
    background-size: cover; 
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 1;
    transition: opacity 1s ease;
}
.overlay.hidden {
    opacity: 0;
    pointer-events: none;
}
.overlay img {
	z-index: 12;
    cursor: pointer;
}

.pageLogo {
	width: 100%;
	max-width: 600px;
}

/* Ensure content z-index works as expected */
.content {
    position: relative; /* Ensure the content layers correctly above the blurred background */
    z-index: 1; /* Keep content on top */
    text-align: center;
    margin: 1rem;
    flex: 1;
	padding-top: 20%;
}

.content img {
    filter: drop-shadow(0 0 8px rgba(255,255,255,1.00));
    position: relative;
    z-index: 9;
}

.content ul {
    padding-left: 30px;
}

.content li {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

/* Parallax Styling */
.parallaxHeading {
    position: relative;
    height: 100vh;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.parallaxHeading h1 {
	font-family: 'oswaldsbFont';
    font-size: 5em;
    margin: 0;
    color: #B3336B3; /* Pinkish color for headings */
}

.parallaxHeading img {
	max-width: 600px;
}

.parallaxSection {
    padding: 100px 20px;
    text-align: center;
    background-color: rgba(176,64,251,0.77); /* Use one of the colors from the palette for background */
    display: flex;               /* Enable flexbox */
    justify-content: center;     /* Center horizontally */
    align-items: center;         /* Center vertically */
}

.parallaxSection h2 {
    font-size: 2.5em;
    color: #333333; /* Dark color for section headings */
} 

.parallaxSectionWindow {
	max-width: 1100px;
    width: 100%;  /* Ensures it takes up full width of the parent container */
    text-align: left;  /* Aligns text to the left */
    padding: 20px;  /* Adds some padding for spacing */
	font-family: 'interFont';
	font-size: 1.4rem;
}

.parallaxSectionWindow img {
	max-width: 100%;
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.0));
}
.parallaxSectionWindow img:hover {
	max-width: 100%;
    filter: drop-shadow(0 0 12px rgba(0,0,0,0.9));
}


/* Footer Styles */
footer {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    color: white;
    padding-top: 180px;
    width: 100%;
    text-align: center;
    z-index: 10;
    position: relative;
    margin-top: auto;
}

.footer-container {
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

footer p {
    margin-bottom: 10px;
}
footer a {
    color: white;
    text-decoration: none;
}

/* Media Query for Smaller Screens (less than 768px) */
@media (max-width: 875px) {	
  .parallaxHeading img {
      max-width: 90%;
  }
}