/* GLOBAL STYLES */
body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    line-height: 1.6;
    color: #222;
    background-color: #f5f6f8;
}

html {
    scroll-behavior: smooth;
}

a {
    color: #8C1D40;
}

a:hover {
    color: #5f1029;
}

/* HEADER */
header {
    background: linear-gradient(135deg, #8C1D40, #FFC627);
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.subpage-header {
    background: linear-gradient(135deg, #8C1D40, #FFC627);
    color: white;
    text-align: center;
    padding: 45px 20px;
}

.header-content {
    max-width: 900px;
    margin: 0 auto;
}

/* PROFILE PHOTO */
.profile-photo {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid white;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    margin-bottom: 20px;
}

/* TYPOGRAPHY */
h1 {
    margin: 0 0 10px;
    font-size: 2.2rem;
}

h2 {
    color: #8C1D40;
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1.6rem;
}

h3 {
    color: #8C1D40;
    margin-top: 24px;
    margin-bottom: 8px;
    font-size: 1.15rem;
}

p {
    margin-top: 0;
    margin-bottom: 14px;
}

ul {
    padding-left: 22px;
}

li {
    margin-bottom: 8px;
}

.subtitle {
    margin: 6px 0;
    font-size: 1.05rem;
}

.bio-intro {
    max-width: 720px;
    margin: 16px auto 0;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.95);
}

/* NAVIGATION */
.site-nav {
    background-color: white;
    text-align: center;
    padding: 14px 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-nav a {
    display: inline-block;
    margin: 8px 14px;
    text-decoration: none;
    font-weight: 600;
    color: #8C1D40;
    transition: color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover {
    color: #5f1029;
    text-decoration: underline;
    transform: translateY(-1px);
}

/* MAIN SECTIONS */
section {
    max-width: 1000px;
    margin: 30px auto;
    padding: 30px 25px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

/* INTRO / CARD GRID */
.intro-links {
    text-align: center;
}

.link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.card-link {
    display: block;
    background-color: #fafafa;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    padding: 20px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    border-color: #d4b3be;
}

.card-link h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

.card-link p {
    margin-bottom: 0;
    color: #444;
}

/* BUTTONS */
.button {
    display: inline-block;
    background-color: #8C1D40;
    color: white;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    margin: 8px;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.button:hover {
    background-color: #6d1732;
    color: white;
    transform: translateY(-1px);
}

.button-row {
    text-align: center;
    margin-top: 20px;
}

/* GRAPHICS / IMAGES */
.graphic-wrap {
    text-align: center;
    margin-top: 20px;
}

.guidelines-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.caption {
    text-align: center;
    font-size: 0.95rem;
    color: #555;
    margin-top: 10px;
}

/* SPECIAL CONTENT BLOCKS */
.highlight-box {
    background-color: #faf7f8;
    border-left: 4px solid #8C1D40;
    padding: 18px;
    border-radius: 8px;
    margin-top: 20px;
}

.callout {
    background-color: #fff9e8;
    border: 1px solid #f0dd9a;
    padding: 18px;
    border-radius: 8px;
    margin-top: 20px;
}

/* CONTACT SECTION */
#contact a {
    word-break: break-word;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 30px 20px;
    color: #666;
    font-size: 0.95rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .site-nav {
        padding: 10px 8px;
    }

    .site-nav a {
        margin: 6px 10px;
        font-size: 0.95rem;
    }

    section {
        margin: 20px 14px;
        padding: 24px 18px;
    }

    h1 {
        font-size: 1.9rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    .profile-photo {
        width: 150px;
        height: 150px;
    }

    .bio-intro {
        font-size: 1rem;
    }

    .guidelines-image {
        max-width: 420px;
    }
}

@media (max-width: 480px) {
    header,
    .subpage-header {
        padding: 42px 16px;
    }

    h1 {
        font-size: 1.7rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .profile-photo {
        width: 130px;
        height: 130px;
    }

    .link-grid {
        grid-template-columns: 1fr;
    }

    .button {
        display: block;
        width: fit-content;
        margin: 10px auto;
    }

    .guidelines-image {
        max-width: 100%;
    }
}
