
html, * {
	box-sizing: border-box;
    padding: 0;
    margin: 0;
	scroll-behavior: smooth; 

  }
  
  *::before, *::after {
	box-sizing: inherit;
  }
  body {
	background: white;
	font-family: 'Fredoka One', cursive;
}

  #container {
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    height: 100vh;
	width: 100%;
  }

  h1 {
	text-align: left;
	color: white;
}

a {
	text-decoration: none;
}

p {
	font-size: 16px;
}

.nav {
	text-align: center;
	position: fixed;
	z-index: 10; 
	text-decoration: none;
	top: 0;
	left:0;
	width: 100%;
	max-width: 100%;
	height: 8%;
	font-size: 16px;
	background-color:red;
	margin: 0;
	border-style: solid;
	border-color: black;
	border-width: 3px;
}


.nav-menu {
	display: flex;
	align-items: center;
	justify-content:flex-end;
	padding: 1% 30px 0 30px;
}

.nav-brand {
	z-index: 11;
	position: fixed;
	top: 0;
	left: 0;
	margin: 0;
}

.nav-brand img {
	width: 15%;
	height: auto;
	position: fixed;
	top: 0;
	left: 0;
	margin: 0;

}


.nav-items {
	padding: 0 50px 0 50px;
	font-size: 30px;
	color:white;
}

.nav-items:hover {
	color: white;
	border-style: solid;
	border-radius: 20px;
	border-color: white;
	border-width: 3px;
	padding: auto;
}

.hamburger {
	display: none;
	cursor: pointer;
}

.bar {
	display: block;
	width: 35px;
	height: 6px;
	margin: 5px auto;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	background-color: white;
  }

  .social {
	position: fixed;
	z-index: index 10;
	text-decoration: none;
	background-color:red;
	border-style: solid;
	border-color: black;
	border-width: 3px;
	margin:0;
	width: 6%;
	max-width: 6%;
	height: 100vh;
	left:0;
	padding: 10% 0 50% 0;
	
}

.smrow {
	display: flex;
	flex-direction: column;
	align-content: space-between;
	
}

.tooltip-container {
    position: relative;
    display: inline-block; /* Aligns with inline elements like images */
    cursor: pointer;
}

.tooltip-text {
    /* Hidden by default */
    visibility: hidden;
    opacity: 0;
    
    /* Positioning the tooltip */
    position: absolute;
    z-index: 1; /* Ensure it appears above other content */
    bottom: 100%; /* Position above the image */
    left: 50%;
    transform: translateX(-50%); /* Centers the tooltip */

    /* Appearance */
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;

    /* Animation/Transition effect (fade-in and slight movement) */
    transition: opacity 0.3s ease-in-out, bottom 0.3s ease-in-out; 
}

/* Show the tooltip text when the container is hovered over */
.tooltip-container:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
    left: 110%; /* Moves slightly up during the animation */
}

