
 /*------------------------------------------
CSS RESET BEGINS - About Me page
---------------------------------------------*/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

*{
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}
/*CSS RESET END */


 /*------------------------------------------
GENERAL PAGE STYING 
---------------------------------------------*/

body{
	background-color: #F3E9DC;
	font-family: Roboto, Helvetica, Arial, sans-serif;
	font-size: 1.2rem;
	font-weight: 400;
	line-height: 1.2;
}

h1, h2 {
	color: #013046; 
	font-family: Poppins, 'Arial Black', Montserrat, sans-serif;
	font-weight: 800;
	line-height: 1;
}


h3 {
	color: #f8f1e9;
	font-size: clamp(1.3rem, 5vw - 1rem, 2rem);
    font-weight: 500;
    line-height: 1.2;
    max-width: 30%;
}

/* controling spacing such as margin - hero section only*/
main {
	width: 90%;
	margin: 0 auto;
}

/* subtracting margin from the main, adjusts margin spacing for the rest*/
.content-container {
	width: 90%;
	margin: 0 auto;
}

img {
	display: block;
	width: 100%;
	height: auto;
}

 /*------------------------------------------
NAVIGATION
---------------------------------------------*/

/* ---General styling for naviagtion bar --- */

nav {
    width: 90%;
    margin: 0 auto 3rem;
}


nav ul{
    display: flex;
    flex-direction: row;
    margin-top: 3rem;
    padding: .5rem;
    list-style-type: none;
    justify-content: flex-end;
    gap: 2rem;
    white-space: nowrap;
   
 }

 nav ul li a {
    text-decoration: none;
    display: block;
    font-weight: 450;
    font-size: clamp(1.2rem, 2vw, 1.4rem);
    color: #013046;
 }
 
 /*unvisisted link & visited link */
 nav ul li a:link, 
 nav ul li a:visited
 {
    color: #013046;
 }

 /* For hover, focus and active  */
 
 nav ul li a:hover,
 nav ul li a:focus,
 nav ul li a:active {
    color: #4a5053;
    transition: background-color 0.3s ease-in-out 0.2s; 
 }
 

/* ---side bar nav menu bar stylization and function --- */


.sidebar {
    position: fixed;
    top: 0 ;
    right:0;
    height: 100vh;
    width: 250px;
    z-index: 999;
    backdrop-filter: blur(10px);
    background-color: #f8f1e9;
    box-shadow: -2px 0 10px #1d1d1d50;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 40%;
    margin: 0 auto;
    padding-right: 1rem;
}

.sidebar li:first-child {
    margin-top: 3rem;
}

.sidebar li {
    width: 100%;
    margin-left: 1rem;
}

.sidebar a {
    width: 100%;
}

/* Navigation Toggle */

.nav-toggle {  /*the icon for bar */
    position: absolute;
    cursor: pointer;
    margin: 0 1.5rem 2rem;
    right: 0;
    top: 1rem;
    right: 1rem;
    z-index: 1000;
    display: block;
}  

svg {
    fill: #013046;
    width: 3rem;
}

/*close icon */
.close {
    display: none;

}

/*menu icon */
.menu {
    margin-top: 0.2rem;
}

/* ---Checkbox for Toggle --- */

#nav-responsive{
    display:none;
}

/* Toggle Actions */

	/*targeting sidebar when checked */
#nav-responsive:checked ~  .sidebar {  /*sidebar becomes visible */
    display: flex;
}

#nav-responsive:checked ~ label.nav-toggle .close { /* close icon inside the menu is displayed as block (visible) */
    display: block;
}

#nav-responsive:checked ~ label.nav-toggle .menu{ /*hamburger menu icon is hidden when checked*/
    display: none;
}

/* ----Main full width Navigation---- */
.main-nav {
    display: flex; /* Show main navigation by default */
    gap: 2rem;
    list-style-type: none;
    justify-content: flex-end;
    white-space: nowrap;
}


 /*------------------------------------------
1. MAIN - HERO SECTION
---------------------------------------------*/

.hero-section {
	display: grid;
	grid-template-columns: 2fr 1fr;
	grid-template-rows: .1fr 2fr .1fr;
	min-height: 80vh;
	margin: 0 auto;
	max-width: 100vw;
}

/*--image section overlap styling---*/

.image-section {
	display: flex;
	flex-direction: column;
	grid-column: 1;
	grid-row: 2 / 3;
}

