@charset "UTF-8";
/* CSS Document */

/* roboto-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/roboto-v32-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

#myBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: #fbba00;; /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
    font-size: 16px; /* Increase font size */
	line-height: 24px; /* Set the line-height for better alignment inside the box */
	text-decoration: none;
}

#myBtn:hover {
    background-color: #555; /* Add a dark-grey background on hover */
	text-decoration: none;
}

/* Das Hero Image */
.hero-image {
	/* Mit "linear-gradient" wird das Hintergrundbild (images/photographer.jpg) abgedunkelt, damit der Text leichter lesbar ist */
	background-image: linear-gradient(rgba(0, 0, 0, 0.5),
					rgba(0, 0, 0, 0)),
					url("../images/hero-image.jpg");

	/* Höhe des Hero-Images festlegen */
	height: 100vh; /* 50vh macht das Hero-Image nur halb so hoch */

	/* Ausrichtung und Zentrierung des Bildes, damit es auf allen Bildschirmen gut aussieht */
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	display: flex;
	justify-content: center;
}

/* Platziert einen Text in der Mitte des Bildes (optional) */
.hero-text {
	color: white;
	text-align: center;
	align-self: center;
	font-family: 'Roboto';
	
}

.schrift {
	font-size: 460%;
	font-weight: bolder;
	font-stretch:semi-expanded;
}

.schrift1 {
	font-size: 38px;
}

.schrift2 {
	font-size: 22px;
}

.bg-dark {
	background-color: #232222!important;
}

.bg {
	background-color: #232222;
}

.font {
	color: white;
}

.ueberschrift {
	font-size: 30px;
}

.fliesstext {
	font-size: 16px;
}

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

a:hover {
	color: #fbba00;
}

.gelb {
	color: #fbba00;
	text-align: center;
	font-size: 30px;
}

.groesse {
	font-size: 28px;
}

.ueberschrift2 {
	font-size: 42px;
}

.gelb2 {
	color: #fbba00;
	font-size: 20px;
}

.gelb3 {
	color: #fbba00;
	font-size: 40px;
}

/* Pop-up Overlay */
#popup-overlay {
    display: none; /* Startet versteckt */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Dunkler Hintergrund mit Transparenz */
    z-index: 9999;
    overflow: hidden;
}

/* Pop-up Content */
#popup {
    position: fixed; /* Fixiert, damit es zentriert bleibt */
    top: 50%; /* Vertikal zentrieren */
    left: 50%; /* Horizontal zentrieren */
    transform: translate(-50%, -50%); /* Korrektur für echte Zentrierung */
    width: 90%; /* Breite für große Bildschirme */
    max-width: 800px; /* Maximale Breite */
    background: rgba(251, 186, 0, 0.9); /* Gelber Hintergrund mit Transparenz */
    padding: 60px; /* Innenabstand */
    border-radius: 24px; /* Sehr weiche Ecken */
    border: 4px solid black; /* Schwarze Umrandung */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5); /* Moderner Schatten */
    text-align: center;
    font-family: 'Roboto', sans-serif;
    animation: fadeIn 0.3s ease-out; /* Sanfte Einblendung */
    overflow-y: auto; /* Scrollbar bei Bedarf */
}

/* Pop-up Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

/* Titel */
.popup-title {
    font-size: 36px; /* Größerer Titel */
    font-weight: 700;
    color: black;
    margin-bottom: 20px;
}

/* Allgemeiner Text */
#popup p {
    font-size: 22px; /* Größere Schrift */
    font-weight: 400;
    color: black;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Hervorgehobene Daten */
.highlighted-date {
    font-weight: 700; /* Fettgedruckt */
    color: black; /* Standardfarbe */
}

/* Signatur */
.popup-signature {
    font-size: 24px; /* Größere Signatur */
    font-style: italic;
    margin-top: 30px;
    color: black;
}

/* Schließen-Button */
#close-popup {
    margin-top: 30px;
    padding: 15px 40px; /* Größerer Button */
    background: black;
    color: white;
    border: none;
    border-radius: 12px; /* Rundere Ecken */
    font-size: 20px;
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

#close-popup:hover {
    background: #444; /* Leichter Hover-Effekt */
    transform: translateY(-2px); /* Leichter Hover-Effekt */
}

/* Responsives Design */
@media (max-width: 600px) {
    #popup {
        width: 95%; /* Maximale Breite auf kleinen Bildschirmen */
        height: auto; /* Höhe passt sich automatisch an */
        max-height: none; /* Keine maximale Höhe */
        padding: 40px; /* Weniger Innenabstand */
    }

    .popup-title {
        font-size: 28px; /* Kleinere Schriftgröße */
    }

    #popup p {
        font-size: 18px; /* Kleinere Schrift für Text */
    }

    .popup-signature {
        font-size: 20px; /* Kleinere Signatur */
    }

    #close-popup {
        font-size: 18px; /* Kleinere Schrift für den Button */
        padding: 10px 30px; /* Kleinere Abstände */
    }
}

.zentrieren {
	text-align: center; 
}

.aufzaehlung {
	display: inline-block;
    text-align: left;
    list-style-position: inside;
    line-height: 1.8em;
	margin-top: 0.5em;
	padding-left: 0;   
}

/* Abschnitt zentrieren */
.leasing-section {
  text-align: center;
  color: white; /* an dein Farbschema anpassen */
  margin-top: 2em;
}

/* Container für Inhalt (zentriert, aber linksbündiger Text) */
.leasing-content {
  display: inline-block;
  text-align: left;
  max-width: 500px; /* kannst du anpassen (z. B. 600px oder 400px) */
}

/* Überschrift-Stil */
.leasing-content h4 {
  margin-bottom: 0.5em;
  font-weight: 600;
}
