@charset "UTF-8";

/* DEFINE FONT HERE */
@font-face {
    font-family: 'SF-Pro';
    src: url('Fonts/SF-Pro.ttf') format('truetype');
    /* Add additional font formats (e.g., woff, woff2) for cross-browser compatibility */
}

/* <----------------------------------------------> */


/* ENTIRE PAGE BODY EDIT */
body {
    color: #1e1e1e;
    font-family: 'SF-Pro', 'Helvetica', sans-serif; /* Use custom font 'SF-Pro', fallback to 'Helvetica', then generic sans-serif */
    background: #1e1e1e;
    margin: 0;
    padding: 0;
    letter-spacing: 0px;
}



.header {
 	margin-top: 0px;
		display: flex;
	flex-direction: column;
    align-items: center;
    justify-content: center;
}



.namesplash {
    font-size: 30px;
    font-weight: 200;
    text-align: left;
    padding-left: 0px;
    padding-top: 50px;
    margin-top: -30px;
    margin-bottom: 0px;

    transition: font-size 0.5s ease, font-weight 2.0s ease, width 3.0s ease, height 3.0s ease, border-radius 3.0s ease, background-color 0.3s ease, color 0.3s ease, text-shadow 0.5s ease;
}



.namesplash:hover {
    color: #FFFFFF;
    font-weight: bolder;
    justify-content: flex-end;
    text-shadow: 0 0 12px rgba(255, 255, 255, 1.0); /* This adds a white glow effect to the text */
}



.tagline {
    font-size: 25px;
    font-weight: lighter;
	color: white;
	margin-top: -60px;
}


/* <----------------------------------------------> */





/* <--- DISH --------------------------------------> */


.dish {
	background-color: #333333;
	border-radius: 30px;
	width: 300px;
	height: 100px;
	margin-top: 0px;
	padding-top: 0px;
	padding-bottom: 30px;
	padding-left: 17px;
	outline: #484848;
	outline-width: 2px;
	outline-style: solid;

		
	display: flex;
	flex-direction: column;
    align-items: center;
    justify-content: center;
		
	margin: 0 auto; /* Center horizontally */
	margin-bottom: 30px;
}



.minicontainer {
    width: 55px;
    height: 55px;
    background-color: #434343;
    border-radius: 15px; /* Initial rounded square shape */
    transition: width 2.0s ease, height 2.0s ease, border-radius 2.0s ease, background-color 0.5s ease, color 0.3s ease, letter-spacing 1.5s ease;
    display: inline-block; /* Display containers inline */
    cursor: pointer;
    position: relative; /* Position relative for absolute positioning of text */
    
	margin-right: 23px; /* Adjust margin between containers */
    margin-top: 30px;
	margin-left: px;
	margin-bottom: 0px;	
}



.minicontainer:hover {
    width: 100px; /* Width remains the same */
    height: 100px; /* Height remains the same */
    border-radius: 50%; /* Transform into a circle */
    background-color: white;
    color: white; /* Change text color to black on hover */
	letter-spacing: 0;
}



.minicontainer a {
    text-decoration: none; /* Remove underline from anchor */
    color: #808080; /* Inherit text color from parent */
    font-weight: 500;
	
	display: flex;
	flex-direction: column;
    align-items: center;
    justify-content: center;
	
         
	padding-bottom: 80px;
	margin-top: 4px;
}



.minicontainer p {
    text-decoration: none; /* Remove underline from anchor */
    color: #808080; /* Inherit text color from parent */
    font-weight: 500;
	margin-top: -100px;
	
	display: flex;
	flex-direction: column;
    align-items: center;
    justify-content: center;
	height: 10vh;
	
	font-size: 15px;
}
 


.currentmini p {
	color: white;
}



.minicontainer img {
	width: 50px;
}


/* <-----------------------------------------------> */





/* <--- LIST STYLING -----------------------------> */


ul {
    align-content: left;
    padding-top: 280px;
    font-size: 70px;
}

li {
    background-color: #101010;
    border-radius: 30px;
    margin: 20px 20px;
    align-items: left;
    display: inline;
    list-style: none;
    padding: 60px;
}

a {
    text-decoration: none;
    color: #FFFFFF;
}



h2 {
    font-weight: 400;
}


/* <-----------------------------------------------> */





