* {
    box-sizing: border-box;
}
body {
    font-family: "Open Sans", sans-serif;
    color: rgb(56, 56, 56);
    font-size: 16px;
    line-height: 1.5em;
    font-weight: 400;
    margin: 0;
}
p, ul, ol, h1, h2, h3, h4, h5, h6, div {
    margin: 0;
    line-height: 1.5em;
}
div.wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
h1, h2, h3, h4, h5, h6 {
    line-height: 1.25em;
}
a.btn {
    display: inline-block;
    width: auto;
    color: #F8971D;
    font-size: 1.5em;
    font-weight: 700;
    text-decoration: none;
    padding: 0.5em 1.5em;
    transition: 0.5s;
}
a.btn:hover {
    background-color: #F8971D;
    transition: 0.5s;
    color: white;
}

/* HEADER Styles */
/* HEADER Styles */
/* HEADER Styles */
header, footer {
    background-color: #F8971D;
    color: #091178;
}
header div.wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}
nav ul {
    display: flex;
    flex-direction: row;
    list-style: none;
    gap: 40px;
    margin-top: 0.375em;
}
nav a:link, nav a:visited {
    color: white;
    text-decoration: none;
    font-weight: 700;
    transition: 0.5s;
}
nav a:hover {
    color: rgb(255, 243, 79);
    transition: 0.5s;
}

p.name {
    font-weight: 900;
    font-size: 2.25rem;
    line-height: 1.75em;
    color:white;
}

/* HERO Styles */
/* HERO Styles */
/* HERO Styles */
#hero {
    min-height: 600px;
    background-color: #d8d8d8;
    background-image: url('assets/background-pattern.png'); 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
    
#hero h1 {
    font-size: 3em;
    margin-bottom: 0.5em;
    color: #F8971D;
}
#hero p {
    font-size: 1.5em;
    margin-bottom: 0.5em;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 1.5em;
}

/* ABOUT Section */
/* ABOUT Section */
/* ABOUT Section */
#about {
    background-color: #d8d8d8;
}
#about div.wrapper {
    display: flex;
    flex-direction: row;
    gap: 40px;
    padding: 120px 0;
}
div.about-left {
    width: 50%;
    width: calc(50% - 20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}
div.about-left img {
    width: 67%;
}
div.about-right {
    width: 50%;
    width: calc(50% - 20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
div.about-right h2 {
    color: white;
    background-color: #F8971D;
    padding: 4px;
}

/* GALLERY Section*/
/* GALLERY Section*/
/* GALLERY Section*/
#gallery {
    min-height: 200px;
}
#gallery div.wrapper {
    padding: 80px 20px;
}
#gallery h2 {
    color: white;
    background-color: #F8971D;
    text-align: center;
    padding: 4px;
    margin-bottom: 1em;
}
div.gallery {
    display: flex;
    flex-direction: row;
    gap: 40px;
}
div.gallery a {
    width: 25%;
}
div.gallery img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* INSPO Section*/
/* INSPO Section*/
/* INSPO Section*/
#inspo {
    background-color: #F8971D;
    color: white;
    padding: 0;
    text-align: center;
    background-image: url(#);
    background-size: 300px, 300px;
    background-repeat: no-repeat;
    padding: 120px 20px;
}
p.quote {
    font-size: 4em;
    margin-bottom: 1em;
    font-style: italic;
    letter-spacing: 0.1em;
    font-weight: 100;
}
p.credit {
    font-size: 1em;
    font-weight: 700;
    color: white;  
}


/* PROJECT Styles*/
/* PROJECT Styles*/
/* PROJECT Styles*/
#projects {
    padding: 96px 40px;
}
#projects h2 {
    color: white;
    background-color: #F8971D;
    padding: 4px;
    text-align: center;
    margin-bottom: 1em;
}
div.cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.card {
    display: flex;
    flex-direction: row;
}
.card img {
    width: 50%;
    object-fit: cover;
}
div.card-text {
    background-color: #F8971D;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}
a.card {
    scale: 1;
    transition: 0.25s;
    color: rgb(56, 56, 56);
    text-decoration: none;
}
a.card:hover {
    scale: 1.05;
    transition: 0.25s;
}
div.card-text h4 {
    font-size:1.5em;
    margin-bottom: 0.5em;
    color: white;
}

/** FOOTER Styles **/
/** FOOTER Styles **/
/** FOOTER Styles **/
footer {
    background-color: #F8971D;
    color: #091178;
    padding: 10px 0 30px;
}
footer div.wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}
div.social {
    display: flex;
    flex-direction: row;
    gap: 48px;
}
.social a img {
    width: 48px;
}
footer div.footer-bottom {
    align-items: flex-end;
    padding-top: 20px;
}
.social a:hover {
    opacity: 0.8;
}

/************ MEDIA QUERIES ************/
/************     A.K.A.    ************/
/************ MOBILE STYLES ************/

@media only screen and (max-width:1000px) {
    div.gallery {
    flex-direction: row;
    flex-wrap: wrap;
}
div.gallery img {
    height: 14rem;
    width: 80%;
}
p.quote {
    font-size: 3em;
}
p.name {
    font-size: 2rem;
}
.social a img {
    width: 2em;
}
}

 @media only screen and (max-width:760px) {
    #hero {
        background-size: 50%;
    }
  }


@media only screen and (max-width:480px) {
    body {
    font-size: 0.75rem;
    }
    #about div.wrapper {
    flex-direction: column;
    align-items: center;
    flex-wrap: nowrap;
}
    div.gallery {
    flex-direction: column;
    align-items: center;
}
div.gallery img {
    height: 10rem;
    width: 100%;
}
p.quote {
    font-size: 2em;
}
p.name {
    font-size: 1rem;
}
}