/*
Theme Name: ak_lido
Author: Wolfgang Schellnast
Author URI: https://www.wolfgangschellnast.com
Description: Responsive Theme for alphakanal
Version: 1.0
*/

@import url("https://use.typekit.net/hpp2bth.css");

* {
  box-sizing: border-box;
}

body {
  color: #fff;
  line-height: 1;
  background-color: black;
  font-family: "futura-pt-condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.2em;
}

a {
  color: inherit;
  text-decoration: none;
  font-size: inherit;
}

a:hover {
  font-style: italic;
  cursor: pointer;
}

p {
  margin: 0;
  font-size: clamp(16px, 2vw, 24px);
  line-height: 1.3;
}

.img-fluid {
  width: 100%;
  height: auto;
}

/* Page - BASIC */
.bg {
  background-image: url("images/test.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: calc(var(--vh, 1vh) * 100);
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
}

section.main .middle {
  flex: 2;
  text-align: center;
}

section.main .left {
  flex: 1;
}

section.main .right {
  flex: 1;
  text-align: right;
}

section.main {
  min-height: calc(var(--vh, 1vh) * 99.99);
  width: 100%;
}

section.main .content {
  position: absolute;
  z-index: 1;

  /* height: 99%; */
  width: 100%;
  min-height: calc(var(--vh, 1vh) * 99);

  padding: 40px;

  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;

  padding-top: 120px;
  padding-bottom: 120px;
}

section.main .top,
section.main .bottom {
  font-size: clamp(18px, 2vw, 28px);

  position: fixed;
  z-index: 10;
  left: 0;
  width: 100%;
  padding: 40px;

  display: flex;
  justify-content: space-between;
}

section.main .top {
  align-items: flex-start;
  top: 0;
}

section.main .bottom {
  align-items: flex-end;
  bottom: 0;
  /* padding-bottom: 40px; */
}

section.main .bottom .middle p {
  text-transform: uppercase;
  font-style: italic;
}

section.main .content p {
  font-size: clamp(25px, 4vw, 40px);
  line-height: 1.2;
  margin: 1rem 0;
  text-transform: uppercase;
}

section.main .content p a {
  font-style: normal;
}

section.main .content p a:hover {
  font-style: italic;
}

/* PAGE DEFAULT (KONTAKT) */
.page-template-page-default p {
  font-style: italic;
}

/* LOGO */
.logo img {
  width: 45%;
  min-width: 175px;
  max-width: 300px;
  height: auto;
}

/* OWL CAROUSEL HOME */
.owl-carousel .animated {
  -webkit-animation-duration: 2s !important;
  animation-duration: 2s !important;
}

.owl-carousel.slider-home {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.owl-carousel.slider-home .slide {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center center;
}
.owl-carousel.slider-home .slide img {
  visibility: hidden;
}

.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  section.main .top,
  section.main .bottom,
  section.main .content {
    padding: 20px;
  }
  .logo img {
    margin-top: 0;
  }
  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: block;
  }
}
