@charset "UTF-8";
/* CSS Document */

body{
	/*background-color: #d9d7c7;*/
	background: linear-gradient(45deg, /*#382a4a,*/#464646, #464646,  #d2ff03);
	padding-top: 0px;
	margin: 0px;
	margin-left: -8px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
           animation: fadeInAnimation ease 2s;
            animation-iteration-count: 1;
            animation-fill-mode: forwards;
        }
        @keyframes fadeInAnimation {
            0% {
                opacity: 0;
            }
            100% {
                opacity: 1;
            }
        }

span.redacted {
    color: #cbf801;
    background-color: #cbf801;
}

/*------------INTRO---------------*/
 #video-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        #video-background {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        #intro_overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.80); /* 50% transparent black overlay */
            z-index: 0;
        }

        #intro_content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: #fff;
            z-index: 1;
            max-width: 600px; /* Set to the maximum width of the image */
            margin: 0 auto; /* Center the content horizontally */
        }

        #intro_content img {
            width: 100%;
            max-width: 600px;
            height: auto;
            display: block; /* Ensures the image doesn't have extra space below */
            margin: 0 auto; /* Center the image horizontally */
			margin-bottom: 10px;
        }

        #intro_copy {
            margin: 60px 0;
			font-style: oblique;
			color: #cbf801;
			font-size: 22pt;
        }

        #cta-button {
            display: inline-block;
            text-decoration: none;
            background-image: url("images/Button-pattern4.gif");
            text-transform: uppercase;
            background-repeat: repeat;
            background-size: 35px;
            font-family: 'Archivo Black', sans-serif;
            font-weight: bolder;
            font-size: 30px;
            height: 50px;
            width: 250px;
            color: #363636;
            border-radius: 10px;
            padding: 20px 30px 0px 30px;
        }

        #cta-button:hover {
            background-image: url("images/Button-pattern5.gif");
            background-repeat: repeat;
            background-size: 35px;
        }

        @media only screen and (max-width: 768px) {
             #intro_copy {
            font-size: 16pt; /* Adjust the font size for smaller screens */
			}}
			
/*-------------END INTRO-------------*/

.popup-container {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(45deg, /*#382a4a,*/#464646, #464646,  #d2ff03);
	/*background-image: url("images/bg2.jpg");
	background-position: center;*/
	/*background: radial-gradient(circle, #1f1a26, #363636);*/
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 11;
}

.popup {
	color: #d2ff02;
  padding: 20px;
	margin-top: -100px;
  max-width: 600px; /* Adjust the width as needed */
  text-align: center;
	z-index: 99;
}/*end overlay*/


.popimage {
	border: 0px solid red;
	width: 100%;
	height: 300px;
	background-image: url("images/Vibe-Animation-Fire.gif");
	background-repeat: no-repeat, repeat;
	background-size: 500px;
	background-position: center;
}

.popbeta {
	padding: 20px;
	letter-spacing: 2em;
	margin-right: -30px;
	border: 0px solid black;
	align-content: center;
	text-align: center;
}

.popcopy {
	text-transform: uppercase;
	font-size: clamp(1rem, 2vw + 0.75rem, 1.5rem);
	/*font-size: 26px;*/
	letter-spacing: .1em;
	line-height: 1.7;	
	text-align: justify;
	text-justify: inter-word;
	align-content: center;
}

.screenshot {
	border: 3px solid black;
	position:absolute;
	float: right;
	display: flex;
	margin: 0px;
	width: 100%;
	height: 1000px;
	top: 0px;
	left: 0px;
	z-index: -10;
	
	
	
}

/*MENU*/
 #menu-button {
      position: fixed;
      top: 20px;
      right: 20px;
      cursor: pointer;
      z-index: 1;
    }

    #menu-button img {
      width: 30px;
      height: 30px;
    }

    #fullscreen-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 100%;
      height: 100%;
      background-color: #cbf801; /* Green background color */
      transition: right 0.3s ease;
      z-index: 98;
      box-sizing: border-box;
      padding: 20px;
      color: #fff;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
		text-transform: uppercase
    }

    #close-button {
      position: absolute;
      top: 20px;
      right: 20px;
      cursor: pointer;
      transition: transform 0.5s ease;
	  z-index: 99;
    }
    #close-button img {
      width: 30px;
      height: 30px;
    }

    #close-button:hover {
      transform: rotate(90deg);
    }

    #fullscreen-menu a {
      text-decoration: none;
	  font-family: 'Archivo Black', sans-serif;
	  color: #363636;
      font-size: 10px;
      margin-bottom: 15px;
      padding: 50px;
      width: 100%;
      box-sizing: border-box;
      opacity: 0;
      transform: translateX(20px);
      transition: font-size 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
      position: relative;
    }

    #fullscreen-menu a.show {
      font-size: 60px;
      opacity: 1;
      transform: translateX(0);
    }

    #fullscreen-menu a:hover::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background-color: #363636;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.5s ease;
    }
