* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}


body {
  position: relative;
  padding-bottom: 64px;
  min-height: 100%;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: #1d2a21;
  line-height: 1.5;
  max-width: 1920px;
  margin: 0 auto;
  background: url(../grafiken/bg.jpg) no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}


/* Grund­styling des Buttons */
#scrollTopBtn {
    position: fixed;
    right: 20px;
    bottom: 80px;            /* etwas höher als dein Footer */
    font-size: 32px;
    border: none;
    border-radius: 6px;
    padding: 6px 10px;
    background: rgba(252,252,252,.6);
    color: #555;
    cursor: pointer;
    z-index: 90;

    /* Unsichtbar + leicht nach unten versetzt */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .3s ease, transform .3s ease;
    pointer-events: none;    /* solange unsichtbar, nicht klickbar */
}

/* Sichtbar-Zustand (wird via JS hinzugefügt/entfernt) */
#scrollTopBtn.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Optional: Hover-Effekt */
#scrollTopBtn:hover {
    background: rgba(252,252,252,.8);
}



.header {
    display: grid;
    grid-template-columns: 220px 1fr;
/*    grid-template-rows: 200 px; */
    background: rgb(125, 137, 100, 0.5);    
    align-items: center;
    justify-items: center;
}

.header h1 {
    font-size: 5.333em;
    font-weight: bold;
}

/* Enfügung 
.header h1 {
    font-size: 5.333em;
    font-weight: bold;
    text-align: center;
    margin-left: 260px;
   text-shadow: 0 0 2px #fff,
        -1px -1px 0 hsl(80, 70%, 35%),
        -2px -2px 1px hsl(80, 70%, 35%),
        -2px -2px 2px hsl(80, 10%, 15%) 
}

.header {
    padding: 1.25em;
    min-height: 15.625em;

    border-radius: 15px;
    background: rgb(125, 137, 100, 0.5);
    background: linear-gradient(90deg, rgba(255, 137, 100, 1) 0%, rgba(158, 175, 98, 1) 50%, rgba(95, 148, 177, 1) 100%);
    color: #212529;
    -webkit-box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.75)
}

.header img {
    display: block;

    box-shadow: none;
    border: none
}
 Ende Einfügung */
.row {
  background-color: rgb(255, 255, 255);
  background-color: rgba(255, 255, 255, 0.5);
}

.row::after {
  content: "";
  clear: both;
  display: table;
}

[class*="col-"] {
  float: left;
  padding: 15px;
}

[class*="col-"] {
  width: 100%;
}

.name {
  font-family: 'Oswald', sans-serif;
  text-align: center;
  font-size: 36px
}

#responsive-nav {
  display: none
}

.responsive-nav-label {
  display: inline-block;
  padding: 15px 0 0 15px;
  font-size: 150%
}

nav {
  display: none;
  background-color: rgb(255, 255, 255);
  background-color: rgba(255, 255, 255, 0.5);
}

input[type=checkbox]:checked~nav {
  display: block
}

nav ul {
  list-style-type: none;
}

nav ul ul {
  padding-left: 40px
}

nav a {
  text-decoration: none;
  color: #496421;
  display: block;
  padding: .5em;
}

nav a:hover {}

main a {
  color: #496421;
}

main a:hover {
  text-decoration: none;
}

footer {
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
}

footer a {
  color: #fff;
}

/*Allgemein*/

img {

  max-width: 100%;
  height: auto
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Oswald', sans-serif;
  margin-bottom: 10px
}

p {}

small {
  font-size: 90%
}

ol,
ul {
  list-style-position: inside
}

/*mozilo*/

.heading1 {
  font-size: 32px
}

.heading2 {
  font-size: 28px
}

.heading3 {
  font-size: 22px
}

.listitem {
  list-style-position: inside
}

.alignright {
  text-align: right
}

.alignleft {
  text-align: left
}

.aligncenter {
  text-align: center
}

table.contenttable {
  width: 100%;
  text-align: center;
  margin: 10px 0
}

th.contenttable {
  background: #496421;
  color: #fff;
  border-right: 1px solid;
  padding: 7px
}

th.contenttable:last-child {
  border-right: none
}

td {
  padding: 7px;
  border-bottom: 1px solid #444
}

.leftcontentimage {
  float: left
}

.rightcontentimage {
  float: right
}

.horizontalrule {
  margin: 10px 0
}

/* Einfügung */
/* -------------------------------------- */
/* ---------- max-width 550px ----------- */
/* -------------------------------------- */
@media only screen and (max-width: 550px) {
    body {
        font-size: 14px;
    }

    .header h1 {
        font-size: 2.857em;
        margin-left: 10px;
    }

}
/* Ende Einfügung */

@media only screen and (min-width: 768px) {
  /* For desktop: */
  .col-1 {
    width: 8.33%;
  }
  .col-2 {
    width: 16.66%;
  }
  .col-3 {
    width: 25%;
  }
  .col-4 {
    width: 33.33%;
  }
  .col-5 {
    width: 41.66%;
  }
  .col-6 {
    width: 50%;
  }
  .col-7 {
    width: 58.33%;
  }
  .col-8 {
    width: 66.66%;
  }
  .col-9 {
    width: 75%;
  }
  .col-10 {
    width: 83.33%;
  }
  .col-11 {
    width: 91.66%;
  }
  .col-12 {
    width: 100%;
  }
  .row {
    margin: 20px;
    background-color: transparent
  }
  .name {
    padding-top: 20px
  }
  .responsive-nav-label {
    display: none
  }
  nav {
    display: block;
    width: 24% !important;
    margin-right: 1%;
    border-radius: 15px;
  }
  nav ul {
    list-style-image: url('../grafiken/golf-icon.png');
  }
  nav ul ul {
    list-style-image: none;
  }
  nav a {
    padding: 0;
    display: inline;
  }
  nav a:hover {
    font-weight: 700
  }
  main {
    background-color: rgb(255, 255, 255);
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
  }
  footer {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
  }
}



@media only screen and (max-width: 768px) {
  /* For desktop: */
  
      .header h1 {
        font-size: 3.333em;
        margin-left: 10px;
      }
}        
@media only screen and (min-width: 769px) {
  /* For large desktop: */
  .col-1 {
    width: 8.33%;
  }
  .col-2 {
    width: 16.66%;
  }
  .col-3 {
    width: 25%;
  }
  .col-4 {
    width: 33.33%;
  }
  .col-5 {
    width: 41.66%;
  }
  .col-6 {
    width: 50%;
  }
  .col-7 {
    width: 58.33%;
  }
  .col-8 {
    width: 66.66%;
  }
  .col-9 {
    width: 75%;
  }
  .col-10 {
    width: 83.33%;
  }
  .col-11 {
    width: 91.66%;
  }
  .col-12 {
    width: 100%;
  }
    .header h1 {
        font-size: 4.75em;
    }    
}
/* -------------------------------------------------------- */
/* [block|...] */
/* ----------- */
.alignjustify {
    text-align:justify;
}
/* -------------------------------------------------------- */
/* {TABLEOFCONTENTS} */
/* ----------------- */
div.tableofcontents ul ul {
    /*padding-left:15px;*/
}
div.tableofcontents li.blind {
    list-style-type:none;
    list-style-image:none;
}
fieldset#searchfieldset {
   border:none;
   margin:0px;
   padding:0px;
}