@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');

:root {
    --button-color: #c3e2e2;
    --bg-color: #f9f9f9;
    --primary-color: #00abbd;
    --secondary-color: #e7f3ff;/*#bfd8ee;*/
    --tri-color: #c3e2e2;
    --text-color: #333;
    --text-color-light: #666;
    --dimmed-color: rgba(255, 255, 255, 0.8);
    --font-family: 'Open Sans', sans-serif;
}

body {
    font-family: var(--font-family);
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    justify-content: start;
    align-items: center;
}


/***************** HEADER *****************/
header {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.main-header {
    min-height: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 5rem 0 2.5rem;
    margin: 0 auto;
    flex-direction: row;
    flex-wrap: wrap;
    background-color: var(--dimmed-color);
}
.main-subtitle {
    transition: opacity 1s ease-in-out;
    font-style: italic;
}

.show {
    opacity: 1;
}
.hide {
    opacity: 0;
}


.main-logo {
    border-radius: 50%;
    width: 190px;
    height: 190px;
    margin-right: 2rem;
}

.main-title {
    font-size: 4rem;
    font-weight: bolder;
    margin: 0;
    padding: 0;
    color: var(--text-color);
    box-sizing: border-box;
    text-align: center;
}

.main-subtitle {
    min-height: 30%;
    font-size: 1.3rem;
    text-align: center;
    margin: 0;
    padding: 1.5rem 0 5rem 0;
    color: var(--text-color);
    background-color: var(--dimmed-color);
}

/***************** NAVIGATION *****************/
.navbar {
    text-align: left;
    max-width: 75%;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
}

.navbar a {
    color: var(--text-color);
    text-decoration: none;
    padding: 2rem;
    font-size: 1.1rem;
    display: inline-block;
    transition: background-color 0.4s;
}

.navbar a:hover {
    color: var(--bg-color);
    background-color: var(--primary-color);
    text-decoration: underline;
}
.navbar a.chosen {
    color: var(--text-color);
    background-color: var(--secondary-color);
    text-decoration: underline;
}
.navbar a.chosen:hover {
    color: var(--bg-color);
    background-color: var(--primary-color);
}

/***************** MAIN *****************/
section {
    margin: 0 auto;
}
section.even{
    background-color: var(--bg-color);
}
section.odd{
    background-color: var(--secondary-color);
}
.content{
    margin: 0;
    width: 100%;
}
section.header-alike{
    padding: 1rem 0;
    background-color: var(--tri-color);
}
.header-alike h1,.header-alike h2,.header-alike h3, .header-alike h4, .header-alike h5, .header-alike h6{
    font-size: 3rem;
    font-weight: bolder;
    margin: 0;
    padding: 0;
    color: var(--text-color);
    box-sizing: border-box;
    text-align: center;
}
.header-alike h1 a, .header-alike h2 a{
    font-size: 3rem;
    font-weight: bolder;
    text-decoration: none;margin: 0;
    padding: 0;
    color: var(--text-color);
    box-sizing: border-box;
    text-align: center;
}
.header-alike h1 a:hover, .header-alike h2 a:hover{
    color: var(--primary-color);
    cursor: pointer;
}
.header-alike p{
    font-size: 1.1rem;
    text-align: center;
    margin: 0;
    padding: 0.5rem 0;
    color: var(--text-color);
    box-sizing: border-box;
}

.even .action a, .odd .action a, .action a{
    color: var(--text-color);
    background-color: var(--button-color);
    border-radius: 0.5rem;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 1.1rem;
    display: inline-block;
    padding: 0.75rem 1.5rem;
    transition: color 0.4s;
    cursor: pointer;
}
.action.linktree a {
    color: var(--text-color);
    background-color: var(--button-color);
    border-radius: 0.75rem;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 1.25rem;
    display: inline-block;
    padding: 1rem 1.5rem;
    transition: color 0.4s;
    cursor: pointer;
    width: 95%;
    text-align: center;
}
.odd .action a:hover, .even .action a:hover, .action a:hover{
    color: var(--bg-color);
    background-color: var(--primary-color);
}
.icons-margin1 a i, .icons-margin1 i{
    margin-right: 0.5rem;
    font-size: 1.5rem;
}
.icons-margin2 a i, .icons-margin2 i{
    font-size: unset;
    margin: 0 0.5rem;
}
.icons-margin3 a i, .icons-margin3 i{
    font-size: 1.75rem;
    margin: 1rem;
}
.action.contact{
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1rem;
}
.action.contact a{
    width: 60%;
    text-align: center;
}
.action.calendars a{
    width: 60%;
    text-align: center;
}
.action.calendars{
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 0.5rem;
}

.section-wrapper{
    text-align: justify;
    padding: 2rem 0;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}

.section-content {
    width: 75%;
    text-align: justify;
    margin: 0 auto;
}


.section-title a, .section-title{
    font-size: 2rem;
    font-weight: bolder;
    margin-bottom: 1rem;
    text-decoration: none;
    color: var(--text-color);
}
.section-title a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}
.section-footer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    font-size: 0.9rem;
    height: 20%;
    padding: 1rem 0 0 0;
    justify-content: center;
    align-items: center;
}
.odd .section-footer .desc {

}
.even .section-footer .desc {

}
.section-footer .action {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    word-break: keep-all;
    white-space: nowrap;
    padding: 0 1rem;
    gap: 1rem;
    width: 100%;
    box-sizing: border-box;
    flex-wrap: wrap;
}