h1 {
	background-image: url(./images/my-profile-img.jpg);
	min-height: 80vh;
	background-size: cover;
	background-position: center center; 
	text-align:left;
	font-size: clamp(5rem, 8vw, 7rem); /* this allows for the text to be responsive */
	padding: 2rem ;
}

.image-section img {
	display: none; /* Hide the image itself since we're using it as a background for h1 */
  }

/*---side content styling---*/ 

.side-content {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	grid-column: 2;
	grid-row: 1/4;
	background-color: #003A55;
	color: #f8f1e9;
	min-width: 20rem; /* fixed so its not responsive */
	padding: 0 2rem;
	
}

.hero-circle-content > p {
	font-weight: 200;
	font-size: clamp(1.2rem, 2vw, 1.5rem);
	min-width: 15rem;
}

/* second paragrph */
.hero-circle-content + p {
	font-size: clamp(1.2rem, 2vw, 1.4rem);
	
}

.hero-circle-content{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	border-radius: 50%;
	border: 0.1rem solid #f8f1e9;
	aspect-ratio: 1 / 1; /* keeps the circle from distorting */
}



 /*------------------------------------------
2. MAIN - NICK NAME / WHERE IT STARTED
---------------------------------------------*/

.nick-name-grid {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 1em;
	margin-top: 4rem;
	margin: 4rem auto 0;
}

.where-it-started {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 2rem;
	background-color: #6D8765;
	color: #f8f1e9;
	padding: 1.5em;
	grid-row: 1;
	border-radius: 2rem;
}

.nick-name {
	display:grid;
	justify-self: end;
}


.nick-name h2 {
	font-size: clamp(3em, 6vw, 8rem);
	writing-mode: vertical-rl;
	justify-self: start;
	align-self: center;
}

.where-it-started h3 {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
    border-radius: 50%;
    border: 0.15rem solid #f8f1e9;
	min-width: 6em;
	height: 6em;
}

.where-it-started p{
	min-width: 300px;
	font-size: clamp(1rem, 2vw, 1.2rem);
}


 /*------------------------------------------
3. MAIN - CREATIVE EXPLORATION
---------------------------------------------*/

.creative-exploration {
	display: flex;
	flex-direction: row;
	gap: 2rem; 
	background-color: #6D8765;
	color: #f8f1e9;
	max-width: 85%;
	margin: 3rem auto 4rem; /* controls the spacing between both the sections */
	padding: 2rem;
	float: right;
	border-radius: 2rem;
	align-items: center;

	
}

.creative-exploration h3 {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
    border-radius: 50%;
    border: 0.15rem solid #f8f1e9;
	min-width: 6em;
	height: 6em;
	aspect-ratio: 1/1;
}

.creative-exploration p {
	min-width: 300px;
	max-width: 500px;
	font-size: clamp(1.1rem, 2vw, 1.2rem);
}


/*------------------------------------------
4. MAIN - WHAT IM DOING NOW
---------------------------------------------*/

.what-im-doing-now {
	clear: both;
	display: grid;
	grid-template-columns: 1fr 2fr;
	grid-template-rows: 1fr 0.5fr;
	color: #013046;
	gap: 2rem;
	border-left: 3rem solid #6D8765;
	padding: 1rem 2rem 0; /* spacing around the heading */ 
}

.what-im-doing-now h2 {
	font-size: clamp(3rem, 10vw - 1rem , 5rem);
	line-height: 1.1;
	width: 10%; /*making the text break so one word per line */
	align-content: center;
	margin-bottom: 0;

}


.second-circle-content {
	grid-row: 1;
	grid-column: 2;
	border: .1rem solid #003A55;
    border-radius: 50%;
	min-width: clamp(10em,40vw,20em);
	height: clamp(10em,40vw,20em);
	aspect-ratio: 1/1;
	align-content: center;
	padding: 1em;
	align-self: center;
	position: relative;
	margin-bottom: 1rem;
}

.second-circle-content  p {
	text-align: center;
	font-size: clamp(1.1rem, 3vw, 2rem);
    line-height: 1.2;
    font-weight: 500;
    color: #003A55;
    min-width: 180px;
	max-width: 800px;
	
}

.second-circle-content::after {

	/* offset second circle outside */
	content: ""; /* Necessary to create the pseudo-elements */
	position: absolute;
	top: -3%; /* Adjusts the vertical overlap position */
	left: 0;  /* Adjusts the horizontal overlap position */
	right: -5%; /* Responsive size for the second circle */
	bottom: 1%; /* Keeps the second circle proportional */
	border-radius: 50%;
	border: 0.1rem solid #003A55;
	margin: 0.2rem; /* Adjust this to control the spacing of the circles */
}


