@import url('https://fonts.googleapis.com/css2?family=New+Rocker&family=Splash&family=Tillana:wght@400;500;600;700;800&display=swap');


body {
    background-image: url('png_veci/backround2.gif');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    margin: 0;
    overflow: hidden;
    height: 100vh;
    height: 100dvh;
}

.intro {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
    overflow: hidden;
    padding-top: 4vh;
    padding-bottom: 2vh;
    position: relative;
}

.intro a{
    text-decoration: none !important;
    margin-top: 5vh;
    margin-bottom: 2vh;
}

.intro-buttons {
    display: flex;
    gap: 60px;
    justify-content: center;
    align-items: center;
    margin-top: 5vh;
    margin-bottom: 2vh;
}

.intro-buttons a {
    margin-bottom: 0;
}

.intro-buttons a p {
       width: 22vw;
    aspect-ratio: 1.5 / 1;
}

@keyframes floatAndSpin {
    0% {
        transform: translateY(0) rotateZ(-2deg);
        text-shadow: 0 0 20px #636363;
    }
    50% {
        transform: translateY(-15px) rotateZ(2deg);
        text-shadow: 0 0 20px #636363;
    }
    100% {
        transform: translateY(0) rotateZ(-2deg);
        text-shadow: 0 0 20px #636363;
    }
}


#introImage {
    height: 40vh;
    width: auto;
}

.intro h1{
    font-size: 10vw;
    color: #000000;
    margin-top: 6vh;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    font-family: "Splash", cursive;
    font-weight: 400;
    font-style: normal;
    padding: 25px;
    animation: floatAndSpin 4s ease-in-out infinite;
}

.intro h2{
    width: 100%;
    font-size: 1.8vw;
    color: #ffffff;
    background-color: #000000;
    margin-top: -6vh;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Tillana", system-ui;
    font-weight: 400;
    font-style: normal;
    padding: 5px 0;
}

.intro h3{
    position: absolute;
    bottom: 1vh;
    left: 0;
    right: 0;
    font-size: 1vw;
    color: #000000;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Tillana", system-ui;
  font-weight: 400;
  font-style: normal;
    padding: 5px;
}




.intro p{
    font-size: 8vw;
    margin-top: -2vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 32px 28px;
    color: rgb(255, 255, 255);
    background: linear-gradient(135deg, #000000, #313131, #d1d1d1);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    transition: transform 0.3s ease, background 0.3s ease;
    position: relative;
    transform-origin: center;
}

.intro p .button-text {
    display: inline-block;
    font-size: 8vw;
    transform: scale(0.55);
    transform-origin: center;
      font-family: "Splash", cursive;
    font-weight: 400;
    font-style: normal;
    text-decoration: none !important;
}

.intro p:hover {
    color: rgb(253, 107, 107);
    cursor: pointer;
    transform: scale(1.15);
    background: linear-gradient(135deg, rgb(0, 0, 0), rgb(200, 50, 50));
}

/* Intro Lightbox Styles - REMOVED */

.intro-lightbox-close {
    position: fixed;
    top: 5px;
    right: 50px;
    color: rgb(255, 222, 152);
    font-size: 80px;
    font-family: "Splash", cursive;
    cursor: pointer;
    line-height: 1;
    transition: all 0.2s ease;
    z-index: 10001;
}

.intro-lightbox-close:hover {
    color: rgb(255, 245, 152);
    transform: scale(1.5);
}



/* ========== INDEX PAGE — PHONE ========== */
@media (max-width: 900px) {

    body {
        background-attachment: scroll;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
    }

    .intro {
        justify-content: space-between;
        align-items: center;
        text-align: center;
        padding: 5vh 20px 4vh;
    }

    .intro h1 {
        font-size: clamp(2.8rem, 14vw, 4.5rem);
        margin-top: 0;
        margin-bottom: 0;
        padding: 12px 16px;
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .intro h2 {
        font-size: clamp(1.15rem, 4.8vw, 1.65rem);
        margin-top: 1.25rem;
        margin-bottom: 0;
        padding: 0 8px;
        width: 100%;
        max-width: 100%;
        text-align: center;
        display: block;
        line-height: 1.45;
    }

    .intro h3 {
        position: relative;
        bottom: auto;
        font-size: clamp(1rem, 4.2vw, 1.4rem);
        margin-top: auto;
        padding: 12px 8px 0;
        width: 100%;
        text-align: center;
        line-height: 1.4;
    }

    .intro-buttons {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        margin: 2vh auto;
        width: 100%;
    }

    .intro a {
        margin: 0;
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .intro-buttons a p {
        width: min(300px, 78vw);
        height: min(200px, 52vw);
        margin: 0 auto;
    }

    .intro p .button-text {
        font-size: clamp(2.5rem, 12vw, 4rem);
        transform: scale(0.65);
    }
}