/* ----------------------------------------------------------
   GLOBAL RESET & BASE STYLES
---------------------------------------------------------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: Arial, Helvetica, sans-serif;
    color: #003366;
    line-height: 1.6;
    background: transparent;
}

/* ----------------------------------------------------------
   FIXED BACKGROUND IMAGE + DARK OVERLAY
---------------------------------------------------------- */

.background {
    position: fixed;
    inset: 0;
    background-image: url("background.jpg");
    background-size: cover;
    background-position: center;
    z-index: -1;
}

/* Dark overlay to shade the background image */
.background::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35); /* adjust darkness here */
    z-index: -1;
}

/* ----------------------------------------------------------
   TOP NAV BAR — MATCHES ORIGINAL SITE
---------------------------------------------------------- */

.site-header {
    background: #003366; /* deep blue */
    padding: 1.5rem 2.5rem; /* taller bar */
    margin-bottom: 2rem;
}

.nav {
    display: flex;
    justify-content: flex-end; /* right-aligned links */
    gap: 2rem;
}

.nav a {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
}

.nav a:hover {
    text-decoration: underline;
}

/* ----------------------------------------------------------
   HERO / INTRO SECTION — TRANSPARENT WITH WHITE TEXT
---------------------------------------------------------- */

.hero {
    background: rgba(255, 255, 255, 0); /* fully transparent */
    padding: 4rem 2.5rem;
    border-radius: 6px;
    margin-bottom: 3rem;
    border: none; /* no border */
    box-shadow: 0 0 22px rgba(0,0,0,0.22);
    text-align: center;
    color: #ffffff; /* ensures all text inside is pure white */
}

.hero .site-title {
    font-size: 3.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 0 8px rgba(0,0,0,0.35);
}

.hero .subtitle {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 6px rgba(0,0,0,0.35);
}

/* ----------------------------------------------------------
   CONTACT PANEL — OPAQUE WHITE BELOW HERO
---------------------------------------------------------- */

.contact-panel {
    background: #f1f1f1; /* solid white */
    padding: 2rem;
    border-radius: 6px;
    border-bottom: none;
    margin-bottom: 0;
    border: 1px solid #003366;
    box-shadow: 0 0 12px rgba(0,0,0,0.10);
    text-align: center;
    font-size: 1.1rem;
    color: #003366;
}

.contact-panel a {
    color: #003366;
    text-decoration: underline;
}

/* ----------------------------------------------------------
   HEADERS & TYPOGRAPHY
---------------------------------------------------------- */

h2 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    color: #003366;
    border-bottom: 2px solid #003366;
    padding-bottom: 0.3rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #0055aa;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ----------------------------------------------------------
   THREE-COLUMN SECTION — OPAQUE WHITE CONTAINER
---------------------------------------------------------- */

.columns {
    display: flex;
    gap: 2rem;
    background: #ffffff; /* solid white panel */
    padding: 2rem;
    border-radius: 6px;
    margin-top: 0;
    margin-bottom: 0;
    border-top: none;
    border: 1px solid #003366;
    box-shadow: 0 0 12px rgba(0,0,0,0.10);
}

/* Individual column styling */
.col {
    flex: 1;
    padding: 1.5rem;
    border-radius: 6px;
    border: 1px solid #003366;
    box-shadow: 0 0 10px rgba(0,0,0,0.08);
}

.col ul {
    background: transparent !important;
    padding: 0;
    margin: 0;
    list-style-position: inside;
}

.col-1 { background: #dceaff; }
.col-2 { background: #aecdff; }
.col-3 { background: #7fb2ff; }


/* ----------------------------------------------------------
   BIO SECTION
---------------------------------------------------------- */

.section.bio {
    background: #ffffff;
    padding: 2rem;
    border-radius: 6px;
    margin-bottom: 2.5rem;
    border: 1px solid #003366;
    box-shadow: 0 0 12px rgba(0,0,0,0.10);
}

/* ----------------------------------------------------------
   FOOTER
---------------------------------------------------------- */

.footer {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 6px;
    text-align: center;
    font-size: 0.9rem;
    border: 1px solid #003366;
    box-shadow: 0 0 10px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

/* ----------------------------------------------------------
   RESPONSIVE BEHAVIOR
---------------------------------------------------------- */

@media (max-width: 900px) {
    .columns {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .wrapper {
        padding: 1.25rem;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.5rem;
    }
}