@font-face {
	font-family: infprofont;
	src: url('../font/MerriweatherSans-Regular.ttf');
}

@font-face {
	font-family: infprofontbold;
	src: url('../font/MerriweatherSans-Bold.ttf');
}

@font-face {
	font-family: infprofontlight;
	src: url('../font/MerriweatherSans-Light.ttf');
}

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

body {
    font-family: infprofontlight, "lucida grande", tahoma, verdana, arial, sans-serif;
    letter-spacing: 0.12ex;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #222;
}

.page-header {
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.85);
}

.page-header h1 {
    display: flex;
    align-items: center;
    max-width: 1100px;
    margin: auto;
}

.page-header h1 a img{
    height: 2.5em;
    transform: rotate(-10deg);
}

.page-header h1 a, .page-header h1 span {
    padding-left: 1em;
}

main {
    padding: 2rem 1rem;
}

.content {
    max-width: 1100px;
    margin: auto;
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 12px;
}

#page-description {
    margin-bottom: 2rem;
    line-height: 1.6;
}

.sections {
    list-style: none;
}

.section-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.section-number {
    font-size: 4rem;
    font-weight: 800;
    color: #ccc;
    line-height: 1;
}

.section-content p {
    margin-bottom: 1rem;
}

.section-content img {
    max-width: 100%;
    border-radius: 10px;
    display: block;
}

/* Footer */
.page-footer {
    text-align: center;
    padding: 1rem;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {

    .page-header h1 {
        flex-wrap: wrap;
        row-gap: 0.5rem;
    }

    .page-header h1 a img {
        height: 2em;
    }

    .page-header h1 a,
    .page-header h1 span {
        padding-left: 0;
    }

    #member-address {
        width: 100%;
        font-size: 0.9em;
        opacity: 0.7;
    }

    #page-title {
        width: 100%;
        font-size: 1.1em;
        line-height: 1.3;
    }

    .section-item {
        grid-template-columns: 1fr;
    }

    .section-number {
        font-size: 3rem;
        color: #ddd;
    }
}
