* {
    margin: 0;
    padding: 0;
    font-family: 'Be Vietnam Pro', sans-serif;
    cursor: url('./IMAGES/cursor.svg'), auto;
}

.header-portfolio {
    min-height: 0vh;
    width: 100%;
    background-color: #1f1f1f;
    position: relative;
}

/* NAV */
nav {
    display: flex;
    padding: 1% 1%;
    justify-content: space-between;
    align-content: center;
    background-color: #333;
}

nav img {
    width: 80px;
    margin-left: 20px;
}

.nav-links {
    flex: 1;
    text-align: center;
}

.nav-links ul li {
    list-style: none;
    display: inline-block;
    padding: 10px 10px;
    position: relative;
}

.nav-links ul li a {
    color: #ffffff;
    text-decoration: none;
}

.nav-links ul li::after {
    content: '';
    width: 0%;
    height: 2px;
    background-color: #ffb6c1;
    display: block;
    margin: auto;
    transition: 0.5s;
}

.nav-links ul li:hover::after {
    width: 100%;
}

/* ICONS */
nav .fa {
    display: none;
}

a {
    color: salmon;
    text-decoration: none;
}

a:hover {
    color: lightpink;
}

/* TEXT */
h1 {
    font-size: 62px;
    font-weight: bold;
    color: lightcoral;
    text-align: center;
    align-items: center;
}

p {
    margin: 10px 0 40px;
    font-size: 18px;
    color: rgb(255, 228, 232);
    align-items: center;
    text-align: center;
}

/* GALLERY ROW */
.photo-gallery {
    position: relative;
    align-items: center;
    padding: 5%;
    background-image: linear-gradient(rgba(31, 31, 31, 1), rgba(51, 51, 51, 0.7)),
        url(./IMAGES/Background/background.png);
    background-position: center;
    background-size: cover;
}

.photo-gallery img {
    height: 450px;
    width: 450px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.4);
}

.gallery-row {
    margin-top: 1%;
    display: flex;
    justify-content: space-evenly;
    padding: 10px;
}

/* GALLERY ROW - Portfolio page*/
.photo-gallery-p {
    position: relative;
    align-items: center;
    padding: 5%;
    background-color: #1f1f1f;
}

.photo-gallery-p img {
    height: 450px;
    width: 450px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.4);
}

/* Photography Gallery */
.photography-gallery {
    position: relative;
    align-items: center;
    padding: 5%;
    background-color: #1f1f1f;
}

.photography-gallery img {
    height: 300px;
    width: 300px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.4);
}

/* Photography Gallery - NONE SQUARE PHOTOS ONLY*/

.image-container {
    width: 300px;
    height: 300px;
    overflow: hidden;
    display: inline-block;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.4);
}

.image-container img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/*Scrolling Buttons*/

.scrolling {
    position: relative;
    align-items: center;
}

/* IMAGE TAGS */
.image-tag {
    margin-top: 5px;
    text-align: center;
    opacity: 1;
}

/* IMAGE TAGS HOVER ANIMATIONS */
.image-tag::after {
    content: '';
    width: 0%;
    height: 2px;
    background-color: #ffb5c0;
    display: block;
    margin: auto;
    transition: 0.5s;
}

.image-tag:hover:after {
    width: 60%;
}

.image-tag:hover {
    color: #ffb5c0;
}









/* Styles for phone resolutions */

@media (max-width: 700px) {


    .gallery-row {
        flex-direction: column;
        gap: 20px;
    }

    .gallery-row a {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .gallery-row a img {
        width: 85%;
        height: auto;
    }

    .image-tag {
        margin-top: 10px;
    }

    /* NAVIGATION LINKS */
    .nav-links ul li {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        background-color: rgba(51, 51, 51, 0.8);
        backdrop-filter: blur(5px);
        box-shadow: 0 2px 4px rgba(10, 0, 0, 0.2);
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }

    nav .fa {
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }

    .nav-links ul {
        padding: 30px;
    }

    h1 {
        font-size: 35px;
    }

    p {
        font-size: 14px;
    }
}