﻿body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* 1. The Background Container */
.background-container {
    /* Make it use an image from a folder named "images" */
    background-image: url('images/background.jpg'); /* IMPORTANT: Change this to your image */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* This is the magic property! */
    /* Position it to cover the entire screen */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Pushes it behind all other content */
}

/* 2. The Scrolling Content Wrapper */
.page-wrapper {
    /* This allows the content to scroll. It could also have a semi-transparent background if you want */
}

/* 3. Basic styling for the content to make it readable */
.site-header {
    text-align: center;
    color: white;
    padding: 100px 20px 50px 20px; /* Add padding to push content down */
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.content-container {
    max-width: 800px;
    margin: 40px auto; /* Center the container */
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent white background */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.site-footer {
    text-align: center;
    padding: 20px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
}
/* ... All your other header, nav, logo, dropdown styles are fine ... */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 10px 20px;
    flex-direction: row-reverse;
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
}

nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
}

    nav ul li {
        margin-right: 25px;
    }

        nav ul li a {
            color: #ffffff;
            text-decoration: none;
            font-size: 1em;
            padding: 5px 0;
            transition: color 0.3s ease;
        }

            nav ul li a:hover {
                color: #a7c8e8;
            }

.cta-button a {
    border: 1px solid #ffffff;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

    .cta-button a:hover {
        background-color: #ffffff;
        color: #0d2c4e;
    }

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(26, 36, 48, 0.8);
    backdrop-filter: blur(10px);
    min-width: 240px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1001;
    border-radius: 0 0 5px 5px;
    text-align: left;
}

/* Show dropdown on hover OR if it has been clicked open */
.dropdown:hover .dropdown-content,
.dropdown.open-dropdown .dropdown-content {
    display: block;
}

/* Style for the active link: add a background color */
.dropdown-content a.active-link {
    color: #e2e3f0; /* Make the text white for high contrast */
    font-weight: bold;
    background-color: #3498db; /* The primary blue color from your site */
}

.dropdown-content a {
    color: #ffffff;
    padding: 15px 16px;
    text-decoration: none;
    display: block;
}

    .dropdown-content a:hover {
        background-color: #2f28b4bb;
    }
/* --- Styles for the Extension Button Popover --- */
.cta-button {
    position: relative;
}
.page-wrapper {
    /*=============================             SCROLING EFFECT ALL THE WAY TO THE TOP! ====
       
       HERE===*/

    padding-top: 19px; /* CRUCIAL: Makes space for the fixed header */
    padding-bottom: 95vh;
}
