/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Schrift für Logo */
@font-face {
  font-family: 'Cinzel-Medium';
  src: url('fonts/Cinzel-Medium.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* Schrift für Untertitel */
@font-face {
  font-family: 'Cinzel-Regular';
  src: url('fonts/Cinzel-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

html, body {
  height: 100%;
  font-family: Cinzel-Regular, Helvetica, Arial, sans-serif;
background-color: #c2f5e9; /* Mint */
  color: #111;
}

#email a {
  color: #111;
  text-decoration: none;
}

#email a:hover {
  text-decoration: underline;
  color: #000;
}

/* Zentrierung */
.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
  padding: 2rem;
        max-width: 99%; /* verhindert Überlauf auf kleinen Bildschirmen */
  margin: 0 auto;
}

/* Logo */
.logo {
    font-family: Cinzel-Medium, Helvetica, Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700; /* Standard für fetten Teil */
    letter-spacing: 0.8em; /* = ca. 80% eines Buchstabens */
  margin-bottom: 2rem;
      white-space: normal;
  max-width: 100%;
}


.logo .light {
  font-weight: 300; /* Dünner Teil */
}

/* Kontaktinfos */
.contact p {
  font-size: 1.2rem;
  margin: 0.3rem 0;
    letter-spacing: 0.5em; /* = ca. 80% eines Buchstabens */

}

/* Responsives Verhalten */
@media (max-width: 700px) {

.logo .light {
        display: block; /* <--- sorgt für Umbruch nach "studio" */
}

.logo {
  font-size: 2rem;
}
    
.jump {
        display: block;
}
    
  .contact p {
    font-size: 1rem;
  }
    

#email {
  margin: 2rem;
    }
    
#p {    
      word-break: break-word;
    }
    
}