body {
    margin: 0;
    background-color: var(--color-background);
    color: var(--color-primary);
    font-family: var(--font-base), sans-serif;
}

main {
    padding: 0.5rem 0.5rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--header-bg);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.site-header {
    background-color: var(--header-bg);
    color: var(--header-text);
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: var(--header-shadow);
}

.logo-area {
    display: flex;
    align-items: center;
}

.logo-area img {
    height: 60px;
    width: auto;
}

.logo-text {
    display: none;
}

nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 1rem;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 1rem;
    transition: color 0.3s;
    white-space: nowrap;
}

nav ul li a:hover {
    color: #ffde59;
}

.main-menu a.active {
    font-weight: bold;
    text-decoration: underline;
}

.welcome {
    text-align: center;
    padding: 2rem 1rem;
}

.welcome h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.welcome .tagline {
    font-size: 1.25rem;
    color: #555;
}

/* === HERO SECTION START === */
.hero-wrapper {
    padding-top: 6rem;       /* This clears the fixed header (60px) + breathing room */
    padding-bottom: 0;       /* We’ll handle the rest inside */
    display: flex;
    justify-content: center;
}

.hero-section {
    background: linear-gradient(135deg, #FFD700 0%, #F4A300 100%);
    color: #001f2c;
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

/* Ensure internal spacing is clean */
.hero-section h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin: 0;
}

.hero-section p:not(.greeting-line) {
    font-size: 2rem;
    font-weight: 700;
    color: #1A1E4E;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
    max-width: 750px;
    margin: 0 auto 2rem;
    letter-spacing: 0.5px;
    text-align: center;
    border-bottom: 3px solid transparent; /* for border-image or gradient if used */
    padding-bottom: 0.5rem;
}

.highlight-name {
    color: #1A1E4E;
    font-weight: 700;
    font-style: italic;
    font-size: 1.05em;
    letter-spacing: 0.5px;
}

.hero-section p::after {
    content: "";
    display: block;
    margin: 0.5rem auto 0;
    width: 100%;
    border-bottom: 2px solid #1A1E4E;
}

.gradient-name {
    background: linear-gradient(135deg, #ffde59 0%, #ff9a3c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.hero-section .cta-button {
    background-color: #001f2c;
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
    margin: 0 auto; /* 👈 centers it */
    width: auto; /* 👈 makes it hug its content */
    display: inline-block; /* 👈 prevent it from stretching */
}

.hero-section .cta-button:hover {
    background-color: #00435c;
}
/* === HERO SECTION END === */

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    nav ul {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        overflow-x: visible;
    }

    nav ul li a {
        font-size: 1rem;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }
}

.greeting-line {
    font-size: 2.00rem;
    font-weight: 400;
    color: #1A1E4E;
    text-align: center;
    margin: 0 auto 1.5rem;
    max-width: 750px;         /* match the tagline’s width */
    padding: 0;               /* reset any inherited spacing */
    border: none;             /* no underline */
}

/*
.greeting-line::after {
    content: "|";
    animation: blink 1s step-start infinite;
    margin-left: 4px;
    color: #1A1E4E;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}
*/

