/* ===== Base ===== */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    line-height: 1.6;
    color: #222;
    background: #ffffff;
}

main {
    max-width: 1100px;
    margin: auto;
    padding: 25px 20px;
}

footer {
    background: #f3f4f6;
    padding: 18px;
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
}


/* ===== Header (sticky + centred) ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: white;
    border-bottom: 3px solid #0b2a4a;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 14px 10px;

    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}


/* Logo (perfectly centred & smaller) */
.logo {
    width: 130px;
    height: auto;
    display: block;
    margin: 0 auto 8px auto;
}


/* Title */
.site-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: #0b2a4a;
    margin-bottom: 10px;
    text-align: center;
}


/* ===== Navigation ===== */
.main-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.main-nav a {
    color: #0b2a4a;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.main-nav a:hover {
    text-decoration: underline;
}


/* ===== Hero Image with Text Overlay ===== */
.hero {
    position: relative;
    width: 100%;
    margin: 0;
}

.hero img {
    width: 100%;
    height: auto;
    display: block;
}


/* dark overlay */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}


/* text container */
.hero-text {
    position: absolute;
    inset: 0;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    color: #ffffff;                 /* pure white */
    text-align: center;
    padding: 20px;

    font-weight: 800;

    /* sharper contrast */
    text-shadow:
        0 2px 4px rgba(0,0,0,0.9),
        0 4px 12px rgba(0,0,0,0.7);
}

/* first line bigger */
.hero-text h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin: 0;
}


/* second line smaller */
.hero-text p {
    font-size: 1.2rem;
    margin-top: 10px;
}


/* ===== Responsive ===== */
@media (max-width: 768px) {
    .logo {
        width: 100px;
    }

    .hero-text h1 {
        font-size: 1.9rem;
    }

    .hero-text p {
        font-size: 1rem;
    }
}

/* ===== About Page ===== */

.about-page {
    max-width: 900px;
}

.about-page h1 {
    text-align: center;
    color: #0b2a4a;
    margin-bottom: 25px;
}

.about-quote {
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    color: #0b2a4a;
    margin: 30px 0;
    font-style: italic;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 25px 0;
}