:root {
    --main-black: rgb(20, 20, 20);
    --main-white: rgb(255, 255, 255);

}

html::-webkit-scrollbar{
    display: none;
}

h1.main-title {
    margin-top: 20px;
    margin-bottom: 40px;
    font-size: 30px;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.container {
    width: 100vw;
    height: 100vh;
    background: var(--main-white);
}

/* HEADER */

header {
    position: fixed;
    padding: 20px 150px;
    width: 100%;
    height: 15vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--main-blacks);
    background-color: var(--main-white);
    transition: .6s;
}

header.sticky {
    padding: 5px 100px;
    height: 8vh;
    flex-direction: row;
    justify-content: space-between;
    box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
}

header h1 {
    margin-bottom: 40px;
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 5px;
    font-family:'Playfair Display';
}

header.sticky h1 {
    margin-bottom: 0px;
    font-size: 22px;
}

header .navbar {
    width: 50%;
}

header .navbar ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

header .navbar ul li a {
    font-size: 14px;
    letter-spacing: .1px;
    text-decoration: none;
    color: var(--main-black);
}

/* MAIN SECTION */

.main-section {
    padding: 15vh 30px 30px 30px;
    width: 100%;
    height: 100vh;
}

.main-section .main-section-photo {
    padding: 100px;
    width: 100%;
    height: 100%;
    background-image: url(images/bg-4.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* SECOND SECTION */

.second-section {
    width: 100%;
    height: 100vh;
}

/* ABOUT SECTION */

.about-section {
    padding: 15vh 30px 30px 30px;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-section .content {
    display: flex;
}

.about-section .content article {
    padding-left: 50px;
}

.about-section .content article p {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: .1px;
}

.about-section .content .photo {
    width: 150%;
}

.about-section .content .photo img {
    width: 100%;
}

/* ARTWORKS SECTION */

.artworks-section {
    padding: 15vh 30px 30px 30px;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.artworks-section .gallery {
    width: 100%;
    display: grid;
    grid-template-columns: 32% 32% 32%;
    gap: 2%;
}

.artworks-section .gallery a {
    text-decoration: none;
    color: black;
}

.artworks-section .gallery .photo {
    padding: 20px;
    height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: .5px solid gray;
    object-fit: cover;
    overflow: hidden;
}

.artworks-section .gallery .photo img {
    height: 80%;
    cursor: pointer;
    transition: .5s;
}

.artworks-section .gallery .photo h4 {
    font-size: 14px;
    text-transform: uppercase;
}

.artworks-section .gallery .photo p {
    font-size: 14px;
}

.artworks-section .gallery .photo:hover img {
    height: 85%;
}

.artworks-section .gallery .photo #sold {
    color: red;
}

.artworks-section .gallery .photo #available {
    color: black;
}

/* CONTACT SECTION */

.contact-section {
    padding: 15vh 30px 30px 30px;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-section .social-icons {
    width: 75%;
    display: grid;
    grid-template-columns: 24% 24% 24% 24%;
    gap: 3%;
    justify-content: center;
}

.contact-section .social-icons a {
    text-decoration: none;
    color: black;
}

.contact-section .social-icons .icon {
    padding: 20px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 10px;
    border: 1px solid white;
    cursor: pointer;
    transition: .2s;
}

.contact-section .social-icons .icon i {
    margin-bottom: 5px;
    font-size: 35px;
}

.contact-section .social-icons .icon h3 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: .1px;
}

.contact-section .social-icons .icon p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: .1px;
}

.contact-section .social-icons .icon:hover {
    border: 1px solid black
}

.contact-section .info-box {
    width: 75%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-section .info-box h4 {
    margin-top: 50px;
    font-size: 18px;
    text-transform: capitalize;
}

.contact-section .info-box p {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: .1px;
}

/* MEDIA */

@media (max-width: 1440px) {

    .about-section .content article {
        padding-left: 20px;
        width: 150%;
    }

    .artworks-section .gallery {
        grid-template-columns: 49% 49%;
        gap: 2%;
    }

    .contact-section .social-icons {
        width: 50%;
        grid-template-columns: 49% 49%;
        gap: 2%;
    }
}

@media (max-width: 1074px) {

    header {
        padding: 60px 40px;
        height: 10vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    header h1 {
        font-size: 26px;
        transition: .3s;
    }

    header .navbar {
        width: 100%;
    }

    header.sticky h1 {
        margin-bottom: 10px;
        font-size: 22px;
    }

    header.sticky {
        padding: 60px 40px 40px 40px;
        height: 10vh;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
    }

    .contact-section .social-icons {
        width: 75%;
        grid-template-columns: 49% 49%;
        gap: 2%;
    }
}

@media (max-width: 768px) {

    .about-section .content {
        padding: 60px 0px;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .about-section .content article {
        padding-bottom: 40px;
        padding-left: 0px;
        width: 100%;
    }

    .about-section .content .photo {
        width: 100%;
    }

    .artworks-section .gallery {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .artworks-section .gallery a {
        margin-bottom: 20px;
    }

    .artworks-section .gallery .photo img {
        height: 60%;
    }

    .contact-section {
        padding: 0 0px;
        height: 220%;
    }

    .contact-section .social-icons {
        display: flex;
        flex-direction: column;
    }
}