* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Trebuchet MS", sans-serif;
}

a {
    text-decoration: none;
    color: rgb(238, 236, 234);
}

body {
    background-color: #cdcdcd;
    color: #333;
    transition: 0.3s ease;
    background-size: cover;
    background-repeat: no-repeat;

    -webkit-tap-highlight-color: transparent;
    background-attachment: fixed;
    background-position: center top;

}

.link {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 34px;
    color: rgb(238, 236, 234);
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.685);
    text-align: left;
    font-weight: bold;
}

.link:hover {
    transition: 0.2s ease-in-out;
    transform-origin: center center;
    display: inline-block;
    cursor: pointer;
    text-shadow: 3px 3px 2px rgba(0, 0, 0, 0.409);
    color: rgb(248, 248, 177);

}

.marquee {
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    max-width: 600px;
    margin: 0 auto;
}

.marquee h4 {
    display: inline-block;
    padding-left: 100%;
    animation: scroll-left 30s linear infinite;

}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-130%);
    }
}


header {
    margin-bottom: 2rem;
    text-align: center;
    color: rgb(238, 236, 234);
    font-size: 25px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.299);
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    text-align: left;

}


.logo-cont {
    perspective: 600px;
    display: inline-block;
}



.logo {
    display: block;
    width: 250px;
    margin: 20px;
    transform: rotateX(15deg) rotateY(-15deg);
    transform-origin: center center;
    transition: transform 0.3s ease;
    border-radius: 50%;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.25);
}

.gig {
    color: white;
    font-size: 25px;
    margin-left: 2rem;
    font-weight: bold;
    text-decoration: none;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.444);
}

.gig:hover {
    transition: 0.2s ease-in-out;
    color: rgb(248, 248, 177);
    text-shadow: 3px 3px 2px rgba(0, 0, 0, 0.409);
}


.logo:hover {
    transform: rotateX(0deg) rotateY(0deg);
}

ul {
    list-style-type: none;
}

.gig-list {
    overflow: hidden;
    height: 0;
    transition: height 0.3s ease;
}

.gig-list li {
    margin-bottom: 10px;
}




#gallery-section {
    min-height: 100vh;
    padding: 40px 0;
}

.gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    justify-items: center;
    /* horizontally center items */
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.gallery.visible {
    opacity: 1;
    transform: translateY(0);
}

.gallery img {
    max-width: 40%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}

.gallery img:hover {
    transform: scale(1.05);
}

@media (max-width: 800px) {
    body {
        background-size: auto 100vh;

        background-attachment: fixed;
        background-position: center top;
    }

    .link {
        text-align: left;

    }

    .gig {
        font-size: 15px;
    }

    main {
        align-items: flex-start;
        padding-left: 2rem;
        padding-right: 1rem;
    }

    .logo {
        width: 150px;
        height: 150px;
    }

    .gallery {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        justify-items: center;
        /* horizontally center items */
        opacity: 0;
        transform: translateY(50px);
        transition: all 0.8s ease-out;
    }

    .gallery img {
        max-width: 90%;
        height: auto;
        display: block;
        border-radius: 12px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
    }


}