@font-face {
    font-family: 'Akira Expanded';
    src: url('/fonts/akira_expanded.otf');
    font-weight: normal;
    font-style: normal;
}

body {
    position:relative;
    background: url("/assets/images/backdrop_yesteryear.JPG") center/cover no-repeat;
    background-blend-mode: lighten;
    font-family: 'Akira Expanded', sans-serif;
    margin: 0;
    padding: 20px;
}

ul, ol {
    list-style: none;
    padding: 0;
    margin: 0;
}


#header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    object-fit: contain;
    max-width: 10%;
}

.nav #links {
    display: flex;
    justify-content: flex-end;
    background-color: rgba(255, 255, 255, 0.6); 
    padding: 10px 20px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

a {
    color: white;
    text-decoration: none;
    text-shadow: 1px 1px 2px black;
    transition: background 0.5s ease, -webkit-text-fill-color 0.5s ease;
}

a:hover {
    font-weight: bold;
    background: linear-gradient(to right, rgba(255, 255, 0, 0.497), rgba(0, 0, 255, 0.462), rgba(255, 0, 0, 0.473));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.a{
    color: rgba(255, 255, 0, 0.497);
}

.b{
    color: rgba(0, 0, 255, 0.462);
}

.c{
    color: rgba(255, 0, 0, 0.473);
}

.nav li {
    margin-left: 20px;
}

#center-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#center-page h1, #about h2 {
    font-size: 60px;
    color: white;
    text-shadow: 2px 2px 0 #000;
}

#center-page img {
    width: 50%;
    max-width: 100%;
    height: auto;
}

#footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    bottom: 0;
    left:0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    color: black;
}

#about, #contact{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.6);
    color: #fff;
    border-radius: 17px;
    text-shadow: 2px 2px 0 #000;
}

.social-icons{
    margin: 10px 0;
}

.social-icons p i{
    color: #f0f0f0;
    font-size: 30px;
}

#about, .ceo, #bio{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
}

.ceo {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ceo{
    text-align: center;
    margin-top: 10%;
}

#bio{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.bio-list{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.image-row{
    display: flex;
    gap:10px;
    justify-content: center;
}

.image-row img{
    width: 400px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;;
}

.caption {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 10px;
}

.caption h3 {
  margin: 5px 0 0 0;
  font-size: 1.2rem;
}

.caption .job-title {
  margin: 2px 0 0 0;
  font-size: 1rem;
  color: #fff;
  text-shadow: 2px 2px 0 #000;
}

.top-artists-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.6);
    color: #000;
    border-radius: 10px;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    white-space: nowrap;
}

.artist-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.artist-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
}

.artist-item img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
}

.artist-name {
    font-weight: 500;
}



@media screen and (max-width: 440px) {
    * {
        box-sizing: border-box;
    }

    html {
        margin: 0;
        padding: 0;
        height: 100%;
    }
    body{
        position:relative;
        background: url("/assets/images/backdrop_yesteryear.JPG") center/cover;
        background-blend-mode: lighten;
        font-family: 'Akira Expanded', sans-serif;
        margin: 0;
        padding: 20px;
    }

    #header {
        display: flex;
        flex-direction: column;
        align-items: center;
    }


    .logo,
    .nav,
    #about,
    .social-icons {
        width: 100%;
        justify-content: center;
        text-align: center;
        padding: 10px;
    }

    .nav, 
    .social-icons,
    #about {
        flex-wrap: wrap;
        overflow: hidden;
    }

    .social-icons{
        font-size: 10px;
    }

    .nav ul {
        padding: 0;
        margin: 0;
    }

    .nav li {
        margin: 8px 3px;
        font-size: 10px;
    }

    #center-page {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #center-page h1 {
        font-size: 20px;
        padding: 0 10px;
    }

    #center-page img {
        max-width: 90%;
        height: auto;
    }

    #footer {
        flex-direction: column;
        text-align: center;
        padding: 10px;
    }

    .top-artists-section {
        display: flex;
        flex-direction: column;
        gap: 40px;
        padding: 40px;
        background-color: rgba(255, 255, 255, 0.6);
        color: #000;
        border-radius: 10px;
    }

    .section-title {
        font-size: 22px;
    }

    .artist-item {
        gap: 10px;
        padding: 8px 12px;
    }

    .artist-item img {
        width: 50px;
        height: 50px;
    }

    .artist-name {
        font-size: 15px;
    }

    .bio-list .image-row {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .bio-list {
        align-items: center;
        text-align: center;
    }

    .bio-list img {
        width: 80px;
        height: auto;
    }

    .ceo .image-row {
        flex-wrap: wrap;
        justify-content: center;
    }

    .ceo img {
        width: 90px;
        height: auto;
    }

    .caption {
        text-align: center;
    }

    #about {
        padding: 20px;
    }

    .about-us p {
        text-align: center;
    }
}
