@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing:border-box;
    text-decoration: none;
    border: none;
    outline: none;
    font-family: 'Poppins', sans-serif;
}

html{
    font-size:63.2%;
}


 body { /* hs und ps auf der ganzen Webseite, außer anders definiert*/
    margin-top: 5%;
    color: black;
    background-color: white;
    font-weight: normal;
    justify-content: space-between;
    font-size: 1.5rem;
    line-height: 200%;
    text-align: justify;
    margin: 0 auto;
    
}

.social-media-sentence {
    text-align: justify;
}

.stay-tuned {
    text-align: justify;
}

 body h1{
   
    color: #3965a7;
    font-size: 3rem;
    font-weight: bolder;
    position:relative;
    text-align: justify;
}

body h2{
    color: #4c6121;
    font-size: 2.25rem;
    font-weight:bold;
    overflow:hidden;
    position:relative;
    text-align: justify;
}

body h3{
    color: #9dab70;
    font-size: 2.0rem;
    font-weight:bold;
    overflow:hidden;
    position:relative;
    text-align: justify;
}

body h4{
    color: #95a8df;
    font-size: 1.75rem;
    font-weight:bold;
    overflow:hidden;
    position:relative;
    text-align: justify;
}

body a{
    font-size: 1.5rem;
    overflow:hidden;
    text-align: justify;

}

header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    filter: drop-shadow(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    font-family: 'Poppins', sans-serif;
    font-weight: normal;
    overflow:visible;
    background-color: #F0F0F0f0; /*#F0F0F0f0;*/
}


.Logo-Überschrift:hover{
    transform: scale(1.1);
}

.Logo-Überschrift{
    margin-left: 5rem;
    width: 20vw;
}

nav a{
    margin-top: 50px;
    font-size: 2rem;
    color: black;
    margin-right: 5rem;
    font-weight: bolder;
    transition: 0.5s ease;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    overflow: hidden;
}

nav a:hover, nav a.active{
    color: black;/* Color "Home", ... */
    border-bottom: 3px solid #9dab70; /* Color block under "Home", ... */
}

section{
    min-height: 100vh;
    padding: 5rem 9% 5rem;
}


/*Social Media Buttons*/
.social-media-icons a{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    background-color: transparent;
    border: 0.2rem solid #3965a7; /* Color Borders Social Media Icons*/
    font-size: 2rem;
    border-radius: 50%;
    margin: 3rem 1.5rem 3rem 0;
    transition: 0.3s ease;
    color: #4c6121; /* Color Social Media Icons*/
    margin: 0 auto;

}
.link-app-icons a{
   display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 3.5rem;
    height: 3.5rem;
    background-color: transparent;
    border: 0.2rem solid #3965a7; /* Color Borders Social Media Icons*/
    font-size: 2rem;
    border-radius: 50%;
    margin: 3rem 1.5rem 3rem 0;
    transition: 0.3s ease;
    color: #4c6121; /* Color Social Media Icons*/
    margin: 0 auto;

}

.link-app-icons a:hover{
    color: black;
    transform: scale(1.1) translateY(-5px);
    background-color: #95a8df; /* Color Social Media Icons Hover*/
    box-shadow: 0  0 25px #9dab70; /* Color Social Media Icons Hover Shadow*/
}

.social-media-icons a:hover{
    color: black;
    transform: scale(1.1) translateY(-5px);
    background-color: #95a8df; /* Color Social Media Icons Hover*/
    box-shadow: 0  0 25px #9dab70; /* Color Social Media Icons Hover Shadow*/
}

 .section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
}


.underline{
    text-decoration: underline;
    font-weight: bold;
    color: red;
} 

main section {
  display: none;
}

main section.active {
  display: block;
}

.News-Events {
    background-size:auto;
    background-position: center;
    background-attachment: fixed; 
    
} 

.helpful-resources {
    background-size:auto;
    background-position: center;
    background-attachment: fixed; 
    display: block;
} 