.smbuttons {
	width: 75%;
	height: auto;
	margin: 10% 0 50% 0;
}

  .logo {
	max-width: 100%;
	width:100%;
	height: auto;
  }

  #logo {
	margin-top: 5%;
	margin-right: 0;
	max-width: 100%;
	width: 100%;
}


  section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #one {
   
    scroll-snap-align: start;

  }

  #one img {
    padding: 5%;
    width: 90%;
    height: auto;
  }

  #two {
    display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: start;
    background-color: white;
    scroll-snap-align: start;
    padding-left: 10%;
    padding-right: 10%;
	max-width: 100%;
	margin: 0;

  }

  #two p {
	font-size: 2rem;
	margin: 0;
  }

  .welcome .letter {
	display: inline-block; /* Allows transformation (movement) */
    font-size: 3rem;
    color: #ff005e; /* Playful pink color */
    animation: bounce 1s infinite alternate;
	 
  }

  .techspec .letter {
display: inline-block; /* Allows transformation (movement) */
    font-size: 3rem;
    color: #ff005e; /* Playful pink color */
    animation: bounce 1s infinite alternate;

  }

  /* Stagger the animation start times for each letter */
  .welcome .letter:nth-child(1) { animation-delay: 0.1s; }
  .welcome .letter:nth-child(2) { animation-delay: 0.2s; }
  .welcome .letter:nth-child(3) { animation-delay: 0.3s; }
  /* ... continue for all letters or use a JS loop to add inline styles for delay */
  .welcome .letter:nth-child(4) { animation-delay: 0.4s; }
  .welcome .letter:nth-child(5) { animation-delay: 0.5s; }
  .welcome .letter:nth-child(6) { animation-delay: 0.6s; }
  .welcome .letter:nth-child(7) { animation-delay: 0.7s; }
  /* Add delays for the rest of your letters */

  /* Stagger the animation start times for each letter */
  .techspec .letter:nth-child(1) { animation-delay: 0.1s; }
  .techspec .letter:nth-child(2) { animation-delay: 0.2s; }
  .techspec .letter:nth-child(3) { animation-delay: 0.3s; }
  /* ... continue for all letters or use a JS loop to add inline styles for delay */
  .techspec .letter:nth-child(4) { animation-delay: 0.4s; }
  .techspec .letter:nth-child(5) { animation-delay: 0.5s; }
  .techspec .letter:nth-child(6) { animation-delay: 0.6s; }
  .techspec .letter:nth-child(7) { animation-delay: 0.7s; }
  .techspec .letter:nth-child(8) { animation-delay: 0.8s; }
  /* Add delays for the rest of your letters */


  @keyframes bounce {
    0% {
        transform: translateY(0px) scale(1);
        color: #ff005e; /* Starting color */
    }
    100% {
        transform: translateY(-20px) scale(1.1); /* Move up and slightly enlarge */
        color: #00d4ff; /* Ending color */
    }
}

  #three {
	display: flex;
	flex-direction: column;
    background-color: white;
    scroll-snap-align: start;
	justify-content: center;
	align-items: center;
	
  }

  #three p {
	font-size: 2rem;
  }

  button {
	all: unset;
	/* Re-add essential usability styles if needed */
	cursor: pointer; 
	/* It is recommended to add a focus style for keyboard accessibility */
	outline: revert; 
  }
  

  .tab {
	display: flex;
	flex-direction:row;
	justify-content: space-around;
	align-items: center;
	border: none;
	width: 100%;
	max-width: 100%;
	height: auto;
	text-align: center;
	margin: 0;
	
  }

  .tab button {
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	color: black;
	width: 100%;
	outline: none;
	text-align: center;
	cursor: pointer;
	transition: 0.3s;
	background-color:red;
	border: solid;
	border-radius: 10px;
	border-color: black;
  }

  .tab button:hover {
	animation: bounce 1s infinite alternate;
  }

  .tabcontent {
	text-align: center;
	width: 50%;
	max-width: max-content;
	height: auto;
  }

  .tablinks {
	font-family: 'Fredoka One', cursive;
	font-size: 2rem;
	padding: 1%;
	margin: 2%;
  }

  .portpics {
	object-fit: cover;
  }

  #gallery1 {
	display: flex;
	flex-wrap: wrap;
	justify-content:space-around;
	align-items: center;
	width: 100%;
	max-width: 100%;
	margin-left: 10%;
}

#gallery1 img {
	margin: 1%;
	width: 100px;
	height: 100px;
	max-height: 100%;
	max-width: 100%;
	border-radius: 30px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

#gallery2 {
	display: flex;
	flex-wrap: wrap;
	justify-content:space-around;
	align-items: center;
	width: 100%;
	max-width: 100%;
	margin-left: 10%;
}

#gallery2 img {
	margin: 1%;
	width: 200px;
	height: 200px;
	max-height: 100%;
	max-width: 100%;
	border-radius: 30px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

#gallery3 {
	display: flex;
	flex-wrap: wrap;
	justify-content:space-around;
	align-items: center;
	width: 100%;
	max-width: 100%;
	margin-left: 10%;
}

#gallery3 img {
	margin: 1%;
	width: 100px;
	height: 100px;
	max-height: 100%;
	max-width: 100%;
	border-radius: 30px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

#gallery4 {
	display: flex;
	flex-wrap: wrap;
	justify-content:space-around;
	align-items: center;
	width: 100%;
	max-width: 100%;
	margin-left: 10%;
}

#gallery4 img {
	margin: 1%;
	width: 100px;
	height: 100px;
	max-height: 100%;
	max-width: 100%;
	border-radius: 30px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

