/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face { font-family: "sun"; src: url("fonts/Summer\ PERSONAL\ USE\ ONLY!.ttf"); }
@font-face { font-family: "love"; src: url("fonts/Loveandsunshine-Z9dm.otf"); }


body {
    background-color: rgb(0, 0, 0);
    background-image: url("pics/ls-bg5.png");
    background-position: cover;
    margin: 0;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    position: relative;
}

.wrap {
    display: inline-block;
    background-color: rgb(14, 14, 14);
    border: 1px dashed rgb(255, 221, 0);
    padding: 50px 18px;
    width: 80%;
    min-height: 100vh;
}

h1 {
    position: relative;
    display: flex;
    justify-content: center;
    font-family: "sun";
    color: rgb(255, 208, 40);
    text-shadow: 2px 2px 4px black,
    -1px -1px 2px rgb(22, 22, 22);
    filter: drop-shadow(0 0 30px rgb(255, 151, 16));
    font-size: 76px;
}

p {
    position: relative;
    display: flex;
    justify-content: center;
    color: rgb(244, 244, 244);
    text-shadow: 2px 2px 4px black;
    font-family: "love";
    font-size: 56px;
    margin-top: 10px;
}

.character-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 280px;
    margin-top: 50px;
}


#ls1 {
    height: 270px;
    animation: rotate-shake 0.30s linear infinite;
}

#ls2 {
    height: 270px;
    animation: bounce 1.4s ease-in-out infinite;
}


@keyframes rotate-shake {
    0%   { transform: rotate(0deg); }
    25%  { transform: rotate(-3deg); }
    50%  { transform: rotate(3deg); }
    75%  { transform: rotate(-3deg); }
    100% { transform: rotate(0deg); }
}

@keyframes bounce {
    0%   { transform: translateY(0); }
    30%  { transform: translateY(-12px); }
    60%  { transform: translateY(0); }
    100% { transform: translateY(0); }
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 140px;
    justify-content: center;
    margin-top: 90px;
}

iframe {
    border: none;
}


/* MOBILE — screens 600px and under */
@media (max-width: 600px) {

    body {
        background-color: black;
        background-image: url("pics/ls-mb4.png");
        background-position: cover;
        margin: 0;
    }

    /* Make the wrapper breathe */
    .wrap {
        width: 85%;
        padding: 40px 10px;
        text-align: center
    }

    /* Scale down the title */
    h1 {
        font-size: 48px;
        line-height: 1.2;
    }

    /* Scale down the subtitle */
    p {
        font-size: 30px;
        margin-top: 35px;
    }

    .character-row {
        flex-direction: column;
        gap: 45px;
        margin-top: 40px;
        margin-bottom: 40px;
    }

    #ls1, #ls2 {
        height: 180px;
    }

    /* Video grid becomes a single column */
    .video-grid {
        display: flex;
        flex-direction: column;
        gap: 40px;
        align-items: center;
        margin-top: 40px;
    }

    /* Make videos responsive */
    iframe {
        width: 60vw;
        height: auto;
        aspect-ratio: 9 / 16; /* keeps YouTube Shorts shape */
    }
}