/* <---- PROJECT CONTAINERS -----------------------> */


.container-wrapper {
    display: flex;
    flex-direction: column; /* Stack containers vertically */
    justify-content: center; /* Center containers vertically */
    align-items: center; /* Center containers horizontally */
    flex-wrap: nowrap; /* Prevent wrapping */
    height: auto; /* Adjust height to the content */
    margin: auto; /* Center the wrapper vertically and horizontally */
    padding-top: 0px; /* Add some padding if needed */
}


/* CONTAINER EDITING */
.container {
    width: 600px;
    height: 400px;
	
    background-color: transparent;
    border-radius: 30px; /* Corner Roundness */
    transition: width 0.5s ease, height 0.5s ease, border-radius 0.5s ease, box-shadow 0.3s ease, background-color 0.5s ease, color 0.3s ease;
	
    cursor: pointer;
    position: relative; /* Position relative for absolute positioning of text */
    margin-right: 20px; /* Adjust margin between containers */
    margin-top: 60px;
    margin-left: 50px;
    overflow: hidden; /* Hide overflowing content */
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3); /* Add a drop shadow on hover */
}



.container:hover {
    width: 575px; /* Width While Hovering */
    height: 400px; /* Height While Hovering */
    border-radius: 35px; /* Corner Roundness While Hovering */
    box-shadow: 5px 4px 15px rgba(0, 0, 0, 0.3); /* Add a drop shadow on hover */
}







.container a {
    text-decoration: none; /* Remove Underline */
    color: inherit; /* Inherit text color from parent */
    font-size: 60px; /* Adjust font size as needed */
    font-weight: normal;
    text-align: center;
    position: absolute; /* Position text absolutely inside the container */
    top: 50%; /* Center text vertically */
    left: 50%; /* Center text horizontally */
    transform: translate(-50%, -50%); /* Center text using translate */
    z-index: 1; /* Ensure text appears above background */
}





.text-wrapper {
    display: flex;
    justify-content: space-between;
    width: 580px; 
    padding: 10px 0;
    margin-top: 15px;
}

.project-title {
    font-size: 25px;
    font-weight: bold;
    color: white; /* Adjust color as needed */
}

.project-description {
    font-size: 20px;
    color: white; /* Adjust color as needed */
}





















/* EXTRA SMALL DEVICES */
/* EXTRA SMALL DEVICES */
/* EXTRA SMALL DEVICES */
/* EXTRA SMALL DEVICES */
/* EXTRA SMALL DEVICES */
@media only screen and (max-width: 450px) {
	.header {
 		margin-top: 0px;
		display: flex;
	flex-direction: column;
    align-items: center;
    justify-content: center;
	
}
	
	
   .namesplash {
       font-size: 22px; /* Adjust font size for smaller screens */
       margin-left: 0px;
	   color: #FFFFFF;
	   margin-top: 0px;
	   margin-bottom: 40px;
	   font-weight: 200;


    }





   .tagline {
        font-size: 18px; /* Adjust font size for smaller screens */
		margin-top: -70px;
	   font-weight: light;
	   
    }
	
	
	
	
		.dish {
		background-color: #333333;
		border-radius: 30px;
		width: 300px;
		height: 100px;
		margin-top: -40px;
margin-bottom: 50px;
		padding-top: 0px;
		padding-bottom: 30px;
		padding-left: 17px;
		outline: #484848;
		outline-width: 4px;
		outline-style: solid;

		
	display: flex;
	flex-direction: column;
    align-items: center;
    justify-content: center;
		


		
	}
	

	
	


    ul {
        font-size: 40px; /* Adjust font size for smaller screens */
        padding-top: 180px; /* Adjust padding top for smaller screens */
    }

    li {
        padding: 40px; /* Adjust padding for list items on smaller screens */
    }


	
	
	.container-wrapper {
    display: flex;
    flex-direction: column; /* Stack containers vertically */
    justify-content: center; /* Center containers vertically */
    align-items: center; /* Center containers horizontally */
    flex-wrap: nowrap; /* Prevent wrapping */
    height: auto; /* Adjust height to the content */
    margin: auto; /* Center the wrapper vertically and horizontally */
    padding-top: 0px; /* Add some padding if needed */
		margin-top: -40px;
}
	
	
	
	
	

    .container {
        width: 350px; /* Adjust width for smaller screens */
        height: 250px; /* Allow height to adjust based on content */
        margin-left: 5%; /* Center the container */
        margin-right: 5%; /* Center the container */
    }

	    .container img {
        width: 510px; /* Adjust width for smaller screens */
        height: 350px; /* Allow height to adjust based on content */

    }
	
	
    .container a {
        font-size: 30px; /* Adjust font size for links */
    }


.container:hover {
	width: 400px; /* Width remains the same */
    height: 300px; /* Height remains the same */
    border-radius: 35px; /* Transform into a circle */
    box-shadow: 5px 4px 15px rgba(0, 0, 0, 0.3); /* Add a drop shadow on hover */
}
	
	.text-wrapper {
    display: flex;
    justify-content: space-between;
    width: 340px; 
    padding: 10px 0;
    margin-top: 10px;
}

.project-title {
    font-size: 16px;
    font-weight: bold;
    color: white; /* Adjust color as needed */
}

.project-description {
    font-size: 15px;
    color: white; /* Adjust color as needed */
}
	
}




