
@font-face {
  font-family: "TT Modernoir";
  src: url("../ttmodernoir/TT_Modernoir_Bold.ttf") format("truetype");
}
@font-face {
  font-family: "TT Modernoir";
  src: url("../ttmodernoir/TT_Modernoir_Regular.ttf") format("truetype");
  font-weight: 200;
}
.navBar ul{
	list-style: none;
	position: fixed;
  	display: flex;
  	justify-content: center;
  	gap: 20px;
  	padding: 0;
  	margin: 0;
}
#navBar {
  position: sticky;
  top: 0;       
  background-color: black;
  margin: 0 auto; 
  size: contain;
  padding: 20px;
  z-index: 1000;
}

.introSection{
	padding-top: 20px;
}

.hero {
  position: relative;
  width: 100%;
  
}
.hero img {
  max-width: none;   /* ← removes the cap */
  width: 100%;
  height: auto;
  display: block;
}

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

.spike {
  max-width: none;
  position: absolute;
  top: -5%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;

}

.bottomSpike {
  position: absolute;
  bottom: -6%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

section {
  position: relative;
}

.button{
  color: white;
  background-color: black;
  padding: 10px 12px;
  text-decoration: none;
  outline: 2px solid white;
  /*margin: 10px;*/
  display: flex; /* Enables flexbox layout */
  flex-direction: column; /* Stacks children vertically */
  gap: 10px;
  font-size: 40px;
  z-index: 100;
}
.button:hover{
  color: #ea4974;
  background-color: white;
  outline: 4px solid white;

}
.buttonactive{
  color: #ea4974;
  background-color: white;
  outline: 4px solid white;
  background-color: black;
  padding: 10px 12px;
  text-decoration: none;
  outline: 2px solid white;
  /*margin: 10px;*/
  display: flex; /* Enables flexbox layout */
  flex-direction: column; /* Stacks children vertically */
  gap: 10px;
  font-size: 40px;
  z-index: 100;

}

#navi{
 position: relative;  /* needed for z-index to work */
  z-index: 10; 
}
.port{
  margin-top: 20px;
}
#portLink:hover{
  filter: brightness(50%);
}

body{
  background-color: black;
    overflow-x: hidden;
     margin: 0;
  padding: 0;
}
h1{
  color: #ea4974;
  font-family: "TT Modernoir", sans-serif;
  font-size: 50px;
  text-align: center;
}
h2{
  color: white;
  font-family: "TT Modernoir", sans-serif;
  font-weight: 200;
  font-size: 40px;
}
h3{
  text-align: center;
  color: white;
  /*padding: 30px;*/
  padding-right: 10px;
  font-size: 20px;
  font-family: 'Roboto', Arial, sans-serif;
}
h4{
  text-align: left;
  color: white;
  /*padding: 30px;*/
  padding-right: 10px;
  font-size: 20px;
  padding: 40px;
}
.infoAbout{
  font-size: 30px;
  font-size: auto;
  text-align: left;
  color: white;
}
.about{
  padding: 30px;
}
.hello{
  position: relative;
  width: 100%;
  height: auto;
  margin-bottom: 20px
  
}

#tagTitle{
  text-decoration: none
}
.align{
   display: grid;
  place-items: center;

}
.video{
  position: relative;
  aspect-ratio: 16 / 9;
  z-index: 10000;
}

.carousel-track {
  width: 100%;
  overflow-x: auto;
  overflow-y: visible;
  scroll-behavior: smooth;
  cursor: grab;
  padding: 40px 0;
}

.carousel-track:active {
  cursor: grabbing;
}

/* Hide scrollbar (still scrollable) */
.carousel-track::-webkit-scrollbar {
  display: none;
}
.carousel-track {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.carousel-slide {
  display: flex;
  gap: 24px;
  padding: 0 20px;
  overflow: visible;
}

.carousel-slide img {
  max-height: 300px;
  height: auto;
  width: auto;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform-origin: center;
  cursor: pointer;

}
.carousel-slide img:hover {
  transform: scale(1.12) translateY(-12px);
  z-index: 10;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.shadow-box {
  filter: drop-shadow(5px 5px 10px black);
}
