
/* Colors Palette

#b8b8b8 grey
#ffffff white
#000000 black
#ffb3c7 light pink
#ff7c9f  pink */

body {

background-color: white;
	overflow-x: hidden;
    
}


html {
	height: 100%;
	width: 100%;
}

h1{
    font-size: 50px;
    
}

.position {
	width: 80%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 50px;
}

.position {
	margin-left: 15%;
	padding-top: 60px;
}






/* Nav Bar Section */

.logo img {
    height: 40px;   
    width: auto;    
  }

  .logo {
    margin-right: auto;
}

.wrap {
    display: flex;
    padding: 20px;
}

nav {
    display: flex;
    justify-content: flex-end; 
    align-items: center;
    padding: 20px;
}

.navlist {
    border-radius: 15px;
    display: inline-flex;
	margin-left: auto;
}

.navlist ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navlist ul li {
    padding: 5px 25px;
}

.navlist a {
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    color: black;
    font-size: 20px;
	padding: 8px 12px;
}

.navlist a:hover {
    text-decoration: underline;
    color: #fddde6;
}


/* About me section */

.about-section {
    padding: 80px 20px;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Image */
.about-image img {
    width: 300px;
    height: auto;
    border-radius: 20px;
}

/* Text */
.about-text {
    max-width: 500px;
}

.about-text h1 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #000;
}

.about-text p {
    font-size: 16px;
	font-family: 'Inter', sans-serif;
    color: #555;
    line-height: 1.6;
}

/* Mobile */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-image img {
        width: 200px;
    }
}


/* Footer Section */


.footer {
    background: #ffffff;
    border-top: 2px solid #ffb3c7; 
    padding: 40px 20px;
    text-align: center;
}

/* Top section */
.footer-top {
    margin-bottom: 20px;
}

.footer-title {
    font-size: 14px;
    letter-spacing: 2px;
    color: #ff7c9f;
    margin-bottom: 10px;
}

/* Social icon */
.socialmedia {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

.socialmedia img {
    width: 35px;
    transition: 0.3s;
}

.socialmedia img:hover {
    transform: scale(1.1);
}

/* Navigation links */
.footer-nav {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.footer-nav a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
    transition: 0.3s;
}

.footer-nav a:hover {
    color: #ff7c9f;
}




/* Hamburger */


input[type=checkbox] {
	display: none;

}

.hamburger {
	display: none;
	font-size: 25px;
}

@media screen and (max-width: 800px) {

	/* Hamburger Menu for mobile */

	input[type=checkbox]:checked ~ .navlist {
		display: block;
	}

	.navlist ul {
		padding: 2px;
		background-color: black;
		display: block;
		width: 50%;
		border-radius: 5px;
		font-weight: bold;
	}

	.headnote {
		text-align: center;
		font-size: 20px;
		margin-left: 30%;
		
	
		
	}
	
	.headnote:hover {
		background-color: #fd6c9e;
		border-radius: 5px;
		border-width: 5px;
	
	}

	.navlist {
	
		width: 100%;
		display: none;
		
		
	}

	
	
	.hamburger {
		display: block;
		background-color: black;
		border-radius: 3px;

	}

	.hamburger {
		color: white;
	}


input[type=checkbox] {
	display: none;

}

.hamburger {
	display: none;
	font-size: 25px;
}

img {
	border-radius: 20%;
	margin: 0;
	width: 90%;

}


@media screen and (max-width: 768px) {

	
	input[type=checkbox]:checked ~ .navlist {
		display: block;
	}

	.navlist ul {
		padding: 15px;
		background-color: black;
		display: block;
		width: 50%;
		border-radius: 5px;
		font-weight: bold;
	}

	.headnote {
		text-align: center;
		font-size: 20px;
		margin-left: 30%;
		
	
		
	}
	
	.headnote:hover {
		background-color: #fd6c9e;
		border-radius: 5px;
		border-width: 5px;
	
	}

	.navlist {
	
		width: 100%;
		display: none;
		
		
	}

	
	
	.hamburger {
		display: block;
		background-color: black;
		border-radius: 3px;
		

	}

	.hamburger {
		color: white;
	}



	

	.position {
		width: 90%;
		grid-template-columns: 1fr;
	}

	img {
		border-radius: 50%;
		margin: 0;
		width: 90%;
	
	}

	footer {
		background-size: 100%;
	}

	p  {
		margin-right: 20px;
	}

	h1  {
		text-align: center;
	}

