/* styles.css */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #3a3c3a;
}

header, footer {
    background-color: #333;
    color: white;
}

nav ul {
    list-style: none;
    display: flex;
    padding: 0;
}

nav ul li {
    margin: 0 10px;
}

.navbar {
    background-color: #333;
    color: white;
    padding: 10px;
    position: -webkit-sticky; /* For Safari */
    position: sticky;
    top: 0;
    z-index: 100;
}

.banner {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.banner-image {
    width: 110%;
    height: 100%;
    background-image: url('resources/ScottStagePBassFocus.jpg');
    background-size: cover  ;
    background-position: left -100px top; /* Adjust this to center the visible portion */
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
}

.bio {
    text-align: center;
    color:whitesmoke;
    padding: 20px;
}

.media {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.contact-btn {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.social-icons {
    display: flex;
    align-items: center;
    margin-left: 20px; /* Adjust this margin as needed */
    flex-direction: row;
}

.social-icons-bottom {
    display: flex;
    align-items: center;
    margin-left: 20px;
    flex-direction: row;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 2px;
    max-width: 1100px;
    width: 100%;
    /* max-width: 800px; Adjust the maximum width as needed */
    /* margin: 0 auto; */
}

.grid-item {

    text-align: center;
    padding: 20px;
    /* background-color: deepPink;
    color: #fff;
    border: 1px solid #fff; */
}

.media {
    min-width: 400px;
    min-height: 250px;
    margin: auto;
    padding: 0px;
}