/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* list-style: none; */
    text-decoration: none;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: lab(88.39% 7.3 18.03);
}

h1 {
    text-align: center;
    color: #F97300;

}

button {
    padding: 10px;
    background-color: #0156D2;
    border-radius: 5px;
    border: none;
    width: 200px;
    height: 45px;
    font-size: 18px;
    color: white;
    cursor: pointer;
}

button:hover {
    background-color: #F97300;
}

/* SITE WRAPPER */
.site-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5px;
}

/* HEADER */
header {
    background-image: url("./assets/german-shepherd-puppy.jpeg");
    background-size: cover;
    background-position: center;
    border-radius: 6px;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
    /* color: white; */
}

header a {
    text-decoration: none;
    display: flex;
    align-items: center;
    color: white;
}
header span{
text-align: center;
 

 color: aliceblue;

}
header span p{
    font-size: 12px;
}
header img {
    width: 80px;
    margin-right: 15px;
}

header ul {
    display: flex;
    gap: 25px;
    padding-top: 20px;
}
header li {
    color: #F97300;
    cursor: pointer;
    list-style: none;
}

header li:hover {
    color: #F97300;
    /* border-bottom: 1px dashed white; */
}

/* HERO */
.jumbotron {
    height: 450px;
    background-color: #524C42;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 5px;
    background-image: url("./assets/pups-playing.jpeg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.jumbotron form {
    margin-bottom: 25px;
    text-align: center;
    color: white;
}

.jumbotron input {
    width: 350px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #F97300;
    margin-bottom: 10px;
}

/* ABOUT */
.about-us {
    background-color: #524C42;
    color: white;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 5px;
}

.about-us img {
    width: 350px;
    float: left;
    margin: 0 20px 10px 0;
    border-radius: 8px;
}

/* SERVICES */
.our-services {
    background-color: #524C42;
    padding: 20px;
    margin-bottom: 5px;
    border-radius: 5px;

}

.our-services h1{
    padding: 30px 0px;
}
.services {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.services > div {
    flex: 1 1 220px;
    background-color: #e0dad1;
    padding: 15px;
    border-radius: 8px;
    color: #432001;
}

.training, .breeding, .boarding-welping, .dog-daycare{
    width: 20%;
    background-color:rgb(244, 238, 231);
    border-radius: 5px;
    padding: 10px;
    text-align: center;
    font-size: larger;
}
.bullet-align-left{
    text-align: start;
 
}
/*  */
.our-services h5{
    /* font-size: 50px; */
    padding-bottom: 10px;
    font-style: italic;
    text-decoration:underline;
    /* background-color: #F97300; */
    font-size: larger;


}
.our-services h6{
        padding: 20px 0px;
        font-size: large;
        text-decoration: underline;
}

 /* p, li{
    color: white;
} */
/* GLOBAL */
/* LITTER */
.litter-section {
    background-color: #524C42;
    color: white;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 5px;
}
.litter-section h1{
    padding-bottom: 20px;
}
.litter-ad-copy {
    text-align: center;
    margin-top: 20px;
}
.litter-section li{
    list-style: none;
}
/* DOGS */
.my-adult-dogs {
    background-color: #524C42;
    border-radius: 6px;
    padding: 20px;
    color: white;
    margin-bottom: 5px;
}

.my-dogs {
    display: flex;
    gap: 30px;
    background-color: #bfb29c;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    color: #432001;
}

.kennel-dogs {
    width: 250px;
    border-radius: 6px;
}

/* CONTACT */
.contactScreen {
    background-color: #524C42;
    border-radius: 6px;
    padding: 20px;
    color: white;
    margin-bottom: 5px;
    text-align: center;

}

.contactForm {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contactForm input,
.contactForm textarea {
    width: 90%;
    max-width: 600px;
    margin: 5px 0;
    padding: 10px;
    border-radius: 5px;
    border: none;
}

/* FOOTER */
.footer {
    background-color: #524C42;
    border-radius: 6px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.footer-links {
    color: #F97300;
    margin-left: 15px;
}

.footer-links:hover {
    color: white;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    .about-us img {
        float: none;
        width: 100%;
        margin: 0 0 15px 0;
    }

    .my-dogs {
        flex-direction: column;
        align-items: center;
    }
}