#four {
	display: flex;
	flex-direction: column;
	justify-content:flex-start;
	align-content: space-evenly;
	align-items: center;
	padding-top: 10%;
    padding-left: 10%;
    padding-right: 10%;
    background-color: white;
    scroll-snap-align: start;
	
  }


  .techspec {
	color: black;
  }

  .techspecs {
	display: flex;
	flex-direction: row;
	align-items: end;
	flex-wrap: wrap;
	justify-content: flex-start;
	width:fit-content;
	max-width: 90%;
	height:fit-content;
	text-align: center;
	margin-left: 10%;
  }

.techspecs img {
	width: 210px;
	height: auto;
	
}

#five {
	display: flex;
	flex-direction: row;
	width: 100%;
	max-width: 75%;
	padding: 3% 0;
	text-align: left;
	scroll-snap-align: center;
	scroll-snap-stop: always;
	margin-left: 10%;
}

.contactp {
    display: flex;
	flex-direction: column;
	justify-content:flex-start;
	width: 100%;
	max-width: 50%;
	height: auto;

}

#five img {
	width: 50%;
	height: auto;
	margin-right: 2%;
	border-radius: 50%;
	border-color: red;
	border-width: 10px;
	border-style: double;
}

.if {
	padding: 0 15% 0 25%;
	font-size: 2rem;
	text-wrap: balance;
	max-width: 50ch;
}


input.submit-button {
	float: right;
	padding-right: 31px;
}

input {
	height: auto;
	color: black;
}

form .submit {
	background-color: red;
	border-color: transparent;
	color: white;
	font-family: 'Fredoka One', cursive;
	font-size: 2rem;
	font-weight: bold;
	letter-spacing: 2px;
	height: 100px;
	width: 150px;
	max-width: 100%;
	padding: unset;
}

form .submit:hover {
	font-size: 2rem;
	cursor: pointer;
	font-family: 'Fredoka One', cursive;
	animation-name: sub;
	animation-duration: .5s;
	animation-fill-mode: forwards;
}

@keyframes sub {
	from {height: 100px; width: 150px;}
	to {height: 120px; width: 170px;}
}

.contact-form {
	margin-top: 3%;
	width: 75%;
}

   ::placeholder {
	  color: black;
	  border-radius: 30px;
	  font-family: 'Fredoka One', cursive;
	  font-size: 2rem;
  }

form {
	text-align: center;
	transition: all 4s ease-in-out;
	width: 100%;
	}

.form-control {
	width: 100%;
	background: white;
	border-radius: 30px;
	border-color: red;
	border-width: 3px;
	border-style: double;
	outline: none;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	color: black;
	font-size: 2rem;
	padding-left: 20px;
	margin-bottom: 16px;
	font-family: 'Fredoka One', cursive;
}
  @media screen and (max-width: 1040px) {

	.hamburger{
		display: block;
		position: absolute;
		left: 90%;
		top: 22%;
	  }
	 .hamburger.active .bar:nth-child(2){
		opacity: 0;
	  }
	 .hamburger.active .bar:nth-child(1){
		transform: translateY(11px) rotate(43deg);
	  }
	 .hamburger.active .bar:nth-child(3){
		transform: translateY(-11px) rotate(-43deg);
	  }
	 .nav-menu{
		position: fixed;
		left: -150%;
		flex-direction: column;
		justify-content:start;
		background-color: red;
		width: 100%;
		height: 100%;
		text-align: center;
		transition: 0.3s;
	  }

p {
	font-size: 16px;
	text-align: left;
	padding: 1.5rem;
	
	}

h1 {
	padding-left: 1.5rem;
}
	

.nav-brand img {
  width: 30%;
  max-width: 30%;
  height: auto;
  
}


.nav-items {
	position: relative;
	top: 8%;
	left: 0;
	margin: 16px;
	
}

.nav-menu.active{
    left: 0;
  }

#two p {
	font-size: 16px;
}

.social {
	padding: 50% 0 50% 0;
	width: 10%;
	max-width: 10%;
	
}
.smbuttons {
	width: 75%;
	height: auto;
	margin: 10% 0 50% 0;
}

#logo {
	margin-top: 30%;
}

