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;
}

body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	background-color: #3381c1; 
}

.navbar {
	background-color: #000000;
	padding: 10px 20px;
	display: flex;
	justify-content: flex-start; 
	align-items: center;
	position: relative;
	justify-content: space-between;
}

.navbar h2 {
	color: #fff;
	margin: 0;
	font-size: 1.5rem;
	position: absolute;
	left: 50%; 
	transform: translateX(-50%);
	margin-left: auto;
    margin-right: auto;
}

.nav-links {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 200px;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.9);
	z-index: 100;
	padding-top: 60px;
	justify-content: space-evenly;
	align-items: flex-start;
	padding: 15px 20px;
}

.nav-links.active{
	display: flex;
}

.nav-links a {
	display: block;
	color: #fff;
	text-decoration: none;
	font-size: 1.5rem;
	padding: 10px;
	text-align: left;
	border-bottom: 1px solid #555;
}

.nav-links a:hover {
	background-color: #70d6f3;
	color: #000000;
}

.hamburger {
	display: flex;
	flex-direction: column;
	cursor: pointer;
	position: relative;
	z-index: 101;
	transition: 0.3s ease;
}

.bar {
	width: 30px;
	height: 4px;
	background-color: #fff;
	margin: 6px 0;
}

@media (max-width: 768px) {
	.nav-links.active {
		display: flex;
	}

	.container {
		padding: 10px;
	}

	.image-gallery {
		flex-direction: column;
		align-items: center;
	}

	.image-gallery img {
		width: 100%;
		margin-bottom: 20px;
	}
}

.container {
	display: flex;
	max-width: 1000px;
	margin: 0 auto;
	padding: 20px;
	flex-direction: column;
	flex-wrap: nowrap;
}

h1 {
	text-align: center;
	font-family: 'Pacifico';
	font-size: 2rem;
	color: #fff;
	margin-top: 20px;
}

p {
	text-align: justify;
	color: #fff;
	font-size: 1rem;
	line-height: 1.5;
	margin-bottom: 20px;
}

.image-gallery {
	display: flex;
	justify-content: space-between;
	margin-bottom: 40px;
}

.image-gallery img {
	width: 48%;
	border-radius: 10px;
}

.contact {
	text-align: center;
	margin-top: 40px;
}

.contact a {
	color: #FFB6C1;
	font-weight: bold;
	text-decoration: none;
	transition: color 0.3s;
}

.contact a:hover {
	color: #fff;
}

.social-media {
	margin-top: 20px;
	display: flex;
	justify-content: center;
	gap: 20px;
	text-decoration: underline;
}

.social-media a {
	color: #fff;
	font-size: 1.5rem;
}

.social-media a:hover {
	color: #FFB6C1;
}

.hamburger.move {
    transform: translateX(calc(75vw - 30px)); 
}
form {
    max-width: 400px;
    margin: 50px auto;
    padding: 20px;
    background-color: #64abe6;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
}

form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form textarea {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    background-color: #fff;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

form textarea {
    resize: vertical;
    height: 100px;
}

form input[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: #63c7f2;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: color 0.3s ease;
}

form input[type="submit"]:hover {
    background-color: #3381c1;
}

.logo {
    max-height: 50px;
    width: auto;
}
