body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
}  
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #fcb900;
    height: 50px;
}
.logo {
    font-size: 24px;
    font-weight: bold;
}
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.menu-icon {
    display: none;
}

@media (max-width: 750px) {
    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 70px; /* Height of header */
        left: 0;
        background-color: #fcb900;
        padding-bottom: 20px;
        z-index: 1000;
    }
    nav ul.show {
        display: flex;
    }
    .menu-icon {
        display: block;
        cursor: pointer;
        font-size: 30px;
        user-select: none;
    }
    nav ul li {
        margin: 10px 0;
        text-align: center;
    }
}

nav ul li {
    margin-left: 20px;
}
nav ul li a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
    position: relative;
    transition: color 0.3s;
}
nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0.2em;
    display: block;
    margin-top: 3px;
    right: 50%;
    background: rgb(55, 190, 177);
    transition: width 0.15s ease, right 0.15s ease;
}

nav ul li a:hover {
    color: rgb(55, 190, 177);
}

nav ul li a:hover::after {
    width: 100%;
    right: 0;
}

.content {
    max-width: 1250px;
    padding: 20px;
    width: 90%;
    margin: 0 auto;
}

.portrait {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
}

.intro-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 30px;
}

.intro-text {
    flex: 1;
    min-width: 300px;
}

.intro-image {
    flex: 0 0 auto;
}

@media (max-width: 800px) {
    .intro-container {
        flex-direction: column;
        align-items: center;
    }
    .intro-image {
        width: 100%;
        display: flex;
        justify-content: center;
    }
}

.gigs {
    margin: 10px 10px 25px 0px;
    max-width: 100%;
}

p {
    text-align: left;
    font-size: 20px;
    line-height: 1.6;
}

.contact-card {
    border: #000 solid 2px;
    border-radius: 15px;
    display: flex;
    align-items: left;
    flex-direction: column;
    max-width: fit-content;
}

.contact-card p {
    margin: 10px 15px 10px 15px;
}

footer {
    background-color: #fcb900;
    padding: 10px 20px;
    margin-top: 20px;
    height: 50px;
}

.grey-link {
    color: #615b46;
    text-decoration: none;
}