/* 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;
}


/*End of Reset*/

.twinkle-star-regular {
  font-family: "Twinkle Star", cursive;
  font-weight: 400;
  font-style: normal;
}
/*fonts*/




/* CONTACT PAGE STYLES */

.text {
	font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
	color: rgb(62, 133, 120);
	font-size: 18px;
	margin-bottom: 20px;
	text-align: center;
	transition: color 0.3s, font-size 0.3s;
}

.contact-container {
	max-width: 600px;
	margin: 40px auto;
	padding: 30px;
	background-color: rgb(226, 253, 255);
	border-radius: 10px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: background-color 0.3s, box-shadow 0.3s;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.form-group {
	display: flex;
	flex-direction: column;
}

.form-group label {
	font-family: "Twinkle Star", cursive;
	color: rgb(62, 133, 120);
	margin-bottom: 8px;
	font-weight: bold;
	transition: color 0.3s;
}

.form-group input,
.form-group textarea {
	padding: 10px;
	border: 2px solid rgb(141, 188, 188);
	border-radius: 5px;
	font-family: inherit;
	font-size: 14px;
	transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
	border-color: rgb(57, 199, 199);
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}

.submit-btn {
	background-color: rgb(57, 199, 199);
	color: white;
	padding: 12px 20px;
	border: none;
	border-radius: 5px;
	font-family: "Twinkle Star", cursive;
	font-size: 16px;
	cursor: pointer;
	transition: background-color 0.3s, transform 0.2s;
}

.submit-btn:hover {
	background-color: rgb(62, 133, 120);
	transform: scale(1.05);
}

.menu {
	background-color: rgb(238, 255, 255);
	margin: 20px;
	padding: 10px;
	display: grid;
	grid-template-areas: 
	"Header Header Header ";
	transition: background-color 0.3s;
}

.navbar {
	text-align: right;
}

h1 {
	text-align: center;
	font-family: "Twinkle Star", cursive;
	font-size: 80px;
	color: rgb(62, 133, 120);
	display: inline-block;
	transition: font-size 0.3s, color 0.3s;
}

.link {
	margin: 10px;
	background-color: rgb(255, 255, 255);
	border: 2px solid rgb(141, 188, 188);
	border-radius: 5px;
	padding: 5px;
	text-decoration: none;
	color: rgb(57, 199, 199);
	display: inline-block;
	font-family: "Twinkle Star", cursive;
	transition: color 0.3s, transform 0.2s;
}

.link:active {
	color: rgb(197, 227, 227);
}

.link:hover {
	color: rgb(159, 207, 207);
	transform: scale(1.05);
}

.link:visited {
	color: rgb(0, 0, 0);
}

.logo {
	width: 100px;
	height: auto;
	max-width: fit-content;
	display: inline-block;
	margin: 10px;
	padding: 10px;
	border-radius: 20px;
	transition: transform 0.2s;
}

.logo:hover {
	transform: scale(1.05);
}

body {
	background-color: rgb(141, 182, 182);
	transition: background-color 0.3s;
}

@media screen and (max-width: 610px) {
	header {
		justify-content: center;
		align-items: center;
	}
	
	.logo {
		display: inline-block;
		width: 70px;
		height: auto;
	}
	h1 {
		font-size: 40px;
	}

	.link {
		margin: 5px;
		padding: 3px;
		font-size: 14px;
	}

	.menu {
		margin: 10px;
		padding: 5px;
	}

	.navbar {
		text-align: center;
		display: block;
	}

	.contact-container {
		margin: 20px;
		padding: 20px;
	}

	footer {
		margin: 5px;
		padding: 5px;
	}
}

.hamburger {
	display: none; 
	flex-direction: column;
	gap: 5px;
	width: 40px;
	height: 40px;
	background: #a5bdbf;
	border: none;
	border-radius: 6px;
	padding: 6px;
	cursor: pointer;
	position: absolute;
	top: 10px;
	right: 10px;
	margin: 10px;
	padding: 10px 10px 8px;
	transition: background 0.3s;
}

.hamburger:hover {
	background: rgb(57, 199, 199);
}

.hamburger span {
	width: 24px;
	height: 3px;
	background: rgb(255, 255, 255);
	border-radius: 2px;
}

.mobile-menu {
	display: none;
	background: rgb(226, 253, 255);
	position: absolute;
	top: 55px;
	right: 10px;
	padding: 12px;
	border-radius: 6px;
	box-shadow: 0 6px 15px rgba(166, 166, 166, 0.18);
	transition: opacity 0.3s;
}

.mobile-menu .nav-list li {
	display: block;
	text-align: right;
}

.mobile-menu.active {
	display: block;
	opacity: 1;
}

@media (max-width: 610px) {
	.link {
		display: none;
	}

	.hamburger {
		display: flex;
	}
}

@media (max-width: 610px) {
	h1 {
		margin-right: 60px;
	}
}

.nav-item {
	margin: 10px;
	padding: 5px;
	text-decoration: none;
	display: inline-block;
	font-family: "Twinkle Star", cursive;	
	transition: background-color 0.3s, color 0.3s;
}

.nav-item:hover {
	color: rgb(159, 207, 207);
	background-color: white;
	border-radius: 80px;
}

.footer-icon img {
	width: 30px;
	height: 30px;
	background-color: rgb(62, 133, 120);
	border-radius: 4px;
	padding: 5px;
	transition: transform 0.2s;
}

.footer-icon img:hover {
	transform: scale(1.1);
}

footer {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	color: rgb(18, 97, 70);
	background: rgb(205, 255, 248);
	margin: 10px;
	padding: 5px;
	border-radius: 4px;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	transition: background-color 0.3s;
}

iframe {
	display: block;
	margin: 20px auto;
	width: 600px;
	border: 2px solid rgb(141, 188, 188);
	border-radius: 10px;
	transition: border-color 0.3s;
}

@media screen and (max-width: 640px) {
	iframe {
		width: 100%;
		height: auto;
	}
}