.tab {
	display: flex;
	flex-direction: row;
	margin-top: 10%;
	width: fit-content;
	max-width: 100%;
	isolation: isolate;
	flex-wrap: wrap;
  }

  .tab button {
	width: fit-content;
	margin: 2%;
	
  }

.tablinks {
	display: flex;
	flex-direction: row;
	font-family: 'Fredoka One', cursive;
	font-size: 16px;
	justify-content: space-around;
	padding: 2%;
	width: fit-content;
	white-space: nowrap;
	margin: 0;
	flex-wrap: wrap;
  }


#gallery1 {
	width: 100%;
	max-width: 100%;
	text-align: center;
}

#gallery1 img {
	margin: .5%;
	width: 75px;
	height: 75px;
	max-height: auto;
	max-width: 100%;
	border-radius: 30px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

#gallery2 {
	width: 100%;
	max-width: 100%;
	text-align: center;
}

#gallery2 img {
	margin: .5%;
	width: 75px;
	height: 75px;
	max-height: auto;
	max-width: 100%;
	border-radius: 30px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

#gallery3 {
	width: 100%;
	max-width: 100%;
	text-align: center;
}

#gallery3 img {
	margin: .5%;
	width: 75px;
	height: 75px;
	max-height: auto;
	max-width: 100%;
	border-radius: 30px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

#three p {
	font-size: 2rem;
}

.techspec {
	font-size: 1.5rem;
  }

.techspecs {
	display: flex;
	flex-direction: row;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
	width: 80%;
	height: auto;

  }

.techspecs img {
	width: 75px;
	height: auto;

}

.program {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 20%;
	height: auto;
	margin-left: 5%;
	margin-right: 5%;
	margin-top: 1%;
	margin-bottom: 1%;
}

#five {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	max-width: 100%;
	height: auto;
	margin-left: 3%;
	margin-bottom: 25%;
}

.if {
	font-size: 16px;
	text-wrap: balance;
	max-width: 100%;
}

#five .contactp {
	display: flex;
	flex-direction: column;
	align-items: center;
}

form .submit {
	font-size: 1.5rem;
	font-weight: bold;
	letter-spacing: 2px;
	height: auto;
	width: 150px;
	max-width: 100%;
	padding: unset;
}

form .submit:hover {
	font-size: 2rem;
	cursor: pointer;
	font-family: 'Fredoka One', cursive;
	animation-name: sub;
	animation-duration: .5s;
	animation-fill-mode: forwards;
}

@keyframes sub {
	from {height: auto; width: 150px;}
	to {height: auto; width: 170px;}
}

::placeholder {
	color: black;
	border-radius: 30px;
	font-family: 'Fredoka One', cursive;
	font-size: 16px;
}

.form-control {
	width: 100%;
	font-size: 16px;
	padding-left: 20px;
	margin-bottom: 16px;
	font-family: 'Fredoka One', cursive;
}
}

@media screen and (max-width: 430px) {

	
	.social {
		padding: 50% 0 50% 0;
		width: 10%;
		max-width: 10%;
		
	}
	.smbuttons {
		width: 75%;
		height: auto;
		margin: 10% 0 50% 0;
	}

	#two p {
		font-size: .8rem;
	}

	.contactp {
		width: 100%;
		max-width: fit-content;
	}

	.if {
		font-size: 1rem;
		text-wrap: balance;
		width: 100%;
		max-width: 50ch;
	}

	#four .tabcontent {
		padding-left: 10%;
	}

	.tab {
		display: flex;
		align-items: center;
		flex-direction: row;
		justify-content: space-evenly;
		isolation: isolate;
		flex-wrap: wrap;
		margin-left: 10%;
		

	}

	.tablinks {
	font-size: 1rem;
		
  }

#gallery1 img {
	margin: .5%;
	width: 25px;
	height: 25px;
	max-height: auto;
	max-width: 100%;
	
}

#gallery4 img {
	margin: .5%;
	width: 50px;
	height: 50px;
	max-height: 100%;
	max-width: 100%;
	
}

#three p {
	font-size: 1.2rem;
}

#five img {
	width: 35%;
	height: auto;
}

::placeholder {
	font-size: 1.2rem;
}

.form-control {
	font-size: 1.2rem;	
}

}
	
