@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Kreon:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');

#maincontent {
    position: relative;
}

.descriptionTXT {
    max-width: 700px;
    margin: auto;
    line-height: 1.5;
}

.descriptionTXT h1 {
    font-family: Kreon, Lato, Arial, Helvetica, sans-serif;
    color: #E0D7CE;
    font-weight: bold;
}

.descriptionTXT p {
    color: #E0D7CE;
}

/*Flughafen*/

#helium_logo {
	margin-bottom: 70px;
}

/*Menu Buttons*/


#comic-menu,
.sound-bttn {
    text-align : center;
    color      : white;
    font-family: Lato, Arial, Helvetica, sans-serif;
    margin-bottom: 20px;
    margin-left: 5px;
    margin-right: 5px;
}

.comic-menu-bttn,
.sound-bttn {
    display        : inline-block;
    text-decoration: none;
    color          : white;
    opacity        : 0.7;
    font-size: 16px !important;
    font-weight: 400 !important;
    text-transform: none !important;
}

.comic-menu-bttn:hover,
.sound-bttn:hover {
    opacity: 1 !important;
    color  : white !important;
}

.comic-menu-bttn img {
    display: inline-block !important;
}

.sound-bttn {
    background-color: transparent;
    border:none;
    font-size: 16px;
}

.sound-bttn:hover {
    cursor: pointer;
    background-color: transparent;
}

.sound-bttn img {
    margin-right: 3px;
}


/*Audiobanner*/
#audioBanner {
    width: 100%;
    background-color:#FEAE47;
    color: #44332C;
    padding-top: 5px;
    padding-bottom: 20px;
    border: none;
    outline: none;
    text-align: left;
    position: relative;
    text-transform: none !important;
}

#audioBanner:hover {
    cursor: pointer;
}

#audioBanner h3 {
    font-family: Kreon, Lato, Arial, Helvetica, sans-serif;
    font-size: 25px;
    margin-bottom: 0px;
    color: #44332C;
    clear: none !important;
}

#audioBannerContent {
    max-width: 600px;
    margin: auto;
}

#audioBannerContent p {
    font-family: Lato, Arial, Helvetica, sans-serif;
    font-weight: 400 !important;
    line-height: 1.7;
    font-size: 16px;
}

#audioBannerContent img {
    float: left;
    margin-right: 30px;
}

/*Flug Fortschrittsanzeige*/

#flightProgress {
    height: 125px;
    background-color: #5A1915;
    color: #E0D7CE;
}

.destination {
    width: 150px;
    padding-top: 20px;
}

.airportIdent {
    font-family: Kreon, Lato, Arial, Helvetica, sans-serif;
    font-size: 40px;
}

.airportName {
    font-family: Lato, Arial, Helvetica, sans-serif;
    font-size: 14px;
}

#airportTRB {
    float: left;
    padding-left: 25px;
    text-align: left;
}

#airportTLR {
    float: right;
    padding-right: 25px;
    text-align: right;
}

#progressBar {
    width: calc(100% - 400px);
    height: 125px;
    position: relative;
    margin: auto;
    background-image: url("img/dotted_line.png");
    background-repeat: repeat-x;
    background-position: center left;
    background-size: 15px;
}

#airshipIcon {
    height: 125px;
    width: 125px;
    background-image: url("img/airship_icon.png");
    background-position: center center;
    background-size: 100px;
    background-repeat: no-repeat;
    position: absolute;
    left: 0px;
    animation-name: progressBar;
    animation-fill-mode: forwards;
    animation-duration: 80s;
    -webkit-animation:linear;
    -webkit-animation-name: progressBar;
    -webkit-animation-duration: 80s;
    -webkit-animation-fill-mode: forwards;
}

@keyframes progressBar {
    0%   {left: 0px;}
    100%  {left: calc(100% - 50px);}  
}
/*Button zum Ausstiegen aus dem Luftschiff*/
#exitBar {
    background-color: #D8453D;
    padding-top: 5px;
    padding-bottom: 5px;
    height: 0px;
    margin-bottom: -10px;
    overflow: hidden;
    visibility: hidden;
    animation: exitAirship 80s steps(1, end) forwards;
}

@keyframes exitAirship {
    0% {visibility: hidden;height:0px;margin-bottom:-10px;}
    100% {visibility: visible;height:48px;margin-bottom:0px;}
}


#exitBttn {
    display: inline-block;
    padding: 7px;
    padding-left: 25px;
    padding-right: 25px;
    background-color: #FF857D;
    color: white;
    font-size: 20px;
    border-radius: 5px;
    text-decoration: none;
}


/*Geschichte der Luftschiffahrt*/

#history {
    width: 90%;
    max-width: 1500px;
    margin: auto;
    background-image: url("img/paper_bg.png");
    background-size: cover;
    background-repeat: no-repeat;
}

#historyContent {
    padding: 150px;
    padding-top: 100px;
    padding-bottom: 75px;
    text-align: left;
    line-height: 1.5;
    font-weight: 400;
}

#history p {
    color:#321F18;
}

#history h2 {
    font-size: 30px;
    font-family: Kreon, Lato, Arial, Helvetica, sans-serif;
    color: #321F18;
}

/*Kleiner als 800 (Mobilgeräte)*/

@media only screen and (max-width: 799px) {
    #history {
        max-width: 100%;
        width: 100%;
        background-image: url("img/paper_bg_m.png");
        background-size: contain;
        background-repeat: repeat-y;
    }

    #historyContent {
        padding: 30px;
    }

    #audioBannerContent img {
        max-width: 22%;
        margin-right: 15px;
        margin-bottom: 10px;
    }
    
    #audioBanner h3 {
        font-size: 20px;
    }
    
    #audioBannerContent p {
        font-size: 14px;
        margin-top: 0px;
    }

    /*Progress Bar Mobile*/
    #flightProgress {
        height: 95px;
    }

    .destination {
        width: 90px;
    }

    .airportIdent {
        font-size: 25px;
    }

    #progressBar {
        width: calc(100% - 200px);
        height: 95px;
        background-size: 10px;
    }

    #airshipIcon {
        width: 70px;
        height: 95px;
        background-size: 70px;
    }

    }

/*Aspect Ratio Elemente*/

.terbium-container {
	width: 100%;
	position: relative;
}

.terbium-content {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	overflow: hidden;
}

.terbium-iframe {
	width: 100%;
	height: 100%;
	border: none;
	max-width: 200% !important;
}

#terbium-container {
	padding-top: 49.5%;
	background-color: #321F18;
}

#luftschiff-container {
	padding-top: 62.6%;
	background-color: #321F18;
}

#terbium-content {
	background-image: url("/terbium/loader_main.gif");
	background-position: center center;
	background-repeat: no-repeat;
}


/*Formular*/

#airport_form_section {
    padding-top: 50px;
    padding-bottom: 50px;
    width: 100%;
    background-image: url("/terbium/dokumente/img/paper_bg.jpg");
    background-size: cover;
}