.what-im-doing-now p:nth-of-type(1) {
	grid-row: 2;
	grid-column: 1 / span 2;
	font-family: 'Poppins', 'Arial Black', 'Montserrat', sans-serif;
}

.what-im-doing-now h2+p {
	font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1.3;
    font-weight: 500;
	min-width: 400px;
	margin-bottom: 2rem;
	
}

/*------------------------------------------
5. MAIN - MY SKILLS
---------------------------------------------*/

.my-skills {
	display:grid;
	grid-template-columns: 4fr 1fr;
	margin-top: 4rem;
	min-width: 600px;
}

.my-skills h2 {
	writing-mode: vertical-rl;
	font-size: clamp(3rem, 10vw - 1rem , 5rem);
	justify-self: center;
	align-self: center;
}


.my-skills ul {
	grid-column: 1;
	display: flex; /* Use flexbox to keep items in a row */
    flex-wrap: wrap; 
    justify-content: right;
	min-width: 400px;
	margin: 2rem;

}

.my-skills li {
    font-family: 'Poppins', 'Arial Black', 'Montserrat', sans-serif;
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 500;
    border-radius: 3rem;
    background-color: #D9D9D9;
    color: #003A55;
    padding: 1rem 2rem;
    margin: 0.5rem;
	text-align: center;
	align-self: center;

}


 /*------------------------------------------
FOOTER
---------------------------------------------*/

footer {
	background-color: #003A55;
	padding: 2rem;
	margin: 5%;
	display: flex;
	flex-direction: row;
	gap: 6rem;
	align-items: center;
	min-width: 200px;
}

 footer img {
	width: 30%;
	min-width: 250px;
	height: auto;
	border-radius: 50%;
	margin: -50px  -50px ;
	object-fit: cover;

 }

footer h3 {
	font-size: clamp(4rem, 4vw + 2rem, 10rem);
	flex-grow: 1;
	white-space: nowrap;
	margin-bottom: 2rem;
}
footer ul {
	display: flex;
	flex-direction: row;
	gap: 2rem;
	max-width: 300px;
}

footer li {
	display: block;
	background-color: #D9D9D9;
    color: #003A55;
	font-weight: 500;
	font-size: clamp(1em, 2vw, 2em);
	margin: 0.5rem 0;
	border: 0.1em solid #D9D9D9;
	border-radius: 1rem;
	padding: 0.5rem 1rem;
 }


/*------------------------------------------
RESPONSIVE DESIGN
---------------------------------------------*/



@media (max-width: 580px) {
/*----- RESPONSIVE FOR (WHAT IM DOING NOW) ------*/

	.nick-name{
		display: none;

	}
	.nick-name-grid {
		display: grid;
		grid-template-columns: 1fr;
	}

	.where-it-started {
		grid-row: 2;
	}

	.nick-name-grid::before {
		content: "Fifi For Short";
		display: block;
		font-size: clamp(3em, 6vw, 8rem);
		color: #013046; 
		font-family: Poppins, 'Arial Black', Montserrat, sans-serif;
		font-weight: 800;
		line-height: 1;
		margin-bottom: 2rem;
		text-align: center;
	}

	.what-im-doing-now h2 {
		font-size: 2rem;
	}

	.what-im-doing-now p:nth-of-type(1) {
		min-width: 100px;
		font-size: 1rem
	}

	.what-im-doing-now {
		display:grid;
		grid-template-columns: 1fr 2fr;
		grid-template-rows: 2fr 1fr 1fr;
		gap: 0.5rem;

	}


	.second-circle-content {
		min-width: 5em;
		height: 10em;
		padding: 1em ;
	}

	.second-circle-content  p {
		text-align: center;
		font-size: 1rem;
		line-height: 1.2;
		font-weight: 400;
		min-width: 100px;
		
	}

	.second-circle-content::after {

		/* offset second circle outside */
		content: ""; /* Necessary to create the pseudo-elements */
		position: absolute;
		top: -3%; /* Adjusts the vertical overlap position */
		left: 0;  /* Adjusts the horizontal overlap position */
		right: -5%; /* Responsive size for the second circle */
		bottom: 1%; /* Keeps the second circle proportional */
		border-radius: 50%;
		border: 0.1rem solid #003A55;
		margin: 0.2rem; /* Adjust this to control the spacing of the circles */
	}



}

