/* Basic reset and typography */
html {
    scroll-behavior: smooth; /* Smooth scrolling to anchor links */
}

body {
    margin: 0;
    font-family: sans-serif;
    color: #333;
}

ul {
        padding-left: 10px; /* Removes the default left padding */
        margin-left: 10px;  /* Removes the default left margin */
}

li {
  margin-bottom: 10px; /* Add 10 pixels of space below each list item */
}

/* Fixed Header Section */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100; /* Ensures the header stays on top of other content */
    padding: 20px;
    text-align: center;
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7); /* Adds contrast for better readability */
    pointer-events: none; /* Allows clicks to pass through to the background */
}

.fixed-header h1 {
    margin: 50px 0 0;
    font-size: 2.5rem;
    text-shadow: 8px 8px 16px rgba(0,0,0,0.5);
}

.fixed-header p {
    margin: 5px 0 0;
    font-size: 1.25rem;
}

.my-text {
    opacity: 1;
    transition: opacity 0.5s ease-in-out; /* Smooth transition */
    text-shadow: 8px 8px 16px rgba(0,0,0,0.5);
    color: yellow;
}

.my-text.hidden {
    opacity: 0;
}
    
/* Parallax Background Section */
.parallax-bg {
    padding-top: 150px; /* Adjust this value based on your header's height */
    background-image: url('/images/Background.png?q=80&w=2070&auto=format&fit=crop'); /* Replace with your image URL */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Creates the parallax effect */
    min-height: 100vh; /* Takes up the full viewport height */
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.parallax-bg h1 {
    font-size: 3rem;
}

/* Content Panel Section */
.content-panel {
    padding: 20px 20% 20px 20%;
    position: relative; /* This is crucial for layering the panel below the fixed header */
    z-index: 50;
}

.content-panel h2 {
    color: #0056b3;
}

/* Menu styling */
.menu {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    border-bottom: 2px solid #ccc;
}

.menu-item {
    padding: 10px 15px;
    text-decoration: none;
    color: #555;
    font-weight: bold;
    transition: color 0.3s ease, border-bottom 0.3s ease;
}

.menu-item:hover {
    color: #007bff;
}

.menu-item.active {
    color: #007bff;
    border-bottom: 2px solid #007bff;
}

.menu-link {
    padding: 10px 15px;
    text-decoration: none;
    color: #555;
    font-weight: bold;
    transition: color 0.3s ease, border-bottom 0.3s ease;
}

/* Page content styling */
.page-content {
    display: none; /* Hide all pages by default */
    padding: 0;
    background-color: white;
    border-radius: 8px;
    font-size: 16px;
		font-weight: 400;
		height: 72px;
		line-height: 1.6;
}

.page-content.active {
    display: block; /* Show the active page */
}

.page-content h1 {
		font-family: "Libre Franklin", "Helvetica Neue", helvetica, arial, sans-serif;
		font-size: 16px;
		font-weight: ;800
}