/*CSS variables section*/
:root {
background:  #ffffff;
}

.w3-theme-l5 {color:#000 !important; background-color:#fff5fc !important}
.w3-theme-l4 {color:#000 !important; background-color:#ffddf6 !important}
.w3-theme-l3 {color:#000 !important; background-color:#febaed !important}
.w3-theme-l2 {color:#000 !important; background-color:#fe98e4 !important}
.w3-theme-l1 {color:#000 !important; background-color:#fe76dc !important}
.w3-theme-d1 {color:#fff !important; background-color:#fd32ca !important}
.w3-theme-d2 {color:#fff !important; background-color:#fd11c2 !important}
.w3-theme-d3 {color:#fff !important; background-color:#e902b0 !important}
.w3-theme-d4 {color:#fff !important; background-color:#c80296 !important}
.w3-theme-d5 {color:#fff !important; background-color:#a7027d !important}

.w3-theme-light {color:#000 !important; background-color:#fff5fc !important}
.w3-theme-dark {color:#fff !important; background-color:#a7027d !important}
.w3-theme-action {color:#fff !important; background-color:#a7027d !important}

.w3-theme {color:#fff !important; background-color:#4FC1E5 !important}
.w3-text-theme {color:#fd55d3 !important}
.w3-border-theme {border-color:#fd55d3 !important}

.w3-hover-theme:hover {color:#fff !important; background-color:#4FC1E5 !important}
.w3-hover-text-theme:hover {color:#fd55d3 !important}
.w3-hover-border-theme:hover {border-color:#fd55d3 !important}

/*Extra Large screens - Extra large desktops*/

/*General CSS and CSS reset*/

@font-face {
  font-family: "Exocet Bold";
  src: url('fonts/exocet/exocet-heavy.ttf') format('truetype');
}

@font-face {
  font-family: "Zuume Bold";
  src: url('fonts/zuume/Zuume ExtraBold.ttf') format('truetype');
}

@font-face {
  font-family: "Aircruiser";
  src: url('fonts/aircruiser/aircruiser.ttf') format('truetype');
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
}
.hero {
    height:600px;
    background-image: url("img/FT_Patch_2026_Export.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position:center ;
    overflow: hidden;
}
h1 {
    height: 150px;
    color: #4FC1E5;
    font-size: 95px;
    text-transform: uppercase;
    font-weight: normal;
	font-style: italic;
	text-align: center;
	font-family: "Aircruiser";
}
h2 {
    color: #4FC1E5;
    font-size: 60px;
    text-transform: uppercase;
	text-align: center;
	font-family: "Zuume Bold"
}
.main{
    width: 90%;
    margin: auto;
}
.impressum{
	margin: auto;
	margin-top: 20px;
    background-color: #36454F;
	padding: 8px;
}
	.impressum p{
		color: white;
		width: 90&
	}
	
.about{
    overflow: hidden;
}
	.about p{
		color:Black;
		background-color: WhiteSmoke;
		padding: 10px;
		border-radius: 25px;
	}

.bold_para {
  font-weight:bold;
}

.sponsor-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  grid-auto-rows: 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  max-width: 1200px;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}
	.sponsor-item {
		background-color: white;
		border-radius: 10px;
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
		overflow: hidden;
		transition: transform 0.3s, box-shadow 0.3s;
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 20px;
    }
    .sponsor-item img {
		max-width: 100%;
		max-height: 100%;
		object-fit: contain;
		display: block;
    }
    .sponsor-item:hover {
		transform: translateY(-5px);
		box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }
    .sponsor-item a {
		display: block;
		text-decoration: none;
    }

.reg_countdown{
    color: #fd55d3;
    text-transform: uppercase;
	text-align: center;
	font-family: "Zuume Bold";
	flex-wrap: wrap;
	font-size: 60px;
}

.furor-btn{
	background-color: #4FC1E5;
	color: white;
}

.collapsible {
  background-color: #777;
  color: white;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
}

.active, .collapsible:hover {
  background-color: #fd55d3;
}

.collapsible:after {
  content: '\002B';
  color: white;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2212";
}

.content {
  padding: 0 18px;
  display: none;
  overflow: hidden;
  background-color: #CDCDCD;
}

body{
  background-image: url("img/lo_p.svg"),
    url("img/ro.svg"),
    url("img/lu.svg"),
    url("img/ru_p.svg");
  background-position:
    top left,
    top right,
    bottom left,
    bottom right;
  background-size: 25%;
  background-repeat:no-repeat;
  background-attachment:fixed;
}

 /* The sidepanel menu */
.sidepanel {
  height: 100%; /* Specify a height */
  width: 0; /* 0 width - change this with JavaScript */
  position: fixed; /* Stay in place */
  z-index: 1; /* Stay on top */
  top: 0;
  left: 0;
  background-color: #111; /* Black*/
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 60px; /* Place content 60px from the top */
  transition: 0.5s; /* 0.5 second transition effect to slide in the sidepanel */
}

/* The sidepanel links */
.sidepanel a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #ffffff;
  display: block;
  transition: 0.3s;
}

/* When you mouse over the navigation links, change their color */
.sidepanel a:hover {
  color: #f1f1f1;
}

/* Position and style the close button (top right corner) */
.sidepanel .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

/* Style the button that is used to open the sidepanel */
.openbtn {
  font-size: 40px;
  cursor: pointer;
  background-color: #9a23e8;/*#37cef0;*/
  border-radius: 0px 0px 25px 0px;
  color: white;
  padding: 10px 15px;
  border: none;
  font-weight: Bold;
  position: fixed;
}

.openbtn:hover {
  background-color: #444;
} 



/*MEDIA QUERIES*/
/*Large screens - Desktop*/

@media screen and (min-width: 1500px) {
    .about{
        width: 90%;
        margin: auto;
    }
}

/*medium screens - Laptops*/
@media screen and (max-width: 1024px) {
    .hero-text{
        width: 70%;
    }
    .hero-header{
        font-size: 45px;
    }
	
	h1{
		height: 100px;
		margin-bottom: 1.5em; 
    } 

}

/*Small screens - tablets*/
@media screen and (max-width: 768px) {
    .hero {
		height: 400px;
	}
    .about{
        width: 90%;
        margin: auto;
    }
    .sponsor-image{
        margin-bottom: 30px;
    }
    .hero-text{
        width:80%;
    }
    h2{
        font-size: 30px; 
        height: 100px;
    }
	h1{
		font-size: 30px; 
		height: 100px;
    } 
	
	.reg_countdown{
		font-size: 30px;
	}	
}

/*Extra small screens - phones*/
@media screen and (max-width: 480px) {
	.hero {
		height: 300px;
		background-color: #000;
	}
    .about{
        margin: auto;
    }
    h2{
        font-size: 30px;
        height: 80px;
    }
	h1{
        font-size: 30px;
        height: 80px;
    }
    .hero-text{
        width:90%;
    }
    h3{
        width: 100%;
    }
	
	.reg_countdown{
		font-size: 30px;
	}
	
	.sponsor-container {
		grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
		padding: 5px;
	}
	.sponsor-item {
		padding: 5px;
	}
	
	.openbtn {
		font-size: 30px;
		padding: 5px 7.5px;
	}
}