* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: Arial, sans-serif;
}
body {
	background-color: #121212;
	color: #ffffff;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}
header {
	background: #1e1e1e;
	padding: 15px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.logo-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}
.logo {
	font-size: 1.5rem;
	font-weight: bold;
	cursor: pointer;
}
nav {
    display: flex;
    align-items: center;
    white-space: nowrap; /* Prevents text wrapping */
}
nav a {
	color: #ffffff;
	text-decoration: none;
	margin: 0 15px;
	font-size: 1.3rem;
	transition: color 0.3s;
}
nav a:hover {
	color: #00aaff;
}
.email-link {
    color: #00aaff;  /* Light blue */
    text-decoration: none;  /* Removes the underline */
}
.email-link:hover {
    text-decoration: underline;  /* Add underline on hover if you like */
}
main {
    flex: 1;
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    align-items: flex-start; /* Align content to the left */
    justify-content: flex-start; /* Align content to the top */
    text-align: left; /* Ensure text inside is left-aligned */
    padding: 40px 20px; /* Increase padding for better spacing */
    max-width: 1000px; /* Limit width for readability */
	margin: 0 auto; /* Center content horizontally */
}
main img {
    max-width: 100%; /* Ensures image never exceeds its container */
    height: auto; /* Maintains aspect ratio */
    display: block; /* Removes extra spacing around inline images */
    margin: 0px 0; /* Adds space above and below the image */
}
ul, ol {
    margin-left: 20px; /* Adjust this value as needed */
}
h1, h2, h3, h4 {
	margin-bottom: 10px;
}
p {
    text-align: justify;
}
p.centered-text {
  text-align: center;        /* center the text inside */
  margin-left: auto;         /* push from left */
  margin-right: auto;        /* push from right */
  width: fit-content;        /* shrink wrap the text */
}
footer {
	background: #1e1e1e;
	text-align: center;
	padding: 15px;
	font-size: 0.9rem;
}
.gallery {
    column-count: 2; /* Adjust for more or fewer columns */
    column-gap: 15px;
}
.gallery-page {
    max-width: 1400px; /* Adjust width as needed */
}
.gallery-item {
    display: inline-block;
    width: 100%;
    position: relative;
    margin-bottom: 10px;
    overflow: hidden;
    border-radius: 10px;
}
.gallery img {
    width: 100%;
    display: block;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    text-align: center;
    padding: 10px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    transform: translateY(100%);
}
.gallery-item:hover .title {
    opacity: 1;
    transform: translateY(0);
}

