
/*Homepage*/

/* Load Custom Font: SpriteGraffiti */
@font-face {
    font-family:'SpriteGraffiti' ;
    src: url(fonts/Sprite\ Graffiti.ttf);
}

/* Headings (h1 and h2) Styling */
h1, h2, h3{
    font-family: 'SpriteGraffiti' , sans-serif;  /* Use custom font with fallback */
    color: white; 
}

/* Hides scrollbars from ALL Browsers */
 body{
    scrollbar-width: none;        /* Firefox */
    -ms-overflow-style: none;     /* Internet Explorer and Edge */
    background: black;
    color: white
 }

 body::-webkit-scrollbar{
    display: none;                /* Chrome, Safari */
 }


        /* Reset to default margin/padding and set background color */
        html, body {
            margin:0;
            padding: 0;
            overflow-x: hidden;
            background-color: black;
        }

        header {
        border: var(--parent);
        display: grid;
        grid-template-columns: 1fr;
        justify-content: space-between;
        position: sticky;
        top: 0;
        width: 100%;
        min-width: 100vw;
        }

        @media(max-width: 425px) {
          .video-container{
           width: 100vw;
          }
        }

/* Video Banner Container */
        .video-container {
            position: relative;      /* Needed for absolutely-positioned text */
            width: 100vw;                /* Full screen width */
            height: 150px;              /* Height for banner */
            border: 4px solid red;    /* Red Boarder around the banner */
            box-sizing: border-box;     /* Includes border in total size */
            overflow: hidden;           /* Hide overflow content */
            margin: 0;
            padding: 0;
            top: 0;
            z-index: 1;
            display: flex;
        }
    
        /* Video Styling */
        .webBanner-video {
            width: 100%;                /* Stretch video across full width */
            height: 100%;               /* Match the container height */
            object-fit: cover;          /* Cover the entire container */
            display: block;             /* Removes default spacing */
            z-index: -2;
            border: none;
         }

/* Navigation Bar */
.navbar {
    width: 100%;
    position:absolute;
    bottom: 60px;
    left: 5px;
    z-index: 2000;
}

.navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: left;
}

.navbar li {
    margin: 0 5px;
}

.navbar a {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: white;
    -webkit-text-stroke: 1.5px red; 
    font-family: 'SpriteGraffiti' , sans-serif;
    font-size: 25px;
    transition: color 0.3;
}

.navbar a:hover{
    color: red;
}

/* Text Positioned over Video */
.video-text {
    position: absolute;                /* Position relative to video container */
    top: 50%;                          /* Center vertically */
    left: 50%;                         /* Center horizontally */
    transform: translate(-50%, -50%);  /* Fine-tuned centering */
    text-align: center;                /* Center the text lines */
    color: white;                    /* White text color */
    -webkit-text-stroke: 1px red;    /* Optional stroke around letters for readability */
    z-index: 2;
}

/* Heading Text Inside Video Overlay */
.video-text h1{
    font-size: 40px;
    margin: 0;          /* Remove default spacing */
}

.video-text h2{
    font-size: 30px;
    margin-top: 1px;   /* Minimal spacing under h1 */
}


/* Logo Image Postitioning */
.img-SELogo{
    position: absolute;           /* Allows offset positioning */
    top: 20px;                    /* Push image far to the right (may not be responsive) (it is) */
    right: 20px;  
    transform: translateY(-5%);    /* Rises image up */
    width: 120px;                 /* Set image width */  
    z-index: 1000;
}

.top-left-text h2{
    position: absolute;
    top: 165px;
    left: 150px;
    width: 1000px;
    color: black;
    font-size: 55px;
     -webkit-text-stroke: 1px red;
     text-align: center;
     text-decoration: underline;
}

.top-left-text h3{
    position: absolute;
    top: 240px;
    color: black;
    -webkit-text-stroke: 1px red;
    width: 1000px;
    font-size: 40px;
    text-align: center;
    left: 150px;
}


/* Fukk-Width Image (ex: RECO Family Photo) */
.img-RECOFAM {
  width: 100vw;            /* Full viewport width */
  height: auto;            /* Maintain aspect ratio */
  display: block;          /* Removes extra space below image */
  object-fit: cover;       /* Ensure image covers width cleanly */
  margin: 0;
  padding: 0;
}

.img-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: -150px;   /* Move first row UP a bit */
    margin-left: 10px;   /* Move first row LEFT */
}

.img-row2 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 40px;    /* Push second row DOWN to avoid collision */
    margin-left: 10px;   /* Same left offset */
}

