@font-face {
  font-family: 'Corinthia';
  font-style: normal;
  font-weight: 400;
  src: url('../chb_fonts/corinthia-v13-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../chb_fonts/corinthia-v13-latin-regular.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

@font-face {  
  font-family: 'Great Vibes';
  font-style: normal;
  font-weight: 400;
  src: url('../chb_fonts/great-vibes-v21-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

@font-face {
  font-family: 'Bickham Script';
  font-style: normal;
  font-weight: 5;
  src: url('../chb_fonts/Bickham Script Pro 3 Regular.otf') format('opentype');
}

body {
  background: radial-gradient(circle at center, #fff5e9 0%, #ffd8cc 100%);
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 100vh;
}

.screen-border {
  box-sizing: border-box;
  height: 100%;
  margin: 3px;
  border: 3px solid #9e594c;
  border-radius: 10px;
  corner-shape: scoop;
}

.cont_aufbau {
  text-align: center;
}

.cont_menue {
  background-color:#ffd8cc;
  top: 0;
  width: 100%;
  position: fixed;

  justify-content: center;
  align-items: center;  
  --abstand-abschnitte: 10px;
  z-index: 1000;
}

.cont_nav ul { 
  width: 100%; 
  display: flex;
  flex-wrap: wrap;  
  gap: 20px;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media(min-width: 850px) {
    .cont_nav ul {
        gap: 20px;
        display: flex;
        flex-direction: row;
        align-items: center; /*vertikale Ausrichtung*/
        justify-content: center; /*horizontale Ausrichtung*/
    }
}

.btn_nav {
  display: inline-block;
  background-color: #fff5e9;
  color: #555494;
  text-decoration: none;
  border-radius: 2px;
  padding: 2px 5px;
  z-index: 1000;
}

.btn_nav:hover{
  background-color: #555494;
  color: #fff5e9;
}

.btn_termin {
  display: inline-block;
  background-color: #fff5e9;
  color: #555494;
  text-decoration: none;
  border-radius: 2px;
  padding: 2px 5px;
  z-index: 1000;
}

.btn_termin:hover{
  background-color: #555494;
  color: #fff5e9;
}

/* Der Flaggen-Container ist standardmäßig unsichtbar */
.cont_flag {
  display: none;
  gap: 15px;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
  z-index: 1000;
}

.flag-icon {
  width: 40px;
  height: 20px;
  cursor: pointer;
  transition: transform 0.2s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  border-radius: 2px;
  z-index: 1000;
}

.flag-icon:hover {
  transform: scale(1.1);
  display: block;
}

.cont_name {
  --abstand-abschnitte: 1px; /* Hier den Abstand einfach anpassen */
  font-family: 'Bickham Script'; 
  position: relative;
  display: flex;
  flex-direction: column;            
  align-items: center; /* Mittig zum Container ausgerichtet */
  text-align: center;
  color: #9e594c;
}

.cont_name .text_titel {
    font-size: 65px;
    margin: 0 0 var(--abstand-abschnitte) 0;
    line-height: 0.7;
}
.cont_name .text_name {
    font-size: 80px;
    margin: 0;
    line-height: 0.7;
}

.cont_beruf {
    margin-top: 35px;
    font-family: 'Bickham Script';    
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center; /* Mittig zum Container ausgerichtet */
    text-align: center;
    font-size: 40px;
    color: #555494;
    gap: 7px;
}
.cont_beruf p {
    margin: 0;
    line-height: 0.7;
}

.cont_copyright {
    bottom: 5px;
    right: 5px;
    font-size: 17px;
    color: #555494; 
    text-align: right;
}

/* ==========================================================================
   NEUE STILE FÜR DAS DATENSCHUTZ-POPUP (MODAL) UND DIE BUTTONS
   ========================================================================== */

/* Hintergrund-Overlay für das Pop-up-Fenster */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Halbtransparenter dunkler Hintergrund */
  display: none; /* Wird per JS gesteuert */
  justify-content: center;
  align-items: center;
  z-index: 9999; /* Über allen anderen Elementen */
}

/* Inhalt des zentrierten Pop-up-Fensters */
.popup-content {
  background-color: #fff5e9;
  padding: 30px;
  border-radius: 10px;
  border: 3px solid #9e594c;
  max-width: 450px;
  width: 90%;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  color: #555494;
  font-family: sans-serif;
  font-size: 18px;
}

.popup-content p {
  margin-top: 0;
  margin-bottom: 20px;
  line-height: 1.4;
}

/* OK-Button im Pop-up */
.btn-popup {
  background-color: #9e594c;
  color: #fff5e9;
  border: none;
  padding: 10px 25px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.btn-popup:hover {
  background-color: #555494;
}

/* Akzeptieren-Button auf der Datenschutzseite */
.btn-privacy-accept {
  background-color: #555494;
  color: #fff5e9;
  border: 2px solid #9e594c;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-privacy-accept:hover {
  background-color: #fff5e9;
  color: #555494;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}