/*END MENU*/




.linebreak {
	height: 0px;
	background-color: #363636;
	flex-basis: 100%;
}


.header {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    align-content: center;
    align-items: center;
    height: 70px;
    position: sticky;
    top: 0; /* Stick to the top of the viewport */
	background: linear-gradient(45deg, /*#382a4a,*/#464646, #464646,  #d2ff03);
	z-index: 100; /* Set a higher z-index to ensure it's above other elements */
}

a {
	  position: relative;
	  color: #000;
 	 text-decoration: none;
}

a:hover {
}

.menu-link::before {
	  content: "";
	  position: absolute;
	  display: block;
	  width: 100%;
	  height: 2px;
	  bottom: 0;
	  left: 0;
	  background-color: #000;
	  transform: scaleX(0);
	  transition: transform 0.3s ease;
}

.menu-link:hover::before {
  transform: scaleX(.6);
}


.close-link::before {
  display: block;
  margin-top: 0px;
  color: #363636; 
  text-decoration: none;
  cursor: pointer;
	text-transform: none;
}

.close-link:hover::before {
	color: #363636;
	height: 300px;
  transform: scaleX(0);
	text-decoration: none;
}

.logo {
  display: flex;
  flex-wrap: block;
  height: 50px;
  padding: 10px 30px 10px 20px;
  margin-right: 50px;
  margin-left: 0px;
  float: left;
  position: absolute;
  left: 0px;
  width: 200px;
}

.logo div {
  height: 50px;
  width: auto;
}

.logo img {
  height: 100%;
  width: auto;
  display: block;
}

/* Media query for screens with a maximum width of 768px (typical for mobile devices) */
@media only screen and (max-width: 768px) {
  .logo {
    width: 68px; /* Adjust width for mobile screens */
    margin-right: 20px; /* Adjust margin for spacing on mobile */
  }

  .logo img {
    content: url('images/Vibe_Shuffle_Logo_Mark.png'); /* Provide the path to your smaller image */
	  height: 60%;
	  margin-top:10px;
	  margin-left: 5px;
  }
}




.navbtn {
	padding: 20px;
	border-color: black;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	border-width: 4px;
	display: flex;
	flex-wrap: wrap;
}


.mainbtn-shuffle {
	background-image: none;
	background-image: url("images/Button-pattern4.gif");
	background-repeat: repeat;
	background-size: 35px;
	font-family: 'Archivo Black', sans-serif;
	font-size: 30px;
	font-weight: bolder;
	font-size: 24px;
	margin-top: 0px;
	margin-left: 0px;
	height: 50px;
	width: 200px;
	color:#363636;
	/*background-image: url("images/Button-pattern3.gif");
	background-repeat: repeat;
	background-color: #d2ff02;
	background-size: 65px;
	border: 3px solid #363636;*/
	border-radius: 10px;
	padding: 0px 20px 0px 20px;
	/*box-shadow: 2px 2px 0 0 #d9d7c7, 5px 5px 0 0 #363636;*/
}

.mainbtn-shuffle:hover{
	/*box-shadow: 4px 4px #d9d7c7, 8px 8px 0 0 #363636;
	transform: translate(-6px -6px);*/
	background-image: none;
	background-image: url("images/Button-pattern5.gif");
	background-repeat: repeat;
	background-size: 35px;
}



ul {
	list-style-type: none;
	margin-left: 160px;
}
li {
	float: left;
	
}

li a {
 	display: block;
  	padding: 8px;
}


#container{
	width: 100%;
    height: auto;
	display: flex;
	flex-wrap: wrap;
	border-radius: 5px;
}

#inner_container1, #inner_container2, #inner_container3, #inner_container4, #inner_container5, #inner_container6, #inner_container7, #inner_container8, #inner_container9 {
	display: flex;
    flex-wrap: wrap;
    width: 33.333%;
    height: 33%;
    /*min-width: 300px;  Adjust the max-width as needed */
    box-sizing: border-box; /* Include padding and border in the total width and height */
    margin: 0;
    padding: 0;
    object-fit: cover;
    border: 0;
}

#image_shower1, #image_shower2, #image_shower3, #image_shower4, #image_shower5, #image_shower6, #image_shower7, #image_shower8, #image_shower9 {
	border: 0px;
	}

img{
	border-radius: 0px;
	float:left;
	width:100%;
	height:300px;
	object-fit:cover;
}

