
body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
}

header {
    background-color: #333;
    color: white;
    padding: 1em;
    text-align: center;
}

header a {
    color: white;
    text-decoration: none;
}

header a:hover {
    color: #ff6347;
}

nav {
    margin-top: 10px;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
    position: relative; /* Add this for dropdown positioning */
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ff6347;
}

/* Dropdown container */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown button */
.dropbtn {
    cursor: pointer;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #333;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
    background-color: #575757;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 1em;
}

.gallery h2 {
    width: 100%;
    text-align: center;
    margin: 1em 0;
    color: #333;
}

.gallery img {
    margin: 0.5em;
    border: 2px solid #ccc;
    width: 200px; /* Fixed width for all images */
    height: 200px; /* Fixed height for all images */
    object-fit: cover; /* Ensures the images cover the area without stretching */
    cursor: pointer;
}

.gallery-item {
    text-align: center;
    margin: 0.5em;
}


.gallery-item img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    cursor: pointer;
    display: block;
    margin: 0 auto;
	border: 2px solid transparent;
    transition: border 0.3s ease-in-out;
}

/* Highlighted images with notes */
.highlighted {
    border: 5px solid #007BA7; /* Cerulean color */
    box-shadow: 0 0 20px rgba(0, 123, 167, 0.85); /* Brighter and more prominent shadow */
}


.gallery-item .title {
    margin-top: 0.5em;
    font-size: 0.9em;
    color: #333;
}

.about, .news, .music {
    padding: 20px;
    text-align: center;
}

.about h2, .news h2, .music {
    font-size: 2em;
    margin-bottom: 1em;
}

.about p, .news p, .music {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 1em;
}
.about img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.news-post {
    margin-bottom: 20px;
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

.news-post h3 {
    margin-top: 0;
}

.news-date {
    font-size: 0.9em;
    color: #666;
}

.news-content {
    font-size: 1.1em;
}

.news-content img {
    max-width: 50%;  /* Ensure images do not exceed the width of their container */
    height: auto;    /* Maintain aspect ratio */
    display: block;  /* Ensure images behave as block-level elements */
    margin: 10px auto;  /* Add some margin around the images */
}

.gallery-message {
    background-color: #FF6F6F; /* Lighter red */
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 10px;
    text-align: center;
    font-size: 14px;
    width: 100%;  /* Ensure the message spans the full width */
    box-sizing: border-box; /* Include padding in width calculation */
    display: block; /* Ensure it takes up its own line */
    clear: both; /* Clear any floating elements above it */
}

/* Modal styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    display: flex;
    justify-content: space-between;
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 900px;
	/* white-space: pre-line; */
}
.modal-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.image-container, .info-container {
    width: 45%;
}

.image-container img {
    width: 100%;
    height: auto;
}

.close {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 15px;
    right: 35px;
}

.close:hover, .close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}
