/* ============================== */
/* RESET & BASE STYLES            */
/* ============================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

/* ============================== */
/* VIDEO BACKGROUND              */
/* ============================== */

.video-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#video-hero {
    height: 100%;
    width: 100%;
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
}

#bg-video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    align-self: center;
    transition: opacity 0.5s ease;
}

/* ============================== */
/* TOP LOGO                       */
/* ============================== */

#top_image {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 1002;
    pointer-events: none;
}

#top_image img {
    height: 300px;
    width: auto;
}

#top_image img:hover {
    transform: none !important;
}

/* ============================== */
/* SIDE PANELS                    */
/* ============================== */

/* LEFT SIDE PANEL - Social Media Icons (Discord, TikTok, etc.) */
#side_pannel {
    width: 90px;
    justify-self: left;
    position: fixed;
    margin-left: 50px;
    margin-top: 20px;
    z-index: 1001;
}

/* RIGHT SIDE PANEL - Mail and Info Icons */
#side_panne2 {
    width: 130px;
    justify-self: right;
    position: fixed;
    margin-top: 20px;
    z-index: 1001;
}

/* ============================== */
/* GENERAL IMAGE STYLES           */
/* ============================== */

img {
    height: 150px;
    transition: transform 0.3s ease;
}

img:hover {
    transform: translate(30px, 0);
}

/* ============================== */
/* SIDE PANEL ICONS               */
/* ============================== */

/* LEFT SOCIAL ICONS (Discord, TikTok, etc.) */
#social_icons {
    height: 70px;
    transition: transform 0.5s ease;
}

#social_icons:hover {
    transform: translate(70px, 0);
}

/* RIGHT SOCIAL ICONS (Mail, Info) */
#social_icons2 {
    height: 100px;
    transition: transform 0.5s ease;
}

#social_icons2:hover {
    transform: translate(-50px, 0);
}

/* ============================== */
/* FRONT SCREEN CONTAINER         */
/* ============================== */

#front_screen {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    min-height: 500px;
    padding: 20px;
    margin: 0;
    border-radius: 0;
    position: relative;
    z-index: 1;
}

/* ============================== */
/* MAIN CONTENT - Heading + Icons */
/* ============================== */

#social_medias {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    max-width: 95%;
    gap: 10px;
    padding: 10px;
    padding-top: 500px;
    position: relative;
}

/* Heading */
h1 {
    text-align: center;
    font-size: 35px;
    color: rgb(255, 255, 255);
    margin-bottom: 5px;
    width: 100%;
}

/* ============================== */
/* SECTION ICONS                  */
/* ============================== */

#sections_icons {
    display: flex;
    flex-direction: row;
    gap: 15px;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-wrap: nowrap;
    overflow: visible;
}

#img_icons {
    height: 80px;
    width: auto;
    transition: transform 0.5s ease;
    flex-shrink: 0;
}

#img_icons:hover {
    transform: translate(0, -20px);
}

/* ============================== */
/* MISCELLANEOUS                  */
/* ============================== */

#top {
    text-align: center;
    font-size: 150px;
}

#fannar_text {
    text-align: left;
    margin-left: 35%;
}

fieldset {
    width: 100px;
}

/* ============================== */
/* RESPONSIVE - TABLET (1024px)   */
/* ============================== */

@media (max-width: 1024px) {
    /* Section Icons */
    #img_icons {
        height: 60px;
    }
    
    #sections_icons {
        gap: 10px;
    }
    
    h1 {
        font-size: 28px;
    }

    /* Side Panels */
    #side_pannel {
        margin-left: 15px;
        width: 60px;
    }

    #side_pannel img {
        height: 40px;
    }

    #side_panne2 {
        width: 60px;
        margin-right: 15px;
    }

    #side_panne2 img {
        height: 40px;
    }

    #social_icons {
        height: 40px;
    }

    #social_icons2 {
        height: 40px;
    }

    /* Top Logo */
    #top_image img {
        height: 200px;
    }
}

/* ============================== */
/* RESPONSIVE - PHONE (768px)     */
/* ============================== */

@media (max-width: 768px) {
    /* Section Icons */
    #img_icons {
        height: 45px;
    }
    
    #sections_icons {
        gap: 8px;
    }
    
    h1 {
        font-size: 22px;
    }

    /* Top Logo */
    #top_image img {
        height: 120px;
    }

    /* Side Panels */
    #side_pannel {
        margin-left: 10px;
        width: 45px;
    }

    #side_pannel img {
        height: 30px;
    }

    #side_panne2 {
        width: 45px;
        margin-right: 10px;
    }

    #side_panne2 img {
        height: 30px;
    }

    #social_icons {
        height: 30px;
    }

    #social_icons2 {
        height: 30px;
    }
}

/* ============================== */
/* RESPONSIVE - SMALL PHONE (430px) */
/* ============================== */

@media (max-width: 430px) {
    /* Section Icons */
    #img_icons {
        height: 35px;
    }
    
    #sections_icons {
        gap: 5px;
    }
    
    h1 {
        font-size: 18px;
    }

    /* Side Panels */
    #side_pannel {
        margin-left: 5px;
        width: 30px;
    }

    #side_pannel img {
        height: 20px;
    }

    #side_panne2 {
        width: 30px;
        margin-right: 5px;
    }

    #side_panne2 img {
        height: 20px;
    }

    #social_icons {
        height: 20px;
    }

    #social_icons2 {
        height: 20px;
    }

    #social_icons:hover {
        transform: translate(20px, 0);
    }

    #social_icons2:hover {
        transform: translate(-20px, 0);
    }

    /* Top Logo */
    #top_image img {
        height: 70px;
    }
}

/* ============================== */
/* RESPONSIVE - EXTRA SMALL (360px) */
/* ============================== */

@media (max-width: 360px) {
    /* Section Icons */
    #img_icons {
        height: 28px;
    }
    
    #sections_icons {
        gap: 4px;
    }
    
    h1 {
        font-size: 16px;
    }

    /* Side Panels */
    #side_pannel {
        margin-left: 3px;
        width: 25px;
    }

    #side_pannel img {
        height: 16px;
    }

    #side_panne2 {
        width: 25px;
        margin-right: 3px;
    }

    #side_panne2 img {
        height: 16px;
    }

    #social_icons {
        height: 16px;
    }

    #social_icons2 {
        height: 16px;
    }

    #social_icons:hover {
        transform: translate(15px, 0);
    }

    #social_icons2:hover {
        transform: translate(-15px, 0);
    }

    /* Top Logo */
    #top_image img {
        height: 50px;
    }
}
