/* cmsms stylesheet: reset modified: Freitag, 8. Januar 2021 18:25:23 */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul[class],
ol[class] {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
/*img:not([alt]) {
  filter: blur(10px);
}*/

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* cmsms stylesheet: fonts modified: Dienstag, 12. Juli 2022 15:57:30 */
@font-face {
  font-family: "Barlow";
  src: url(https://tennis-kaltenleutgeben.at/uploads/fonts/Barlow-Regular.ttf) format("truetype");
  font-display: fallback;
}

@font-face {
  font-family: "Barlow-Medium";
  src: url(https://tennis-kaltenleutgeben.at/uploads/fonts/Barlow-Medium.ttf) format("truetype");
  font-display: fallback;
}

@font-face {
  font-family: "Barlow-Bold";
  src: url(https://tennis-kaltenleutgeben.at/uploads/fonts/Barlow-Bold.ttf) format("truetype");
  font-display: fallback;
}

@font-face {
  font-family: "ZillaSlab-Light";
  src: url(https://tennis-kaltenleutgeben.at/uploads/fonts/ZillaSlab-Light.ttf) format("truetype");
  font-display: fallback;
}

@font-face {
  font-family: "ZillaSlab";
  src: url(https://tennis-kaltenleutgeben.at/uploads/fonts/ZillaSlab-Regular.ttf) format("truetype");
  font-display: fallback;
}

@font-face {
  font-family: "ZillaSlab-Medium";
  src: url(https://tennis-kaltenleutgeben.at/uploads/fonts/ZillaSlab-Medium.ttf) format("truetype");
  font-display: fallback;
}

@font-face {
  font-family: "ZillaSlab-Bold";
  src: url(https://tennis-kaltenleutgeben.at/uploads/fonts/ZillaSlab-Bold.ttf) format("truetype");
  font-display: fallback;
}
/* cmsms stylesheet: default modified: Dienstag, 16. Mai 2023 09:30:21 */
:root {

  /* navigation color */
  --farbe1: #fff200;
  --farbe2: #d2232a;
  --farbe3: #f36f21;
  --farbe4: #40883c;
  --farbe5: #00aeef;
  --farbe6: #00b6a3;
  --farbe7: #ec008c;
  --farbe8: #75507b;
  --farbe9: #4e9a06;
  --article-bg-color: rgba(255, 255, 255, 0.7);

  /* font color */
  --fc-normal: #333;
  --fc-heading: #aa0000;
  --fc-link: #204a87;
  --fc-link-hover: rgb(114, 159, 207);

  /* font family */
  --ff1: 'Barlow', sans-serif;
  --ff2: 'Zilla Slab', serif;
  --ff1-medium: "Barlow-Medium", sans-serif;
/*
  --ff1: "Barlow", sans-serif;
  --ff1-medium: "Barlow-Medium", sans-serif;
  --ff1-bold: "Barlow-Bold", sans-serif;
  --ff2: "ZillaSlab-Light", serif;
  --ff2-medium: "ZillaSlab", serif;
  --ff2-bold: "ZillaSlab-Medium", serif;
*/

  /* font weight */
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-bold: 700;

  /* font size */
  --fs-huge: max(2em, 2vw);
  --fs-larger: max(1.5em, 1.5vw);
  --fs-large: max(1.2em, 1.2vw);
  --fs-normal: max(1em, 1vw);

  --corner-radius: 0px;
}

p + p {
  margin-top: 0.5em;
}

h1 + h1 {
  margin-top: 1em;
}

h2 + h2 {
  margin-top: 1em;
}

h3 + h3 {
  margin-top: 1em;
}

body {
  font-family: var(--ff2);
  font-weight: var(--fw-regular);
  font-size: clamp(1.2rem, var(--fs-normal), 1.5rem);
  color: var(--fc-normal);
  background-color: #fff;
  overflow: auto;
  height: 100%;
  width: 100%;
}

b {
  font-family: var(--ff2);
  font-weight: var(--fw-bold);
}


h1,
article,
footer {
  margin: 1rem;
}

h1,
h2,
h3,
h4 {
  color: var(--fc-heading);
  font-family: var(--ff1);
  font-style: normal;
  line-height: 1.2em;
}

h1 {
  color: #fff;
  font-weight: var(--fw-bold);
  font-size: var(--fs-huge);
/*  -webkit-text-stroke: 1px #666; */
}

h2 {
  font-weight: var(--fw-medium);
  font-size: var(--fs-larger);
  line-height: 1.0em;
}

h3 {
  font-weight: var(--fw-regular);
  font-size: var(--fs-large);

}

h4 {
  font-weight: var(--fw-regular);
  font-size: var(--fs-normal);
  font-style: italic;
}

p {
  text-align: left;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  -moz-hyphenate-limit-chars: auto 3;     /* not yet supported */ 
  -webkit-hyphenate-limit-chars: auto 3;  /* not yet supported */ 
  -ms-hyphenate-limit-chars: auto 3; 
  hyphenate-limit-chars: auto 3;
}

.noblock {
  text-align: left;
}

logo {
  display: inline-block;
  padding: 1rem;
  border: 0px solid #000;
}

logo img {
  width: max(220px, 15vmax);
}

footer {
  display: flex;
  align-items: flex-end;
  justify-content: right;
}

.claim {
  width: max(180px, 15vmax);
  margin-top: 1rem;
  margin-right: 1rem;
}

.ziffern {
  font-family: var(--ff2);
  font-weight: var(--fw-regular);
}

@media (min-width: 780px) {
  footer {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
  }
}
/* cmsms stylesheet: nav modified: Dienstag, 16. Mai 2023 09:28:51 */
.nav-toggle {
  display: none;
}

.nav-toggle:checked ~ nav {
  display: block;
}

.nav-toggle-label {
  position: fixed;
  top: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  width: 4rem;
  height: 4rem;
  border: 3px solid rgb(255, 255, 255);
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.24);
  color: #ffffff;
  cursor: pointer;
  z-index: 999;
}

nav {
  display: none;
  z-index: 999;
  position: absolute;
  right: 0px;
  top: 75px;
  overflow: auto;
}

nav ul {
  margin-top: 0.5em;
}

nav ul ul {
  margin: 0;
}

nav li {
  list-style-type: none;

}
li:active ul,
li:hover ul,
li:focus ul,
li:target ul {
  margin-top: 0.5rem;
}

.menulink,
.sectionheader {
  display: block;
  font-family: var(--ff1-medium);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  font-size: max(1em, 1vmax);
  white-space: nowrap;
  text-decoration: none;
  margin: 0 0 0.4rem 0;
  padding: 0.5rem 0.1rem 0.5rem 1rem;
  border-radius: 100vw 0 0 100vw;
}

.menulink > ul {
  /* Einrückung der Untermenüs */
  padding-left: 2rem;
}

.sectionheader {
  color: #fff;
  background-color: #60889f;
  -webkit-transition: background-color 1.5s ease-in-out;
  -moz-transition: background-color 1.5s ease-in-out;
  -o-transition: background-color 1.5s ease-in-out;
  -ms-transition: background-color 1.5s ease-in-out;
  transition: background-color 1.5s ease-in-out;
}

.sectionheader:active,
.sectionheader:hover,
.sectionheader:focus,
.sectionheader:target {
   color: #000;
   background-color: transparent;
  -webkit-transition: background-color 0s ease-in-out;
  -moz-transition: background-color 0s ease-in-out;
  -o-transition: background-color 0s ease-in-out;
  -ms-transition: background-color 0s ease-in-out;
  transition: background-color 0s ease-in-out;
}

.menudepth1,
.menudepth2 {
  height: 0;
  opacity: 0;
  overflow: hidden;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

nav li:active.menudepth0 .menudepth1,
nav li:focus.menudepth0 .menudepth1,
nav li:hover.menudepth0 .menudepth1,
nav li:target.menudepth0 .menudepth1,
nav li:active.menudepth1 .menudepth2,
nav li:focus.menudepth1 .menudepth2,
nav li:hover.menudepth1 .menudepth2,
nav li:target.menudepth1 .menudepth2 {
  height: 3.0rem;
  opacity: 1;
  overflow: hidden;
}
/*
@media (min-width: 780px) {
  .nav-toggle {
    display: none;
  }

  .nav-toggle-label {
    display: none;
  }

  nav {
    z-index: 999;
    display: block;
    position: absolute;
    right: 0px;
    top: 0rem;
    height: auto;
    width: auto;
    overflow: auto;
  }
}
*/
/* cmsms stylesheet: firstpage modified: Dienstag, 16. Mai 2023 09:34:15 */
body {
  background-image: url("https://tennis-kaltenleutgeben.at/uploads/images/background/bg_home.png");
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: auto 75%;
  background-attachment: fixed;
}

a { 
  color: inherit;
  text-decoration: none;
}

a:hover, a:focus {
  text-decoration: underline;
}

.logo {
  position: absolute;
  top: 5vh;
  left: 3vw;
}

.logo_image {
  width: max(180px, 20vw);
  height: auto;
}

#info {
   display: block;
   font-family: var(--ff1); 
   background-color: rgba(255,242,0,0.75);
   position: absolute;
   top: 44vh;
   left: 10vw;
   width: 80vw;
   height: 17.5vmax;
   transform: rotate(-8deg);
   z-index: 2;
   line-height: 2.75vmax;
   border: 2px solid #FFF200;
   border-radius: 5px;
   
}

#info-rufzeichen {
   position: absolute;
   top: 3.5vmax;
   left: 0px;
   width: 100%;
   height: auto;
   display: block;
   margin-left: 0vmax;
   margin-top: 5vmax;
   padding: 0;
}

#info-text {
   position: absolute;
   top: 0px;
   left: 0px;
   width: 100%;
   height: auto;
   display: block;
   margin-left: 4vmax;
   padding: 1vmax;
}

.fett {
   font-weight: bold;
}

.schwarz {
   color: #000;
   font-size: 2vmax;
}

.blau {
   color: #00AEEF;
   font-size: 2.5vmax;
}

.rot {
   color: #D2232A;
   font-size: 16vmax;
}


#titelbox,
#tennisimgruenen {
  font-family: var(--ff1);
  font-weight: var(--fw-bold);
  font-size: 2.75vmax;
/*  text-transform: uppercase; */
  padding-top: 1vh;
  padding-bottom: 1vh;
}

#titelbox {
  z-index: 2;
  position: absolute;
  bottom: 10vh;
  left: 0px;
  height: auto;
  width: 27ch;
  color: #f36f21;
  border: 0px solid #5e9230;
  background-color: #fff;
  border-radius: 0px 100vw 100vw 0px;
  text-align: right;
  padding-right: 0.75em;
  padding-left: 1ch;
}

#tennisimgruenen {
  z-index: 2;
  position: absolute;
  bottom: 25vh;
  right: 0px;
  height: auto;
  width: 19ch;
  color: #40883c;
  border: 0px solid #5e9230;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 100vh 0 0 100vh;
  text-align: left;
  padding-left: 0.75em;
  padding-right: 1ch;
  font-size: 2.25vmax;
}

#tennisplayer {
  position: absolute;
  z-index: 1;
  width: 100vw;
  height: 100vh;
  background-color: transparent;
  background-image: url("https://tennis-kaltenleutgeben.at/uploads/images/tennisplayer_with_ball.png");
  background-position: 50% bottom;
  background-repeat: no-repeat;
  background-size: contain;
  background-attachment: fixed;
}

  footer {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
  }

@media (min-width: 780px) {

#info {
   top: 44vh;
   left: 10vw;
   width: 47ch;
   height: 17.5vmax;
}

}