/* Media query for screens with a maximum width of 767 pixels (typical for mobile devices) */
@media only screen and (max-width: 767px) {
  img {
    height: 180px; /* Adjusted height for mobile */
  }
}

.icon{
	height: 30px;
	
}


#button_container1, #button_container2, #button_container3, #button_container4, #button_container5, #button_container6, #button_container7, #button_container8, #button_container9 {
	width: 40px;
	height: 100%;
	margin-left: 100%;
}

.containername{
	/*font-family: 'Archivo Black', sans-serif;*/
	color: #CAC3A9;
	margin-top: 240px;
	margin-left: 0px;
	display: flex;
	flex-wrap: wrap;
	float: left;
	position: absolute;
	background: rgba(0,0,0,0.5);;
	/*background: #cbf801;*/
	/*background-image: url("images/name-bg.png");*/
	text-transform:capitalize;
	padding: 24px  10px 6px 8px;
	min-width: 140px;
	border-bottom-right-radius: 5px;
	border-top-right-radius: 5px;
}

/* Media query for screens with a maximum width of 767 pixels (typical for mobile devices) */
@media only screen and (max-width: 767px) {
  .containername {
    margin-top: 120px; /* Adjusted top margin for mobile */
	  font-size: 14px;
	  min-width: 100px;
  }
}

.containercategory{
	font-family: 'Archivo Black', sans-serif;
	margin-top: 250px;
	margin-left: 0px;
	display: flex;
	flex-wrap: wrap;
	letter-spacing: 0.05em;
	color: #d2ff02;
	float: left;
	position: absolute;
	font-size: 11px;
	/*background: #cbf801;*/
	/*background-image: url("images/name-bg.png");*/
	text-transform:uppercase;
	z-index: 3;
	padding-left: 8px;
}

/* Media query for screens with a maximum width of 767 pixels (typical for mobile devices) */
@media only screen and (max-width: 767px) {
  .containercategory {
    margin-top: 130px; /* Adjusted top margin for mobile */
	  	font-size: 9px;

	  
  }
}

/* General button styles (applies to all buttons) */
button {
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 0px;
  position: absolute;
}

/* Styling for buttons with the class "grid-button" */
.button-grid {
  width: 33.33%;
  height: 300px;
  padding: 0;
  margin-left: -33.4%;
  background-color: transparent;
  background-repeat: no-repeat, repeat;
  background-size: 20px;
  background-position: center;
}



/* Media query for screens with a maximum width of 767 pixels (typical for mobile devices) */
@media only screen and (max-width: 767px) {
  .button-grid {
    height: 180px; /* Adjusted height for mobile */
  }
}

.button-grid:hover {
  transition: 0.1s;
  background-color: rgba(228, 255, 0, 0.5);
  background-image: url("images/shuffle-icon.gif");
  background-repeat: no-repeat, repeat;
  background-size: 50px;
  background-position: center;
}

.button-grid:active {
  transform: translateY(0px);
}

.regbtn button{
	width: 33.33%;
	height: 300px;
	padding: 0;
	border: none;
	outline: none;
	cursor: pointer;
	border-radius: 0px;
	background-color: transparent;
	position: absolute;
	margin-left: -33.33%;
	background-repeat: no-repeat, repeat;
	background-size: 20px;
	background-position: center;
}


.regbtn button:hover{
	transition: 0.1s;
	background-color: rgba(228, 255, 0, 0.5);
	background-image: none;
	background-repeat: no-repeat, repeat;
	background-size: 50px;
	background-position: center;
}

.regbtn button:active{
  transform: translateY(2px);
	}
	
.prompt-header{	display: flex;
	flex-wrap: wrap;
	padding: 0px 5% 0px 5%;
	margin-top: 60px;
	margin-left: 20%;
	font-family: 'Archivo Black', sans-serif;
	text-transform: uppercase;
	justify-content:center;
	text-align: center;
	width: 50%;
	align-content: center;
	align-items: center;
	/*background-color: #363636;*/
	font-size: 5pt;
	letter-spacing: 0.3em;
	color: #cbf801;
	background: rgba(0,0,0,0.5);;
	
}


.prompt{
	display: flex;
	flex-wrap: wrap;
	padding: 0px 5% 30px 5%;
	margin-bottom: 20px;
	margin-top: 20px;
	justify-content:center;
	width: 100%;
	align-content: center;
	text-align: center;
	align-items: center;
	/*background-color: #363636;*/
	font-style: oblique;
	color: #cbf801;
	font-size: 22pt;
}


@media only screen and (max-width: 768px) {
    /* Adjust font size for smaller screens */
    .prompt {
        font-size: 14pt;
    }
}