/* Individual images */
.img-SK_HP, .img-HF_HP, .img-Rage_HP, .img-TTS_HP {
    display: block;              /* removes inline spacing */
    max-width: 700px;            /* set a reasonable max width */
    height: auto;                /* keep proportions */
    object-fit: cover;           /* crops nicely if width/height forced */
    border-radius: 8px;          /* optional: rounded corners */
}

.side-video{
    position: absolute;
    width: 24%;
    height: auto;
    right: 20px;
    top: 800px;
    transform: translateY(10%);   
    border: 8px solid red;
}



.slider {
    position: relative;
    top: 20px;
    right: 20px;
    width: 25%;
    height:auto;
    margin-left: auto;
    overflow: hidden;
    z-index: 1000;

    border: 8px solid red;
    box-sizing: border-box;
    border-radius: 8px;
}

.slider img {
    width: 100%;
    display: none;
}
img.displaySlide{
   display: block; 
   animation-name: fade;
   animation-duration: 1.5s;
}

.slider button{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    padding: 10px 15px;
    background-color: black;
    color: red;
    border: none;
    cursor: pointer;
    z-index: 10;
}

.previous {
    left: 10px;
}

.next {
    right: 0px;
}

@keyframes fade {
    from {opacity: .5}
    to {opacity: 1}
}


.bottom-text{
    text-align: center;
    margin: 40px auto;
    padding: 20px;
    max-width: 1000px;
    margin-top: .5%;
    z-index: 2;
    position: relative;
}

.bottom-text h2{
    color: black;
    -webkit-text-stroke: 1px red;
    font-size: 70px;
    text-decoration: underline red;
}

.bottom-text h3{
    color: black;
    -webkit-text-stroke: 1px red;
    font-size: 35px;
    margin-top: -5%;
}

.banner-container{
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
    z-index: 0;
    margin: 0;
    padding: 0;
    border: 8px solid red;
    box-sizing: border-box;
}

.moving-banner{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: 8px solid black;
    box-sizing: border-box;
}

body, html{
    margin: 0;
    padding: 0;
    height: auto;
    overflow-x: hidden;
}

/*Phone View*/
@media (max-width: 390px) {
    .video-container{
    height: 80px;
    justify-content: center;
    }

    .webBanner-video{
        width:100%;
        height: 100%;
        object-fit: cover;
    }

 .video-text h1 { font-size: 13px; -webkit-text-stroke: .2px red; }
 .video-text h2 { font-size: 10px; -webkit-text-stroke: .2px red; }
 .img-SELogo { width: 50px; top: 2%; right: 10px; }
 .top-left-text h2 {
    top: 10%;
    left: 30px;
    width:60vw;
    font-size: 18px;
    -webkit-text-stroke: .2px red;
 }

.top-left-text h3{
    top: 16%;
    left: 8px;
    width:65vw;
    font-size: 12px;
    -webkit-text-stroke: .2px red;
}

 .slider {
    position: relative;
    width: 30vw;
    top: 30px;
    right: 0;
 }

   .slider button {
    font-size: 0.6rem;   /* smaller text */
    padding: 4px 6px;    /* smaller button size */
  }



 .side-video { width: 30vw; top: 27%; right: 0; }
 .img-row, .img-row2 { flex-direction: wrap; gap: 10px; margin-left: 0; margin-top: 1%; }
 .img-SK_HP, .img-HF_HP, .img-Rage_HP, .img-TTS_HP { width: 30vw; position: relative;top: 25px; }
 .bottom-text h2 { margin-top: 0; font-size: 40px; position: relative; top: 25px;}
 .bottom-text h3 { margin-top: 0; font-size: 18px; -webkit-text-stroke: .2px red}

 .banner-container{
    width: 100%;
    height: 250px;
    object-fit: cover;
 }
   .navbar {
    position: absolute;
    top: 6%;
    display: flex;
    width: 100%;
    z-index: 2000;
    
  }

  .navbar ul {
    display: flex;
    flex-direction: row;      /* horizontal */
    flex-wrap: nowrap;        /* don’t stack */
    justify-content: flex-start;
    width: auto;
    gap: .3px;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .navbar li {
    margin: 0;
  }

  .navbar a {
    font-size: 10px;
    padding: 8px 10px;
    text-decoration: none;
    color: white;
    -webkit-text-stroke: .2px red;
  }
}






/*Content Page*/
.content-header h1{
    font-size: 70px;
    -webkit-text-stroke: 1px red; 
}