/* ==========================
   RESET
========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ==========================
   GLOBAL
========================== */

body {
    background: #000000;
    color: white;
    font-family: "IBM Plex Serif", serif;
    font-weight: 100;
    font-style: normal;
    line-height: 1.6;
}

img {
    display: block;
    width: 100%;
}

/* ==========================
   HEADER
========================== */

header {
    position: sticky;
    top: 0;
    z-index: 1000;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 1.5rem 5%;

    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);

    border-bottom: 1px solid #222;
}

header h1 {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 2px;
    
}

/* ==========================
   MENU
========================== */

.menu {
    position: relative;
    
}

.menu summary {
    list-style: none;
    cursor: crosshair;
    border: 1px solid #444;
    border-radius: 6px;
    padding: 10px 16px;
    user-select: none;
}

.menu summary::-webkit-details-marker {
    display: none;
}

.menu summary:hover {
    background: #222;
}

.menu nav {
    position: absolute;
    top: 110%;
    right: 0;

    width: 220px;

    background: #1b1b1b;
    border: 1px solid #333;
    border-radius: 6px;

    overflow: hidden;
}

.menu nav a {
    display: block;
    padding: 14px 18px;
    color: white;
    text-decoration: none;
}

.menu nav a:hover {
    background: #2a2a2a;
}

/* ==========================
   HERO
========================== */

.hero {
    text-align: left;
    padding: 5rem 1rem 4rem;
}

.hero h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
    margin-left: 10%;
}

.hero p {
    margin-left: 30%;
    color: #aaa;
    font-size: 1.1rem;
}

/* ==========================
   PHOTO FEED
========================== */

.photo-feed {
    width: 100%;
    padding-bottom: 5rem;
    /*object-fit: contain;*/
}

.photo-item {
    width: 75%;
    margin: 0 auto 4rem auto;
}

.photo-item img {
    width: 100%;
    height: 75vh;

    border-radius: 10px;

    transition: transform 0.4s ease;
    cursor: crosshair;
    /*
    width: 100%;
    height: auto;
    
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: center;
    display: block;*/
    
    object-fit: contain;
    background: black;
}
.photo-item img {
    width: 100%;
    height: 75vh;

    border-radius: 10px;

    transition: transform 0.4s ease;
    cursor: crosshair;
    /*
    width: 100%;
    height: auto;
    
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: center;
    display: block;*/
    
    object-fit: contain;
    background: black;
}



.photo-item img:hover {
    transform: scale(1.01);
}

/* ==========================
   TABLET
========================== */

@media (max-width: 1024px) {

    .photo-item {
        width: 85%;
    }

    .hero h2 {
        font-size: 2.5rem;
    }
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 768px) {

    header {
        padding: 1rem;
    }

    header h1 {
        font-size: 1.2rem;
    }

    .hero {
        padding: 3rem 1rem;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .photo-item {
        width: 95%;
        margin-bottom: 2rem;
    }

    .menu nav {
        width: 180px;
    }
}

/* ==========================
   SMALL PHONES
========================== */

@media (max-width: 480px) {

    .hero h2 {
        font-size: 1.6rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .photo-item {
        width: 100%;
        padding: 0 0.5rem;
    }
}

.about-page {
    margin-top: 20px;
    margin-bottom: 60px;
}

.about-page p{
    text-align: justify;
    text-justify: inter-word;
    margin-right: 50%;
    padding-left: 2.5%;
    color: #aaa;
}
.about-page h2{
   padding-left: 2.5%; 
}
