/* ----------------------------------------------------------------------------------- */
/* site-layout/layout-a.css (top bar nav) */
/* ----------------------------------------------------------------------------------- */
a {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
}

/* ----------------------------------------------------------------------------------- */
/* layout-a.css header and navigation */
/* ----------------------------------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    inset-inline-start: 0;
    z-index: 1000;
    width: 100%;
    border-bottom: #cccccc 1px solid;
}

.site-header-content {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 15px 10% 15px 10%;
}

.site-name {
    flex: 1;
    font-size: 30px;
    font-weight: 400;
}

.navigation-container {
    display: flex;
    justify-content: flex-end;
}

/* ----------------------------------------------------------------------------------- */
/* layout-a.css body */
/* ----------------------------------------------------------------------------------- */
.site-body {
    padding-inline-start: 10%;
    padding-inline-end: 10%;
    padding-top: 70px;
    min-height: 75vh;
}

.bodyDescription {
    padding-top: 30px;
}

h1 {
    font-size: 22px;
}

/* ----------------------------------------------------------------------------------- */
/* layout-a.css gallery */
/* ----------------------------------------------------------------------------------- */
h1.gallery-title {
    font-size: 20px;
}

/* ----------------------------------------------------------------------------------- */
/* layout-a.css footer */
/* ----------------------------------------------------------------------------------- */
.footer {
    display: flex;
    align-items: center;
    padding-inline-start: 10%;
    padding-inline-end: 10%;
    margin-bottom: 30px;
}

.footer-item {
    width: 50%;
}

.site-links {
    width: 100%;
}

ul.external-links {
    display: flex;
    justify-content: center;
    gap: 5px;
    list-style: none;
    box-sizing: border-box;
    width: 100%;
}

/* ----------------------------------------------------------------------------------- */
/* layout-a.css media queries */
/* ----------------------------------------------------------------------------------- */
@media screen and (max-width: 575px) {
    .site-header-content, .site-body, .footer {
        padding-inline-start: 10px;
        padding-inline-end: 10px;
        font-size: 18px;
    }
}

@media screen and (min-width: 576px) and (max-width: 767px) {
    .site-header-content, .site-body, .footer {
        padding-inline-start: 20px;
        padding-inline-end: 20px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .site-header-content, .site-body, .footer {
        padding-inline-start: 40px;
        padding-inline-end: 40px;
    }
}