/* Font Styles */
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800;900&display=swap');


body{
    font-family: 'Rubik', sans-serif;
    justify-content: center;
    background: #ffffff;
}

/* Key Elements */

a {
    text-decoration: none;
    color: #21201E;
    transition: 0.3s ease-in-out;
}

h1 {
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    font-size: 100px;
    color: white;
}

h2 {
    font-family: 'Rubik', sans-serif;
    font-weight: 800;
    font-size: 50px;
    text-transform: uppercase;
    color: black;
}

h3 {
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    font-size: 30px;
    color: black;
}

.bodyCopy {
    font-size: 20px;
    line-height: 30px;
}

.btn:hover {
    transition: .3s ease-in-out;
}

.homeButton {
    width: 150px;
    height: auto;

    background-color: #ffc349;
    border-radius: 30px;

    padding: 20px;
    text-align: center;
    font-family: 'Rubik', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: black; 
}

.homeButton:hover {
    background-color: #000000;
    color: white; 
}

strong {
    font-weight: 800;
    color: red;
}



/* ****** Header ****** */
.header {
    width: 100%;
    height: 100%;

    background-image: url("../images/work/hero.png");
    background-size: cover;
    background-repeat: no-repeat;
}

.headerContents{
    width: 100%;
    display: flex;
    justify-content: space-around;
    position: fixed;
    z-index: 1000;
}

.menu-list {
    display: flex;
    gap: 20px;
    margin-top: 52px;
}

.menu-item a:hover {
    color:red;
    font-size: 18px;
    font-weight: 500;
    transition: .1s ease-in;
}

.jlo-logo {
    height: 120px;
    width: auto;
}

.social-media {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-media a:hover {
    color:red;
    font-size: 18px;
    font-weight: 500;
    transition: .1s ease-in;
}

.hicon {
    height: 22px;
    width: 22px;
}

/* HERO TEXTS */
.heroCont {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

 .heroElements {
    text-align: center;
    margin-top: 40vh;
    text-shadow: 0px 0px 100px black;
}

  /* ***** END OF HEADER ***** */

  /* ******** COLLECTIONS ********* */
.collectionsSec {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.col {
    margin-top: 100px;
}

/* Branding */
.brandWrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;

    margin-top: 50px;
}

.bproj {
    width: 700px;
    display: flex;
    justify-content: center;
    align-items: center;

    background-color: #F7F7F7;
}

.thumbnailCont {
    width: 50%;
    padding: 20px;
}

.projDesc {
    width: 50%;
    padding: 20px;
    text-align: left;
}

.thumbnail {
    width: 100%;

}

/* Photography */
.photoGrid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);

    margin: auto;
    margin-top: 50px;
    gap: 1vw;

}

.item {
    width: 100%;
    filter: brightness(.4);
}

.item:hover {
    filter: brightness(1);
    transition: .3s;
}

.photo2 {
    width: auto;
    height: 100%;
}

.photo5 {
    grid-column: 1/3;
}

.photo6 {
    grid-column: 3/5;
}

/* ******** FOOTER ******* */

.footerSec {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;

    padding: 10px 0px 10px 0px;
    margin-top: 100px;
    width: 100%;
    bottom: 0;

    background-image: url("../images/footer.png");
    background-size: cover;
    background-repeat: no-repeat;
}

.socialMediaList {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3vw;
}

.socialMediaList a:hover {
    display: flex;
    gap: 3vw;
    color: red;
}