@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Montserrat:wght@400;700&display=swap');

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

html, body {
    height: 100%;
    font-family: 'Merriweather', Georgia, serif;
    font-size: 16px;
    line-height: 1.75;
}

body {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow: hidden;
}

/* Background */
.bg {
    position: fixed;
    inset: 0;
    background-image: url('bgr.webp'),
        url('https://i0.wp.com/www.ilsa.org/wp-content/uploads/2025/05/front-b-2.jpg?fit=2600%2C1735&ssl=1');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    z-index: -2;
}

.bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(10, 5, 5, 0.70) 0%,
        rgba(10, 5, 5, 0.35) 55%,
        rgba(10, 5, 5, 0.08) 100%
    );
}

/* Header */
header {
    position: relative;
    z-index: 1;
    padding: 22px 32px;
}

.logo img {
    height: 42px;
    width: auto;
    display: block;
}

/* Main content */
main {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 0 5% 60px 10%;
}

.content {
    width: 45%;
    color: #ffffff;
}

/* Heading — matches ilsa.org "The Home of the Jessup" exactly */
.content h2 {
    font-family: 'Merriweather', Georgia, serif;
    font-style: italic;
    font-weight: 900;
    font-size: 1.8125rem;      /* 29px — same as pena theme */
    line-height: 1.3;
    margin: 0 0 0.4375em;
    color: #ffffff;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
}

/* Paragraph — matches ilsa.org body text style */
.content p {
    font-family: 'Merriweather', Georgia, serif;
    font-style: italic;
    font-weight: 300;
    font-size: 0.9375rem;      /* 15px */
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.90);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
}

/* ── Tablet (≤ 900px) ─────────────────────────────── */
@media (max-width: 900px) {
    main {
        padding: 0 5% 60px 6%;
    }

    .content {
        width: 60%;
    }

    .content h2 {
        font-size: 1.5rem;
    }

    .content p {
        font-size: 0.875rem;
    }
}

/* ── Mobile (≤ 600px) ─────────────────────────────── */
@media (max-width: 600px) {
    .bg {
        background-position: 70% center;
    }

    .bg::after {
        background: rgba(10, 5, 5, 0.62);
    }

    header {
        padding: 16px 20px;
    }

    .logo img {
        height: 34px;
    }

    main {
        align-items: flex-end;
        padding: 0 20px 48px;
    }

    .content {
        width: 100%;
    }

    .content h2 {
        font-size: 1.3rem;
        margin-bottom: 0.5em;
    }

    .content p {
        font-size: 0.85rem;
        line-height: 1.75;
    }
}
