/* 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*/





.menu {
	background-color:rgb(238, 255, 255);
	margin: 20px 20px 20px 20px;
	padding: 10px 10px 10px 10px;
	display: grid;
	grid-template-areas: 
	"Header Header Header ";
	border-radius: 4px;
}


.navbar {
	text-align: right;
}


h1 {
	text-align: center;
	font-family: "Twinkle Star", cursive;
	font-size: 80px;
	color:rgb(62, 133, 120);
	display: inline-block;
}

.link {
	margin: 10px 10px 10px 10px;
	background-color: rgb(255, 255, 255);
	border: 2px solid rgb(141, 188, 188);
	border-radius: 5px;
	padding: 5px 5px 5px 5px;
	text-decoration: none;
	color: rgb(57, 199, 199);
	display: inline-block;
	font-family: "Twinkle Star", cursive;
}

.link:active {
	color: rgb(197, 227, 227);
}

.link:hover {
	color:rgb(159, 207, 207);
}

.link:visited {
	color: rgb(30, 30, 30);
}

.logo {
	width: 100px;
	height: auto;
	max-width: fit-content;
	display: inline-block;
	margin: 10px 10px 10px 10px;
	padding: 10px 10px 10px 10px;
	border-radius: 20px;
}


body {
	background-color: rgb(141, 182, 182);
}


@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 5px 5px 5px;
		padding: 3px 3px 3px 3px;
		font-size: 14px;
	}

	.menu {
		margin: 10px 10px 10px 10px;
		padding: 5px 5px 5px 5px;
	}

	.navbar {
		text-align: center;
		display: block;
	}

}


/* HAMBURGER BUTTON (hidden by default) */
.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 10px 10px 10px;
	padding: 10px 10px 10px 8px;
}

.hamburger span {
    width: 24px;
    height: 3px;
    background: rgb(255, 255, 255);
    border-radius: 2px;
}

/* MOBILE MENU HIDDEN */
.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);
}

.mobile-menu .nav-list li {
    display: block;
    text-align: right;
}

/* SHOW MENU WHEN ACTIVE */
.mobile-menu.active {
    display: block;
}

/* MEDIA QUERY */
@media (max-width: 610px) {

    /* Hide desktop nav */
    .link {
        display: none;
    }

    /* Show hamburger */
    .hamburger {
        display: flex;
    }
}
@media (max-width: 610px) {
	h1 {
		margin-right: 60px;
	}
}


.nav-item {
	margin: 10px 10px 10px 10px;
	padding: 5px 5px 5px 5px;
	text-decoration: none;
	display: inline-block;
	font-family: "Twinkle Star", cursive;	
}

.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 5px 5px 5px;
}

footer {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	color:rgb(18, 97, 70);
	background: rgb(205, 255, 248);
	margin: 20px 20px 20px 20px;
	padding: 10px 10px 10px 10px;
	border-radius: 4px;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	width: calc(100% - 40px - 20px);
}

.gallery {
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: rgb(238, 255, 255);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(166, 166, 166, 0.18);
	
}


.gallery td {
    width: 200px;
    height: 200px;
    padding: 10px;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

@media (max-width: 610px) {
    .gallery td {
        width: 120px;
        height: 120px;
        padding: 6px;
    }
}

.gallery {
    margin: 20px auto;
    text-align: center;
}

.gallery td {
    text-align: center;
    vertical-align: middle;
}

.gallery-image {
    margin: 0 auto;
}


/* Lightbox background */
#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    cursor: pointer;
}

/* Zoomed image */
#lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    animation: zoomIn 0.3s ease;
}

/* Zoom animation */
@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Make gallery images feel clickable */
.gallery-image {
    cursor: pointer;
    transition: transform 0.2s ease;
}

.gallery-image:hover {
    transform: scale(1.05);
}


.gallery-note td {
    text-align: center;
    font-size: 100px;
    font-weight: 500;
    padding-bottom: 15px;
    color: #555;
	font-family: "Twinkle Star", cursive;
}
