/* Website Design Project */



/* ------------------------------ LOGO ------------------------------ */
.logo{
    color:#2c5f2d;
    font-family: "Playfair Display";
        font-weight: bold;
        font-size: 18px;
    padding: 14px 16px;
}

/* ----------------------------- NAV BAR ---------------------------- */
/* ---------------------- nav bar location */
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
/* ----------------------nav bar items align right */
ul li {
    float: right;
}
/* ---------------------- nav bar item styling */
ul li a {
    font-family: "Playfair Display";
    display: block;
    color: #3a4149;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}
/* ---------------------- nav bar item hover effect */
ul li a:hover {
    color: #b8945f; 
    text-decoration: underline;
    font-weight: bold;
}
/* ---------------------- nav bar container */
#nav_bar {
    background-color: white;
    padding: 16px 72px;
    border-bottom: 2px solid #b8945f;
}

/* ----------------------------- BODY ---------------------------- */
#banner {
    max-width: fit-content;
    margin:auto;
    object-position: center;
}

h1{
    text-align: center;
    font-family: "Playfair Display";
        font-size: 45px;
        font-weight: bold;
        font-style: normal;
    color:#2c5f2d;
}

#intro_blurb {
    padding-top: 30px;
    padding-bottom: 30px;
    width: 600px;
    margin:auto;
    h2{
        text-align: center;
        font: size 20px;
        font-weight: bold;
    }

    h3{
        text-align: center;
        font-size: larger;
        font-weight: normal;
    }
}

body {
    color: #3a4149;
    font-family:'Lora'; 
    background-color: #faf8f3;
}

#search-bar-filler{
    text-align: right;
    color: red;
}

/* ---------------------------- GALLERY ----------------------------- */
#gallery_header{
    font-family: 'Playfair Display';
    padding-top: 30px;
    text-align: center;
}

.gallery{
    display:flex;
    max-width: width 1100px;
    margin:auto;
    justify-content: center;
}
/* ---------------------- gallery background */
#gallery_section{
    background-color: white;
}

/* ---------------------- gallery container */
div.gallery {
    display: flex;
    flex-wrap: wrap;
    max-width: 1100px;
    font-family: 'Lora';
        font-weight: bold;
}

/* ---------------------- gallery item specifications */
div.gallery_item {
    margin: 5px;
    width: 250px;
}

/* ---------------------- gallery image sizing */
div.gallery_item img{
    width: 100%;
    height: auto;
}

/* ---------------------- gallery image descriptions */
div.gallery_item div.desc {
    padding: 15px;
    text-align: center;
}

/* ---------------------------- BUTTONS -------------------------------- */
div.button_links{
    display:flex;
    margin:auto;
    gap: 10px;
    text-align: center;   
    padding-bottom: 30px;
    justify-content: center;
}
#animals_button{
    background-color:#2c5f2d;
    color:#faf8f3;
    font-size: 16px;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
}
#donate_button{
    background-color:#b8945f;
    color:#faf8f3;
    font-size: 16px;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
}

div.see_more{
    display: flex;
    margin: auto;
    text-align: center;
    justify-content: center;
    padding-top: 40px;
    padding-bottom: 40px;
}
#see_more_button{
    background-color:#2c5f2d;
    color:#faf8f3;
    font-size: 16px;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
}


/* FOOTER --------------------------------------------------------- */
#footer-content{
    background-color: #2c5f2d;
    color:#faf8f3;
    padding: 32px;
}

#copyright{
    text-align: center;
}