
::before,
::after {
  box-sizing: border-box;
}


/* Main Building Blocks */
nav {
	display: grid;
	top: 0;
	width: 100%;
	margin: 0;
	padding: 0;
	overflow: hidden;
	position: relative;
	gap: 0;
	height: 100%;
	box-shadow: 0 0 5px #b4b097;
    background-color:#0003b3;
}

body {
	display: grid;
	width: 100%;
	background-color: #E0DFD5;
	margin: 0;
    font-family: 'Noto Sans Display', "sans-serif";



}
main {
	gap: 1rem;
}

section {
	display: grid;
	gap: 1rem; 
	padding: 1rem;
	justify-content: center;
	text-align: center;
	align-items: center;
	margin-left: 4rem;
	margin-right: 4rem;
	margin-top: 1rem;
	margin-bottom: 1rem;
	
	
}


/* Section Styles */

#Gallery {
	width: 100%;
	min-height: 500px;
	margin: 0;
	padding: 0;
    box-shadow: 0 0 2px #b4b097;
	background-color: #e9e9e2;
}
#About, #Experience, #Projects {
	    min-height: 500px;
	    border-radius: 15px;
        box-shadow: 0 0 2px #b4b097;
		background-color: #e9e9e2;
		
}

/* Content Styles */
.header {
    min-width: 300px;
	padding: 0;
    margin: 0;

}

.navlinks {
	padding:0;
	margin: 0;
    display: grid;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.navlinks a {
    transition: background-color .5s;
    padding: 15px;
    border-radius: 50px;
	margin: 5px;
    text-align: center;

   
}
.profilephoto {
    min-width: 305px;
	max-width: 500px;

}
.description {
	width: 100%;
}
.expdescription {
	width: 100%;
}
.prodescription {
	width: 100%;
}
.resume {

    box-shadow: 0 0 2px #071108;
    border-radius: 15px;
    background-color: #071108;


}

/* Content Blocks */

.skill-list,
.projectcontent,
.resume {
    max-width: 100%;
    min-width: 200px;
    padding: 2rem;
    box-sizing: border-box;
    overflow-x: auto;
}
.skill-list{
    
    display: flex;
    flex-direction: column;
	height: 320px;
    color:#E4B363;
    font-weight: bolder;
    font-size: 20px;
    align-items: center;
    justify-content: center;
    background-color: #071108;
    border-radius: 15px;
    box-shadow: 0 0 2px #071108;
}


.projectcontent {
    
	height: 320px;
    display: flex;
	justify-content: center;
    flex-direction: column;
    color:#E4B363;
    font-weight: bolder;
    font-size: 20px;
    background-color: #071108;
    border-radius: 15px;
    align-items: center;
    justify-content: center;

    box-shadow: 0 0 2px #071108;
}


/* Footer styles */

    footer a {

        margin: 10px;
        padding: 10px;
        border-radius: 50px;
		background-color: #b4b097;
        max-height: 48px;

	
    }

    .social-logo {
        width: 48px;

    }
    footer {
        display:flex;
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
        height: auto;
        margin-bottom: 1rem;
        justify-content: center;
        align-items: center;
	

    }

/*class empty styling blocks*/

    /* Footer Styling Container */
    .border-footer {
        display: flex;
        width: 100%;
        margin-top: 15px;

    }
    /* Footer Styling Left, Right, bottom, and top spacing */
    .border-left, .border-right {
        width: 15px;
        padding: 15px;

    }

    .bottom-footer {
        width: 100%;
        padding-top: 5px;

    }
    .footer-top {
        width: 100%;
        border-top: solid #0003b3;

}


/* All Image Styles */

#underconstruction {
	max-width: 300px;
	padding-top: 2rem;

}

#profile {
	width: 100%;
    border-radius: 100%;
    clip-path: circle(40%);

}

#pinklogo {
    min-width: 40px;
    margin: 0;
	padding: 0;
    max-height: 100px;
    transition: transform 3s;
	padding-left: 20px;
}

#resumepreview {
    width: 100%;
    border-radius: 15px;
    border: solid #0003b3;

}


/* Text Styles */

h1 {
    max-height: 100%;
    width: 260px;
	text-align: center;
	padding: 1rem;
	padding-top: 2.5rem;
	padding-bottom: 2.5rem;
    border-radius: 50px;
    background-color:#0004e6;
    font-weight: bold;
    color: #f59be2;
    margin: 0;

    } 
	
 h2 {
    color: #c293d2;

    }
h3 {
     color: #E4B363;

    }
a {
    font-weight: bolder;
    color: #f59be2;
    text-decoration: none;

    }
p {
    color: #071108;

    }
ul {
    padding-left: 0;
    }
li {
    list-style: none;
    background-color: #0004e6;
    border-radius: 50px;
    padding: 10px;
}
a:focus {
    outline: 2px solid #f59be2;
    outline-offset: 2px;
}
h3, p, a, li {
    font-size: 1.125rem; /* 18px */
    margin: 0.5rem 0;
}
.navlinks a:hover {
    background-color:#0004e6;

}


/*media queries for responsive design*/
    
@media (min-width: 768px) {

	.navlinks {
		grid-template-columns: 1fr 1fr 1fr 1fr;
		gap: 0;
		justify-content: end;

	}
	nav {
		grid-template-columns: 1fr 2fr;
	}
	#Gallery {
		grid-template-columns: 1fr;
	}
	#About {
	grid-template-columns: 1fr 2fr;
		}
	#Experience {
		grid-template-columns: 2fr 1fr;
	}

	#Projects {
		grid-template-columns: 1fr 1fr 2fr;
	}
	.header{
		display: flex;
		justify-content: left;

	}

}

@media (max-width: 768px) {
	.header{
		display: flex;
		flex-direction: row;
		align-items: center;
		width: 100%;

	}
	#pinklogo {
		max-width: 80px;
		max-height: 80px;
		padding-left: 0;
		flex-shrink: 0;
	
	}
    #About {
        gap: 0;
    }
    #profile {
        max-width: 200px;
    }
	h1 {
		padding: 0.5rem;
		font-size: 1.2rem;
		flex-shrink: 1;
	}
    h2 {
        font-size: 1.2rem;
    }
     h3, p, a, li {
    font-size: 1rem;
  }

	section {
        margin-left: 0.5rem;
        margin-right: 0.5rem;
        padding: 0.5rem;
    }
    .profilephoto,
    .description,
    .expdescription,
    .prodescription,
    .resume {
        min-width: 0;
        max-width: 100%;
    }
    #Projects {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem; /* Optional: space between columns */
        align-items: flex-start;
    }
    #Projects .skill-list,
    #Projects .projectcontent {
        flex: 1 1 0;
        min-width: 0;
        max-width: 50%;
        padding: 1rem;
        box-sizing: border-box;
    }
    #Projects .prodescription {
        flex-basis: 100%;

    }

}