@charset "utf-8";
@import url("eurostile_extended_2_bold/font.css");
/* CSS Document */
.navbar {
    position: flex;
    top: 0;
    width: 100vw;
    height: 60px;
    z-index: 1000;
    transition: all 0.4s ease; /* Smooth transition for transparency change */
    background-color: transparent; /* Initial state */
    padding-top: 0px;
    padding-bottom: 10px;
  	display: grid;
  	justify-items: center; /* Centers horizontally */
}

/* Class to be added on scroll */
.navbar {
    position: sticky;
    top: 0;
    overflow: hidden;
}

.navbar.scrolled {

	/* Translucent white background using RGBA */
  background-color: rgba(255, 255, 255, 0.25); /* 100% opacity */
	    /* Transparency and Blur */
	
/* 2. Apply the blur effect to the background area */
    background-color: rgba(255, 255, 255, 0.25); /* Semi-transparent white */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* For older browser support */
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37)
}

/* Navbar links */
.navbar a {
    float: left;
    display: block;
    color: #FFFFFF;
    text-align: center;
    padding-top: 10px;
    text-shadow: 2px 2px 2px rgba(0,0,0,1.00);
    font-family: "eurostile extended 2 bold";
    font-size: large;
    text-decoration: none;
}

.nav{
	display: flex;
/*	width: 80vw;*/
	justify-content: space-evenly;
	border: 1px solid blue; /* For visibility */
    text-align: center;
	padding-left: 0px;
	padding-right: 0px;

}

.nav ul {
  list-style-type: none; /* Removes default bullet points */
  margin: 0px;
  padding-right: 10px;
	padding-left: 10px;
  display: flex; /* Aligns items horizontally */
	align-items: center;
}

/* Add a margin to the right of each list item */
.nav li {
  margin: 6px; /* Adjust the value as needed */
	align-items: top;
}

/* Alternatively, add padding to the links to increase clickable area */
.nav a {
  padding-top: 10px;
	justify-content: space-around;
  padding-right: 10px; /* Adds space around the link text */
	padding-left: 10px;
  text-decoration: none; /* Removes default link underline */
}

.storeButton{
    -webkit-filter: drop-shadow( 2px 2px 2px rgba(0,0,0,1.00));
    filter: drop-shadow( 2px 2px 2px rgba(0,0,0,1.00));
}

/*.content {
    top: 0px;
    height: auto;
    border-style: none;
    width: 100vw;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    position: static;
    margin-top: -100px;
}*/
.hero {
	width: 100vw;
	height: 100vh;

}
.heroImage{
    width: 100vw;
    height: auto; /*this is the problem of the gap between the hero and the following divs; changed tp "auto"*/
    margin-top: -100px;
    -webkit-box-shadow: 0px 6px 6px 0px rgba(0,0,0,0.90);
    box-shadow: 0px 6px 6px 0px rgba(0,0,0,0.90);
}

.container {
  display: flex;         /* Activates Flexbox on the container */
  Width: 80%;
  justify-content: space-around; /* Distributes space evenly between sections */
  align-items: top;   /* Centers sections vertically (optional) */
  height: 600px;         /* Sets a height for visualization */
  margin: 0 auto;
	padding: 10px;
  border: medium solid red;

  margin-top: 30px;
}

.threeSection {
    flex: 1;               /* Allows each section to grow and take equal available space */
    height: auto;
    padding: 20px;
    text-align: center;
    background-color: #f0f0f0;
    margin: 10px;           /* Adds a small gap between sections */
    border: medium solid orange;
    -webkit-box-shadow: 6px 6px 6px 0px rgba(0,0,0,0.90);
    box-shadow: 6px 6px 6px 0px rgba(0,0,0,0.90);
}
.twoSection {
    flex: 1;               /* Allows each section to grow and take equal available space */
    height: auto;
    padding: 20px;
    text-align: center;
    background-color: #f0f0f0;
    margin: 10px;           /* Adds a small gap between sections */
    border: medium solid green;
    -webkit-box-shadow: 6px 6px 6px 0px rgba(0,0,0,0.90);
    box-shadow: 6px 6px 6px 0px rgba(0,0,0,0.90);
}
.oneSection {
    flex: 1;               /* Allows each section to grow and take equal available space */
    height: auto;
    padding: 10px;
    text-align: center;
    background-color: #f0f0f0;
    margin: 10px;           /* Adds a small gap between sections */
    border: medium solid teal;
    -webkit-box-shadow: 6px 6px 6px 0px rgba(0,0,0,0.90);
    box-shadow: 6px 6px 6px 0px rgba(0,0,0,0.90);
}
.sectionContent{
	
	
	
}

.oneSection img{
	width: 100%;
	height: 100%;
	object-fit: contain;
	
	
}

.body{
	overflow: visible;
}


.logo{
    padding-top: 10px;
    margin-top: -17px;
    -webkit-filter: drop-shadow( 2px 2px 2px rgba(0,0,0,1.00));
    filter: drop-shadow( 2px 2px 2px rgba(0,0,0,1.00));
}


body {
  margin: 0;
}
.footer{
    width: 100vw;
	height:200px;
	margin-top: 30px;
	background-color: #3f3f3f;	
}.streamingRotation {
}
