body{
    margin:0;
    padding:0;
    font-family:Arial, Helvetica, sans-serif;
    line-height:1.5em;
    background-color: #242424;
}
 
#site_wrap{
    min-height: 100vh;
    background-color: #242424;
    display: grid;
    grid-template-columns: 1fr repeat(4, minmax(0, 400px)) 1fr;
    grid-gap: 0px;
    grid-template-rows: 144px auto; 
    grid-template-areas:
        ". header header header header ."
        "content content content content content content";
}

.header{
    background-color: #242424;
    grid-area:header;
    display:flex;
    align-items:center;
    justify-content:space-between;
    position: relative;
    z-index: 10;
}
.header .logo{
    width:110px;
     
}
.header .nav{
    list-style:none;
    padding:0;
    display:flex;
}
.header .nav a{
    text-decoration:none;
    border: 2px solid #b2b2b2;
    border-radius:50em;
    color: #b2b2b2;
    padding:15px 30px;
    margin:0 8px;
    text-transform:uppercase;
    font-weight:bold;
    display:inline-block;
    
}
.header .nav a:hover, .header .nav .active{
    background-color:#b2b2b2;
    color:#242424;
}
.content{
    background-image:url('images/Content@2x.jpg');
    grid-area:content;
    background-size: cover;
    background-position-x: center;
     
}



@media screen and (max-width:480px){
        #site_wrap {
        grid-template-columns: 1fr;
        grid-template-rows: min-content auto; 
        grid-template-areas:
            "header"
            "content";
        
    }

    .header {
        flex-direction: column; 
        padding: 10px;
        gap: 10px;
        width: 100%;
    }

    .header .nav {
        flex-direction: row; 
        flex-wrap: wrap; 
        justify-content: center;
        gap: 5px;
    }

    .header .nav a {
        padding: 8px 15px; 
        font-size: 0.8rem;
        margin: 2px;
    }

    
    .content {
        padding: 20px 10px; 
    }
    
    
    .content.gallery-grid, 
    .content.gallery-grid-bw {
        grid-template-columns: 1fr; 
        gap: 10px;
    }
}

/* bio- about page content styles=================================================== */
.content.bio-page {
    background-image: none; 
    background-color: #242424; 
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;    
    text-align: center;      
    padding: 40px 20px;
}


.bio-text {
    color: rgba(255, 255, 255, 0.85); 
    font-style: italic;
    font-size: 1.2rem;
    max-width: 700px;
    line-height: 1.6;
    margin-bottom: 30px; 
}


.contact-info {
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    font-size: 1.2rem;       
    line-height: 1.6;        
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 20px;
    width: 100%;
    max-width: 700px;
}

/* 4x5 page styles ============================================================= */
.gallery-vertical{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 60px 20px;
    background-color: #242424;
    background-image: none;
    min-height: auto; 
    width: 100%; 
}

.photo-item {
    position: relative;
    width: 100%; 
    max-width: 1000px; 
    margin: auto; 
} 
.photo-item img {
    width: 100%; 
    height: auto; 
    display: block; 
    object-fit: cover;
}
.photo-item img {
    aspect-ratio:auto; 
}


.photo-label {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    font-size: 0.9rem;
    text-align: center;
    letter-spacing: 1px;
}

/* Color photos grid styles =================================================== */
.content.gallery-grid {
    background-image: none;
    background-color: #242424;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;             
    padding: 60px 20px;
    min-height: auto;
    width: 100%;
    max-width: 1400px;      
    margin: 0 auto;
}


.content.gallery-grid .photo-item {
    max-width: none;      
    width: 100%;
}

.content.gallery-grid .photo-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}


@media screen and (max-width: 480px) {
    .content.gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Black & White photos grid styles ============================================ */
.content.gallery-grid-bw {
    background-image: none;
    background-color: #242424;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 60px 20px;
    min-height: auto;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.content.gallery-grid-bw .photo-item {
    max-width: none;
    width: 100%;
}

.content.gallery-grid-bw .photo-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border: 1px solid #ffffff;
}

@media screen and (max-width: 480px) {
    .content.gallery-grid-bw {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}