body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
}

header {
    background: #222;
    color: white;
    text-align: center;
    padding: 0;
    height: 237px;
    overflow: hidden;
}

header img.cover-photo {
    width: 100%;
    height: auto;
    max-height: 217px;
    object-fit: cover;
	padding-top: 20px;
	margin: 0px; /* Remove margin */
	}

header h1 {
    font-size: 2.5em;
}

.content {
    padding: 20px;
}

.bio-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.bio {
    background-color: #fff;
    border-radius: 8px;
    padding: 15px;
    width: 250px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.bio img {
    width: 100%;
    border-radius: 50%;
}

.bio h2 {
    font-size: 1.5em;
    margin-top: 10px;
}

.bio p {
    font-size: 1em;
    color: #555;
    margin: 10px 0;
}

.bio a {
    color: #007BFF;
    text-decoration: none;
    font-size: 1.1em;
    margin-top: 10px;
    display: inline-block;
}

.bio a:hover {
    color: #0056b3;
}

/* BioG section styling */
.biog {
    text-align: center;
    padding: 20px;
}

.biog-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 50%;
    margin-bottom: 20px;
}

.gig-list {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}

.gig-list h2 {
    text-align: center;
    font-size: 2em;
}

.gig {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.gig:last-child {
    border-bottom: none;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
    margin-top: 40px;
}

/* New, clean nav menu styles */
.top-nav {
    background-color: #222;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu li {
    margin: 0 15px;
}

.menu a {
    display: block;
    padding: 10px 20px;
    color: #f4f4f9;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.menu a:hover {
    background-color: #444;
    color: #fff;
    border-radius: 4px;
}

/* Responsive tweak: stack menu on small screens */
@media (max-width: 600px) {
    .menu {
        flex-direction: column;
    }

    .menu li {
        margin: 5px 0;
    }
}

.gallery {
    padding: 20px;
    text-align: center;
}

.gallery h2 {
    margin-bottom: 20px;
    font-size: 2em;
}

.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    justify-items: center;
}

.thumbnail-grid img {
    width: 100%;
    max-width: 150px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: transform 0.2s ease;
}

.thumbnail-grid img:hover {
    transform: scale(1.05);
}