.propmpt-variable{
	padding: 0px 6px 0px 6px
}
.propmpt-variable-period{
	padding: 0px 0px 0px 6px
}
	
.testimonial{
	width: 100%;
	height: auto;
}


.footer{
	display: flex;
	flex-wrap: wrap;
	justify-content:center;
	border-top: 2px, solid, #363636;
	width: 100%;
	align-content: center;
	align-items: center;
	background-color: #d2ff02;
	font-size: 16px;
	font-style: oblique;
	color: #363636;
	height: 100px;
	padding: 0px 20px 0px 20px;
	text-align: center;
}


.social-links {
  display: flex;
  flex-wrap: wrap;
  background-color: black;
  width: 100%;
}

.social-link {
  flex: 1;
  box-sizing: border-box;
  text-align: center;
  text-decoration: none;
  color: #777;
  border-right: 1px solid #777;
  border-radius: 0px;
  padding: 10px;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px; /* Add margin for spacing between links */
}

.social-icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.social-link:hover {
  background-color: #cbf801;
}

/* Media query for screens with a maximum width of 600px (adjust as needed) */
@media (max-width: 600px) {
  .social-link {
    flex: 1 0 0; /* Allow the links to shrink and not grow, keeping them next to each other */
  }
}



    .copy_container {
      max-width: 800px;
      margin: 0 auto;
      padding: 20px;
	  color: #cbf801;

    }

    .copy {
      /*background-color: #f2f2f2;*/
      padding: 20px;
      margin: 10px 0;
      font-size: 18px; /* Default font size */
    }

    @media screen and (min-width: 601px) {
      /* Larger screens */
      .copy {
        font-size: 24px;
      }
    }

/*About Banner*/
.banner {
  position: relative;
  width: 100%;
  height: 80vh; /* Adjust the initial height as needed */
  max-height: 600px; /* Set a maximum height if desired */
  background-image: url('images/about-vibe-shuffle.jpg'); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition: height 0.3s ease-out; /* Add a smooth transition effect */
}

.banneroverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)); /* 50% transparent black overlay */
}

.bannercontent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  width: 100%;
}

.bannercontent h1 {
  font-size: 4em; /* Adjust the font size as needed for larger screens */
  margin: 0;
  color: #d2ff02; /* Yellow color */
  font-family: 'Archivo Black', sans-serif; /* Use the 'Archivo Black' font */
}

@media (max-width: 768px) {
  .banner {
    height: 60vh; /* Adjust the height as needed for smaller screens */
  }

  .bannercontent h1 {
    font-size: 2.5em; /* Adjust the font size as needed for smaller screens */
  }
}

     .float-right-img {
      float: right; /* Float the image to the right */
      margin: 10px; /* Add some margin for spacing */
      width: 50%; /* Set the initial width to 50% */
		 height: auto;
    }


    /* Media query for smaller screens */
    @media (max-width: 600px) {
      .float-right-img {
        float: none; /* Remove float for stacking */
        width: 100%; /* Set width to 100% for stacking */
      }
    }
.about-eric { 
	font-size: 0.7em;
	margin-top: 80px;
	margin-bottom: 100px;
	font-style: italic;
	line-height: 1.5em;
}
.embed-responsive {
	position: relative; 
	display: block; 
	width: 100%; 
	padding: 0; 
	overflow: hidden;
}
.embed-responsive::before {
	padding-top: 56.25%;
	display: block;
	content: "";
	box-sizing: border-box;
}

/*-----------GUIDE-------------*/

 .guide-container {
    width: 100%;
    margin: 0 auto;
}

.guideimg1 {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
	margin-top: 60px;
}

.guideimg2 {
    width: 100%;
    height: auto;
    display: block;
}

.guideimg3 {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
	margin-bottom: 100px;
	margin-top:40px;
}



.headlines {
    border: 0px solid red;
	text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    color: #cbf801;
    font-family: 'Archivo Black', sans-serif;
    font-weight: bolder;
    font-size: 60px;
	margin: 140px 0px 20px 0px;
    padding: 0px 20px 0px 20px;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.guide_copy {
    border: 0px solid blue;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    font-style: oblique;
    color: #cbf801;
    font-size: 22pt;
    max-width: 800px;
	padding: 0px 20px 0px 20px;
}

/* Media query for screens with a maximum width of 767px (typical for mobile devices) */
@media (max-width: 767px) {
    .headlines {
        font-size: 36px; /* Adjusted font size for mobile */
        margin: 60px 0 20px 0; /* Adjusted margin for mobile */
    }

    .guide_copy {
        font-size: 16px; /* Adjusted font size for mobile */
    }
}
