html {
  scroll-behavior: smooth;
   scroll-padding-top: 2em; 
}


body {
    margin: 0;
    padding: 5px;
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 200;
    font-size: 16px;
    src: url('../fonts/raleway-v29-latin-200.woff2') format('woff2');
    background-color: rgb(239,239,239);     
}

header {
    box-shadow: 5px 0px 10px;
    display: flex;
    justify-content: space-between;
    padding-left: 10px;
    padding-right: 10px;
    background-color: rgb(200,239,200);     
}

header img {
    object-fit: cover;
    height: 100px;
    margin-top: 10px;
}

.topnav {
  position: sticky;
  top: 0px;
  background-color: #252;
  z-index: 2;
}

.topnav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.topnav li {
  float: left;
}

.topnav li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.topnav li a:hover {
  background-color: #111;
}

.menu-toggle {
	display: none
}

/* Styles for smaller screens */
@media screen and (max-width: 768px) {
  .topnav ul {
    display: none; /* Hide the menu by default */
    flex-direction: column; /* Make the menu vertical */
  }

  .topnav li {
    float: none; /* Remove the float */
  }

  .topnav li a {
    text-align: left; /* Align text to the left */
    padding: 10px 16px;
  }

  .menu-toggle {
    display: block; /* Show the menu toggle button */
    background-color: #252;
    color: white;
    border: none;
    font-size: 18px;
    padding: 14px 16px;
    cursor: pointer;
    width: 100%;
    text-align: left;
  }

  .menu-toggle:hover {
    background-color: #111;
  }

  .topnav ul.show {
    display: flex; /* Show the menu when toggled */
  }
}

.dropdown {
  position: relative;
  display: inline-block;
}