.section-content.article{
    text-align: justify;
    margin: 0 10rem;
    padding: 0;
    color: var(--text-color);
    box-sizing: border-box;
}
.section-content.article p{
    margin: 0;
    padding: 0;
    text-align: justify;
    color: var(--text-color);
    box-sizing: border-box;
}

/***************** FOOTER *****************/
.page-footer {
    text-align: center;
    padding: 1rem 0;
    font-size: 0.8rem;
}

@media screen and (min-width: 1001px) and (max-width: 1199px) {
    .action a{
        width: 75%;
        text-align: center;
    }
    .icons-margin1 a i, .icons-margin1 i{
        margin-right: 0.4rem;
        font-size: unset;
    }
    .icons-margin2 a i, .icons-margin2 i{
        font-size: unset;
        margin: 0 0.2rem;
    }
}


@media screen and (max-width: 1000px) {
    :root {
        font-size: 11px;
    }
    section {
        width: 100%;
        margin: 0;
    }
    .section-wrapper {
        width: 100%;
        margin: 0;
        padding: 1rem 0;
    }
    .section-content {
        width: 100%;
        text-align: justify;
        margin: 0 2rem;
    }
    .navbar {
        min-width:100%;
        margin: 0;
        padding: 0;
    }
    .navbar a {
        width: 100%;
        padding: 1.25rem;
        font-size: unset;
        text-align: center;
    }
    .main-header {
        padding: 1rem 0;
        flex-direction: column;
    }

    .main-logo {
        width: 125px;
        height: 125px;
        margin-right: 0;
    }

    .main-title {
        font-size: 3rem;
    }

    .main-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem 1rem;
    }
    .action a{
        width: 75%;
        text-align: center;
        word-break: break-word;
        line-break: anywhere;
    }
    .action.contact a{
        width: 95%;
        text-align: center;
        word-break: break-word;
        line-break: anywhere;
    }
    .action.calendars a{
        width: 95%;
        text-align: center;
        word-break: break-word;
        line-break: anywhere;
    }
    .icons-margin1 a i, .icons-margin1 i{
        margin-right: 0.25rem;
        font-size: unset;
    }
    .icons-margin2 a i, .icons-margin2 i{
        font-size: unset;
        margin: 0 0.2rem;
    }
    .action.linktree a {
        font-size: 1rem;
        padding: 0.75rem 1.25rem;
    }
}