.Future-Projects {
    background-size:auto;
    background-position: center;
    background-attachment: fixed; 
} 

/*Hellblau:#95a8df Hellgrün:#9dab70 Dunkelblau:#3965a7 Dunkelgrün:#4c6121*/
.grid-container {
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;      
  justify-items: center;    
  column-gap: 2rem;
  width: 95%;
  margin: 0 auto;

}



.home-content {
  text-align: justify; 
  width: 115%;               
  font-size: 1.5rem;
  line-height: 1.8;
  margin: 0 auto; 


}

.team-image img {
  display: flex; 
  width: 99%;               
  height: auto;             
  border-radius: 1rem;
  margin: 0 auto;  
}

.team-image:hover{
    transform: scale(1.01);
}
    
.home-title {
  text-align: justify;
  
}

/* Dropdown Menü */
.dropdown {
  position: relative;
  display: inline-flex;
}

.dropbtn {
  font-size: 2rem;
  color: black;
  font-weight: bolder;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: 0.3s;
  padding: 0.5rem 0;
  display: inline-block;
  align-items: center;
}

.dropbtn:hover {
  border-bottom: 3px solid #9dab70;
}

/* Das eigentliche Dropdown-Feld */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #F0F0F0f0;
  min-width: 180px; /* etwas breiter, wirkt eleganter */
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  border-radius: 0 0 1rem 1rem;
  z-index: 200;
  top: 100%;             /* direkt unter der Schaltfläche */
  left: 50%;         /* Mitte der Parent-Box */
  transform: translateX(-64%); /* Horizontal genau zentrieren */
}

.dropdown-content a {
  color: black;
  padding: 10px 15px;
  text-decoration: none;
  display: block;
  font-size: 1.5rem;
  font-weight: normal;
  border-bottom: 1px solid #ddd;
  margin: 0 auto;
  text-align: center;
}

.dropdown-content a:hover {
  background-color: #95a8df;
  color: white;
  z-index: 9999;
  margin: 0 auto;
}

/* Dropdown anzeigen beim Hover */
.dropdown:hover .dropdown-content {
  display: block;
}





@media only screen and (max-width: 600px) and (orientation:portrait){

.home-content {
    width: 95%;
    }

.helpful-resources { 
  width: 95%;
    }

.Future-Projects
{ 
  width: 95%;
    }

     body { /* hs und ps auf der ganzen Webseite, außer anders definiert*/
    margin-top: 5%;
    
}


nav a:hover, nav a.active{
    color: black;/* Color "Home", ... */
    border-bottom: 3px solid #9dab70; /* Color block under "Home", ... */
}
html{
    font-size:50%;
}

nav a{
    margin-top: 50px;
    font-size: 82%;
    margin-right: 2rem;
    font-weight: bolder;
    transition: 0.5s ease;
    border-bottom: 3px solid transparent;
}

.dropbtn {
  font-size: 82%;
  border-bottom: 3px solid transparent;
  transition: 0.3s;
  padding: 0.5rem 0;
}

.dropdown-content {
  min-width: 100px; /* etwas breiter, wirkt eleganter */
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  border-radius: 0 0 1rem 1rem;
  z-index: 200;
  top: 100%;             /* direkt unter der Schaltfläche */
  left: 50%;         /* Mitte der Parent-Box */
  transform: translateX(-58%); /* Horizontal genau zentrieren */
}

.dropdown-content a {
  font-size: 82%;
}

header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;  
}

.grid-container {
  display: flexbox;
  grid-template-columns: 100%;
  align-items: center;      
  justify-items: center;    
  column-gap: 2rem;
  width: 99%;
  margin: 0 auto;
}

@media only screen and (min-width: 601px) and (orientation:portrait){

 }

 @media only screen and (min-width: 768px) and (orientation:portrait){

 }

 @media only screen and (min-width: 992px) and (orientation:portrait){

 }

 @media only screen and (min-width: 1200px) and (orientation:portrait){

 }

/* max:600px, min: 601px, 768px, 992px, 1200px */

 }