/* ORIGINAL MEDIA QUERY */
/* SMALL DEVICES */
/* SMALL DEVICES */
/* SMALL DEVICES */
/* SMALL DEVICES */
/* SMALL DEVICES */
@media only screen and (min-width: 451px) and (max-width: 600px) {

	
	.header {
 		margin-top: 0px;
		display: flex;
	flex-direction: column;
    align-items: center;
    justify-content: center;
	
}
	
	
   .namesplash {
       font-size: 25px; /* Adjust font size for smaller screens */
       margin-left: 0px;
	   color: #FFFFFF;
	   margin-top: 0px;
	   margin-bottom: 40px;
	   font-weight: 200;


    }





   .tagline {
        font-size: 18px; /* Adjust font size for smaller screens */
		margin-top: -70px;
	   font-weight: light;
	   
    }
	
	
	
	
		.dish {
		background-color: #333333;
		border-radius: 30px;
		width: 300px;
		height: 100px;
		margin-top: -40px;
margin-bottom: 50px;
		padding-top: 0px;
		padding-bottom: 30px;
		padding-left: 17px;
		outline: #484848;
		outline-width: 2px;
		outline-style: solid;

		
	display: flex;
	flex-direction: column;
    align-items: center;
    justify-content: center;
		


		
	}
	

	
	


    ul {
        font-size: 40px; /* Adjust font size for smaller screens */
        padding-top: 180px; /* Adjust padding top for smaller screens */
    }

    li {
        padding: 40px; /* Adjust padding for list items on smaller screens */
    }


	
	
	.container-wrapper {
    display: flex;
    flex-direction: column; /* Stack containers vertically */
    justify-content: center; /* Center containers vertically */
    align-items: center; /* Center containers horizontally */
    flex-wrap: nowrap; /* Prevent wrapping */
    height: auto; /* Adjust height to the content */
    margin: auto; /* Center the wrapper vertically and horizontally */
    padding-top: 0px; /* Add some padding if needed */
		margin-top: -40px;
}
	
	
	
	
	

    .container {
        width: 400px; /* Adjust width for smaller screens */
        height: 300px; /* Allow height to adjust based on content */
        margin-left: 5%; /* Center the container */
        margin-right: 5%; /* Center the container */
    }

	    .container img {
        width: 510px; /* Adjust width for smaller screens */
        height: 350px; /* Allow height to adjust based on content */

    }
	
	
    .container a {
        font-size: 30px; /* Adjust font size for links */
    }


.container:hover {
	width: 400px; /* Width remains the same */
    height: 300px; /* Height remains the same */
    border-radius: 35px; /* Transform into a circle */
    box-shadow: 5px 4px 15px rgba(0, 0, 0, 0.3); /* Add a drop shadow on hover */
}
	
	.text-wrapper {
    display: flex;
    justify-content: space-between;
    width: 400px; 
    padding: 10px 0;
    margin-top: 10px;
}

.project-title {
    font-size: 17px;
    font-weight: bold;
    color: white; /* Adjust color as needed */
}

.project-description {
    font-size: 15px;
    color: white; /* Adjust color as needed */
}
	
	
	
	
	
	
	
	
}