* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(to bottom, #74EBD5, #9FACE6);
    color: #fff;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative; /* Added to contain background shapes */
}

.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    overflow: hidden;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    overflow: hidden;
}

.logo {
    max-width: 1000px;
    height: auto;
    margin-left: 100px;
}

.navbar {
    display: flex;
    justify-content: space-around;
    gap: 15px;
    flex-wrap: wrap;
    border-bottom: 3px solid #D5C8C8;
    border-top: 3px solid #D5C8C8;
    background-color: #ffffff;
    height: 35px;
    width: 100%;
    padding: 5px 0;
    margin: 0;
}

.navbar .nav-link {
    text-decoration: none;
    font-size: 16px;
    color: #1E2022;
    cursor: pointer;
    font-weight: bold;
    font-family: 'Outfit', Verdana, Lucida;
    margin-top: 1px;
}

.navbar .nav-link:hover {
    color: #FF6347;
    transform: scale(1.1);
}

h2 {
    font-family: 'Times New Roman', Times, serif;
    color: #f3f6f1;
    font-weight: bold;
    text-align: center;
    font-size: 2rem;
    text-transform: uppercase;
}

.artists {
    padding: 1rem;
    background: linear-gradient(to bottom, #74EBD5, #9FACE6);
    color: #fff;
    text-align: center;
}

.description {
    font-family: 'Times New Roman', Times, serif;
    font-size: 2.0rem;
    font-weight: bold;
    color: #117c79;
    margin-bottom: 0.2rem;
    text-align: center;
    width: 100%;
    padding-bottom: 1rem;
}

.artists h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.artist-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    width: 100%;
}

.artist {
    display: flex;
    flex: 1 1 calc(25% - 2rem);
    min-width: 250px;
    max-width: 400px;
    text-align: center;
    margin: 10px;
    justify-content: center;
    flex-direction: column;
}

.artist-name {
    margin-top: 1.5rem;
    font-size: 1.2rem;
    color: #333;
    font-weight: bold;
}

.artist-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    border-top: 3px solid #117c79;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
    aspect-ratio: 4/3;
}

.artist-photo:hover {
    transform: scale(1.05);
}

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
    background-color: white;
    border-top: 3px solid #D5C8C8;
    font-family: 'Inter', Verdana;
    font-size: 0.9rem;
    color: #1E2022;
    width: 100%;
    margin-top: auto;
}

footer p {
    margin-top: 1px;
    color: #666;
}

.social-media {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
    margin-top: 3px;
}

.social-media img {
    width: 25px;
    height: 25px;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
    display: block;
    border-radius: 50%;
}

.social-media img:hover {
    transform: scale(1.1);
    background-color: rgb(179, 255, 255);
    border-radius: 50%;
}

.background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    overflow: hidden;
    pointer-events: none; 
}
.header, .content, .footer,.artist-photo {
    position: relative; 
    z-index: 10 
}


.header, .content, .footer ,.artist-photo {
    z-index: 10; 
}

.shape {
    position: absolute;
    border: 5px solid rgba(255, 255, 255, 0.25); 
    background: none;
    border-radius: 0; 
}


.shape.circle {
    border-radius: 100%;
    top: 100%;
    left: 100%;
}


.shape.square {
    border-radius: 0;
}


.shape.triangle {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 70px solid rgba(255, 255, 255, 0.25); /* Semi-transparent triangle */
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
        padding: 0;
    }

    .header {
        flex-direction: column;
        align-items: center;
    }

    .logo-container {
        width: 100%;
    }

    .logo {
        max-width: 400px;
        height: auto;
        margin: auto;
    }

    .artists {
        padding: 0.5rem;
    }

    .description {
        font-size: 1.5rem;
        padding: 0.5rem;
    }

    .artist-list {
        gap: 1rem;
    }

    .artist {
        flex: 1 1 calc(50% - 1rem);
        max-width: 300px;
    }

    .artist-photo {
        width: 100%;
        aspect-ratio: auto;
    }

    footer {
        font-size: 0.8rem;
        padding: 10px 0;
    }

    .social-media img {
        width: 18px;
        height: 18px;
    }

    .navbar .nav-link {
        font-size: 10px;
        padding: 3px;
    }

    .navbar {
        gap: 3px;
        flex-direction: row;
        align-items: center;
    }

    .navbar .nav-link {
        font-size: 10px;
        padding: 1px;
    }
    .artists h2{
        font-size: 2.5rem;
    }
}

@media (max-width:480px) {
    .background-shapes {
        position: relative;
        width: 100%;
        height: 100%;
        z-index: -1;
        overflow: hidden;
    }

    .artists h2{
        font-size: 1rem;
    }
}






    
              

    









