
body {
    background-color: white;
    min-height: 100vh;
	overflow-x: hidden;
	font-family: font-family: 'Inter', sans-serif;;
}

html {
	height: 100%;
}







/* Nav Bar Section */
.logo {
    margin-right: auto;
}

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

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


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

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

.navlist {

	display: flex;
	align-items: center;
	justify-content: flex-end;
	border-radius: 15px;
	
}

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

h1 {
    text-align: center;
    font-size: 30px;
    color: white;
	
	
}

h2 {

text-align: center;
font-size: 20px;
font-family: monospace;
line-height: 2px;
}
h1{
    background-color: black;
}




/* Styling for form */
.contact-section {
    max-width: 600px;
    margin: 80px auto;
    padding: 40px;
    text-align: center;
    font-family: Inter, sans-serif;
}

.contact-section h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: white;
}

.contact-intro {
    color: #777;
    margin-bottom: 30px;
}

/* form layout */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.form-group {
    display: flex;
    flex-direction: column;
}

/* labels */
label {
    font-size: 14px;
    margin-bottom: 5px;
    color: #000;
}

/* inputs */
input, textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-family: Inter, sans-serif;
    outline: none;
    transition: 0.3s;
}

/* focus effect (this is important for UX polish) */
input:focus,
textarea:focus {
    border-color: #ff7c9f;
    box-shadow: 0 0 0 3px rgba(255, 124, 159, 0.2);
}

/* button */
button {
    background-color: #ff7c9f;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background-color: #000;
    color: #fff;
}

/* Footer Section */


.footer {
    background: #ffffff;
    border-top: 2px solid #ffb3c7; 
    padding: 40px 20px;
    text-align: center;
	font-family: 'Inter', sans-serif;
}

/* 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;
	}

	/* form for mobile and tablets */

	.form {
	 left: 25px;
	 width: 86%;
	}

	textarea {
		width: 200px;
	}