.dropdown-content {
  display: none;
  position: absolute; /* making it relative allows for sizing too 100% */
  background-color: #f9f9f9;
  min-width: 160px;
  width: 500px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown img {
	object-fit: cover;
	height:auto;
}

.dropdown-content img {
	object-fit: cover;
	height:auto;
	width:100%;
}
.dropdown:hover .dropdown-content {
  display: block;
}


.desc {
  padding: 15px;
  text-align: center;
}

td {
	padding: 5px 5px;
	text-align: left;
	vertical-align: top;
}

th {
	padding: 5px 5px;
	text-align: left;
	vertical-align: top;
}

header nav ul {
    gap: 16px;
    padding: 0 0 8px 0;
    list-style: none;
    height: 100px;
    padding-inline-start: 0;
    margin-block-start: 0px;
    margin-block-end: 0;
    display: flex;
    align-items: flex-end;
    z-index: 999;
    
}

header nav ul li a {
    cursor: pointer;
    text-decoration: none;
    color: black;
    font-weight: bold;

}

header nav ul li a:hover {
    color: rgb(255,0,0);
}

hr{
    border: 10px;
    width: 100%;
    color: rgb(200,240,200);
    background-color: rgb(200,240,200);
    height: 10px;
}

.clubheader details {
	display: flex;
	text-align:left;
	width: 80%;
	min-width: 400px;
	max-width: 800px;
	padding: 5px;
}

.description .summary {
	text-align:left;
	padding: 10px; 
}

.img-container {
  float: left;
  width: 33.33%;
  padding: 5px;
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

.clubheader {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  margin-top: 20px;
}

.clubheaderLogo {
  height: 300px !important;
  padding-bottom: 10px;
}

.clubheader h3 {
  margin-bottom: 0;
}

.clubheader p {
  margin-top: 5px;
  font-size: 18px;
}

summary {
	color: blue;
}

.clubheader a {
  text-decoration: none;
  font-size: 18px;
  color: blue
}

/*
.clubheader img {
  height: 32px;
}
*/

.clubMaps {
  width: 100%;
  max-width: 800px;
  padding: 5px;
  /*border: 1px solid red;*/
  display: flex;
  justify-content: center;
  margin-top: 20px
}

.maps {
  width: 100%;
  aspect-ratio: 1.6;
}

.sendMailContainer {
  display: flex;
  justify-content: center;
}

.sendMailContainer input {
  width: 100%;
  height: 40px;
  margin-bottom: 10px;
}

.sendMailContainer textarea {
  width: 100%;
  height: 300px;
}

.sendMailSection {
  width: 800px;
}

.clubButton {
  text-decoration: none;
  border: none;
  width: 150px;
  height: 50px;
  background-color: rgb(100,140,100);
  color: white;
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 20px;
}

.clubButton:hover {
  cursor: pointer;
  background-color: rgb(165,165,165);
  width: 152px;
  height: 52px;
}

footer {
    background-color:rgb(34,34,34);
    height: 200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 150px;
    padding-right: 150px;
    border-top: 4px solid rgb(229,203,146)
}
    
footer a {
    text-decoration: none;
    color: white;
    text-align: center;
}

footer a:hover {
    text-decoration: none;
    filter: drop-shadow(0 0 4px #FFFFFF);
}

footer img {
    height: 32px;
    margin-top: 16px;
}

footer img:hover {
    filter: drop-shadow(0 0 4px #FFFFFF);
}

.footerCopyright {
    display: flex;
    background-color: rgb(27,27,27);
    color: white;
    justify-content: center;
    align-items: flex-end;
    font-size: 12px;
}


*,
*::after,
*::before {
    box-sizing: border-box;
}


:root {
    --bar-width: 60px;
    --bar-height: 8px;
    --hamburger-gap: 6px;
    --foreground: #333;
    --background: white;
    --hamburger-margin: 16px;
    --animation-timing: 200ms ease-in-out;
    --hamburger-height: calc(var(--bar-height) * 3 + var(--hamburger-gap) *2);
}


.hamburger-menu {
    display: none;
    --x-width: calc(var(--hamburger-height) * 1.41421356237);
    flex-direction: column;
    gap: var(--hamburger-gap);
    width: max-content;
    position: absolute;
    top: var(--hamburger-margin);
    right: var(--hamburger-margin);
    z-index: 2;
    cursor: pointer;
}

.hamburger-menu::before,
.hamburger-menu::after,
.hamburger-menu input {
    content: "";
    width: var(--bar-width);
    height: var(--bar-height);
    background-color: var(--foreground);
    border-radius: 9999px;
    transform-origin: left center;
    transition: opacity var(--animation-timing), width var(--animation-timing),
        rotate var(--animation-timing), translate var(--animation-timing),
        background-color var(--animation-timing);
}

.hamburger-menu input {
    appearance: none;
    padding: 0;
    margin: 0;
    outline: none;
    pointer-events: none;
}

.hamburger-menu:has(input:checked)::before {
    rotate: 45deg;
    width: var(--x-width);
    translate: 0 calc(var(--bar-height) / -2);
}

.hamburger-menu:has(input:checked)::after {
    rotate: -45deg;
    width: var(--x-width);
    translate: 0 calc(var(--bar-height) / 2);
}

.hamburger-menu input:checked {
    opacity: 0;
    width: 0;
}

.hamburger-menu:has(input:checked) + .sidebar {
    translate: 0;
}

.textColorRed {
    color: rgb(244,10,10);
}


.TestTraining {
    display: flex;
    background-color: rgb(200,239,200);
    justify-content: center;
    align-items: center;
    height: 100px;
}

.TestTraining a {
    text-decoration: none;
    font-size: 52px;
    color: rgb(130,94,36);
    font-weight: 600;
}

.clubInformation {
    display: flex;
    background-image: url("img/clubHintergrund.jpg");
    background-size: cover; 
    background-color: black;
    padding: 16px;  
    padding-bottom: 52px; 
}

.clubInformation h4 {
    color: rgb(244,181,34);
    font-size: 24px;
    margin-bottom: 16px;
    margin-top: 52px;
}

.clubInformation p {
    color: white;
    font-size: 16px;
    margin-top: 8px;
    margin-bottom: 8px;
}

.clubInformation a {
    text-decoration: none;
    color: rgb(244,181,34);
}

.clubsRow {
    padding-left: 32px;
}

/*
tr {
  font-family: 'Raleway', sans-serif;
  font-weight: bold;
  font-size: 24px; 
  color: #675E54;
  padding-bottom: 16px;
}
*/


