body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    background-color: #000;
    color: #fff;
}

header {
    text-align: center;
    background-color: #222;
    padding: 20px 0;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

nav {
    margin-top: 20px;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    border-bottom: 2px solid #ff6600;
    padding-bottom: 10px;
}

nav ul li {
    margin: 0;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    padding: 5px 10px;
    transition: color 0.3s;
}

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

nav ul li a.active {
    color: #ff6600;
    border-bottom: 2px solid #ff6600;
}

.intro {
    padding: 200px 20px 100px 20px; /* Adjusted padding to move content down */
    text-align: center;
    background-color: #111;
}

#logo {
    display: block;
    margin: 0 auto 30px auto; /* Added bottom margin for spacing */
    width: 20vw;
    max-width: 300px;
    height: auto;
}

.personal-note {
    font-style: italic;
    color: #ff6600;
    margin-top: 20px;
}

.entertainers {
    padding: 20px;
    text-align: center;
    background-color: #111;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

.entertainer {
    background-color: #222;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.entertainer img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s;
    cursor: pointer;
}

.entertainer h2 {
    margin-top: 10px;
    color: #ff6600;
}

.entertainer .toggle-bio {
    background-color: #ff6600;
    color: #fff;
    border: none;
    padding: 10px 20px;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.entertainer .toggle-bio:hover {
    background-color: #ff8500;
}

.entertainer .bio {
    display: none;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 20px;
    transition: max-height 0.3s, opacity 0.3s;
    max-height: 0;
    overflow-y: auto;
    width: 100%;
    box-sizing: border-box;
}

.entertainer .bio.visible {
    display: block;
    max-height: 200px; /* Adjust as needed */
}

footer {
    background-color: #222;
    padding: 20px 0;
    color: #fff;
    text-align: center;
}

footer .social-media-bar {
    background-color: #111;
    padding: 10px 0;
}

footer .social-media {
    display: flex;
    justify-content: center;
    gap: 20px;
}

footer .social-media a {
    color: #ff6600;
    margin: 0 10px;
    text-decoration: none;
    font-size: 1.2em;
    display: flex;
    align-items: center;
    gap: 8px;
}

footer .social-media a i {
    font-size: 1.5em;
}

footer .social-media a:hover {
    color: #ff8500;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px 0;
}

footer .about, footer .contact-info {
    max-width: 300px;
    margin: 10px;
}

footer h2 {
    color: #ff6600;
}

footer p, footer a {
    color: #ccc;
}

footer a:hover {
    color: #ff6600;
}

@media (min-width: 480px) {
    .entertainers {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .entertainers {
        grid-template-columns: repeat(4, 1fr);
    }
}