@media (max-width: 790px) {

/*----- RESPONSIVE FOR (NAVIGATION) ------*/
   
/* Show sidebar and toggle icon on small screens */
	.nav-toggle {
		display: block; /* Only visible on screens <= 450px */
		margin-top: 2rem;
	}
	.sidebar {
		display: none; /* Sidebar will only show when checkbox is checked */
		width: 90%;
	}

	.main-nav { /* Hide main navigation on small screens */

		display: none;
	}
	

/*----- HERO SECTION RESPONSIVE ------*/

	.hero-section {
		display: grid;
		grid-template-columns: 1fr;
		grid-template-rows: auto;
		min-height: 60vh;
	}

	.image-section {
		display: flex;
		flex-direction: row;
		grid-column: 1 / 2 ;
		grid-row: 1;
	}

	.side-content {
		grid-row: 2;
		grid-column: 1/2;
		display: flex;
		flex-direction: row;
		padding: 2rem;
		gap: 1.2rem;
	}

	/* second paragrph */
	.hero-circle-content + p {
		font-size: clamp(0.8em, 3vw, 1.2em);
		align-content: center;
		width: clamp(10rem, 50vw, 20rem);
		min-width: 150px;
		max-width: 300px;
	}


	h1 {
		width: 90vw;
		min-height: 50vh;
		font-size: clamp(3rem, 10vw , 6rem);
	}


	/* circle paragrph */
	.hero-circle-content > p {
		font-size: clamp(1rem, 3vw, 1.3rem);
		min-width: clamp(10rem, 45vw, 15rem);
		padding: 0 1.2rem;
	}


	.hero-circle-content {
		width: clamp(15rem, 30vw, 20rem); /* Larger circle for wider screens */
	}



/*----- NICK NAME RESPONSIVE ------*/


	.where-it-started {
		display: flex;
		flex-direction: column;
	}

	.creative-exploration {
		display: flex;
		flex-direction: column;
		min-width: 350px;
	}

	.creative-exploration p {
		padding: 1em;
		min-width: 300px;
		max-width: 500px;
	}



/*----- MY SKILLS RESPONSIVE ------*/


	.my-skills {
		display:grid;
		grid-template-columns: 1fr;
		margin-top: 1rem;
		min-width: 2px;
	}

	.my-skills h2 {
		writing-mode: horizontal-tb;
		font-size: clamp(3rem, 10vw - 1rem , 5rem);
		justify-self: right;
		align-self: center;
		order: 1;
		margin-right: 10%;
	}

	.my-skills ul {
		order:2;
		justify-content: right;
		min-width: 350px;
	}

	.my-skills li {
		font-size: clamp(0.9rem,2vw,1rem);
		font-weight: 500;
		padding: 1rem 1rem;
		margin: 0.5rem;
		text-align: center;
		align-self: center;


	}

	/*----- FOOTER RESPONSIVE ------*/

	footer {
		padding: 1rem;
		margin: 5%;
		display: flex;
		flex-direction: row;
		gap: 4rem;
		align-items: center;
	}

	footer img {
		
		min-width: 40%;
		height: auto;
		border-radius: 50%;
		margin: -30px  -30px ;
		object-fit: cover;

	}

	footer h3 {
		font-size: clamp(2rem, 6vw, 4rem);
		flex-grow: 1;
		white-space: nowrap;
		margin-bottom: 1rem;
	}
	footer ul {
		display: flex;
		flex-direction: column;
		gap: 0.5rem;
		max-width: 300px;
	}

	footer li {
		display: block;
		font-weight: 500;
		font-size: clamp(0.8em, 2vw, 1em);
		margin: 0.5rem 0;
		padding: 0.5rem 1rem;
	}



}


/*----- MOBILE FIRST RESPONSIVE FOR (NAVIGATION) ------*/ 

@media (min-width: 790px) {

/* Hide sidebar and toggle icon on larger screens */
    .sidebar {
        display: none;
    }

    .nav-toggle {
    	display: none; /* Ensure toggle is hidden */
    }

/* Show main navigation on larger screens */
    .main-nav {
        display: flex;
    }

	.sidebar li {
		display: flex;
		flex-direction: row;
		margin-top: 0.5rem;
		padding: .5rem;
		list-style-type: none;
		justify-content: flex-end;
		white-space: nowrap;
	}
}



