@charset "utf-8";

/* reset.css for Capstone in C6P2 Web Development Internship - Brittany Thompson, January 5, 2026 */

@font-face {
    font-family: 'League Spartan';
    src: url(/IndigenouslyCreative/ic-fonts/LeagueSpartan.otf);
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Quicksand';
    src: url(/IndigenouslyCreative/ic-fonts/Quicksand-Regular.otf);
    font-weight: normal;
    font-style: normal;
}

.labrada-font {
    font-family: "Labrada", serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
}

/* background image for html (brown adobe stock image) with repeat along the y axis and then contained so that it does not c*/
html {
    background-image: url(/IndigenouslyCreative/ic-images/adobe-bg.jpeg);
    background-repeat: repeat-y;
    background-size: contain;
    background-attachment: scroll;
}

body {
    width: 80%;
    min-width: 1200px;
    max-width: 1200px;
    margin: auto;
    background-color: rgb(251, 236, 212);
    /* border: 5px outset rgb(100, 61, 61); */
    /* border-radius: 10px; */
}

header {
    text-align: center;
    /* display: grid; */
    /* row-gap: 20%; */
    /* border: 2px solid red; */
    background-image: url(/IndigenouslyCreative/ic-images/blank-banner.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 27em;
    width: 100%;
    margin: auto;
    padding-top: 26.5%;

}

header nav ul li img {
    width: 40%;
}

header h1 {
    color: rgb(100, 61, 61);
}

.indg-h1 {
    font-family: 'League Spartan', sans-serif;
    font-weight: 100;
    font-size: 3em;
    letter-spacing: -2px;
    padding-left: 5%;
    line-height: 55%;
}

.creat-h1 {
    font-family: 'Quicksand', sans-serif;
    text-transform: uppercase;
    font-size: 1.75em;
    letter-spacing: 12px;
    padding-right: 10%;
    font-weight: 200;
}

header nav ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    font-family: "Labrada", sans-serif;
    padding-top: 1%;
}

nav a,
main a {
    color: rgb(100, 61, 61);
}

a:hover {
    text-decoration: underline;
}

li {
    list-style-position: inside;
}

.home-logo {
    width: 5%;
}

main {
    font-family: "Labrada", sans-serif;
    padding: 2%;
}

main h2 {
    font-size: xx-large;
}

main h2,
main h3,
main h4,
main h5,
main p {
    padding: 1% 0;
}

main h2,
main h3,
main h4,
main h5,
form fieldset legend,
button input,
button,
.search label,
.select label {
    color: rgb(100, 61, 61);
}

span {
    font-style: italic;
}

footer {
    display: grid;
    grid-template-columns: 1fr;
    padding: 1rem;
    row-gap: 1.5rem;
    font-size: large;
    border-top: 5px outset rgb(100, 61, 61);
    background-color: rgb(248, 222, 181);
    color: rgb(100, 61, 61);
}

footer h3 {
    font-size: larger;
    padding: 1rem 0;
    text-align: center;
}

.footer-icons {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.footer-icons li {
    list-style-type: none;
    padding-left: 20%;
}

.footer-icons img {
    width: 70%;
}

.quick-links img {
    width: 70%;
}

.quick-links li {
    list-style-type: none;
    padding-left: 15%;
}

footer a {
    color: rgb(100, 61, 61);
}

footer>div>p {
    text-align: center;
}

footer>div>ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}