html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    text-align: left;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    max-width: 100%;
    background-image: url("../assets/paper.png");
    background-size: cover;
    background-repeat: repeat;
    background-attachment: fixed;
}

img {
    max-width: 100%;
}

h1 {
    font-size: 2.1rem;
    color: #000;
    font-family: 'Courier New', Courier, monospace;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 0;
    margin: 0;
}

h1.impressum {
    font-size: 1.5rem;
    color: #000;
    font-family: 'Courier New', Courier, monospace;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding-bottom: 8px;
    margin: 0;
}

h2 {
    font-size: 1.2rem;
    color: #ff7a00;
    font-family: 'Courier New', Courier, monospace;
    font-weight: 500;
    margin-bottom: 10px;
    padding: 0;
    margin: 0;
}

p {
    font-size: 14px;
    color: #111;
    font-family: 'Courier New', Courier, monospace;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    padding: 0;
}

small {
    font-size: 12px;
    color: #111;
    font-family: 'Courier New', Courier, monospace;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
    padding: 0;
}

a {
    font-family: 'Courier New', Courier, monospace;
    font-weight: 400;
    text-decoration: none;
    color: #ff7a00;
    opacity: 1;
    transition: color 0.2s;
}

/* EDIT DESCRIPTION LINK COLOR */
a:hover {
    color: #000;
}

.section {
    width: 90%;
    max-width: 600px;
    position: relative;
    margin: 0 auto;
}

.social-spacing {
    margin-left: 10px;
    margin-right: 10px;
    white-space: nowrap;
    line-height: 1.5;
}

.clear {
    clear: both;
}

.avy {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    border: 3px solid #ff7a00;
    object-fit: cover;
    background: #fff;
    transition: box-shadow 0.2s, border 0.2s;
}
.avy:hover {
    box-shadow: 0 2px 8px rgba(255,122,0,0.10);
    border: 3px solid #000;
}
/*.round {
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%; /* future proofing */
    -khtml-border-radius: 50%; /* for old Konqueror browsers */
    -webkit-appearance: none;
} */

/* EDIT LINK UNDERLINE COLOR */
.underline:hover {
    border-bottom: 1px solid #0d96e5;
}

.preul {
    border-bottom: 1px solid #eee;
}

.center-align {
    text-align: center;
}

.white {
    color: #FFF ;
}

.impressum {
    color: #000000 ;
}

.impressum-2 {
	color: #000000 ;
    text-align: left;
}

.light-grey {
    color: #000;
	font-size: 10;
}

.divider {
    border-bottom: 1px solid #eee;
}

/* EDIT BUTTON BACKGROUND COLOR */
.button {
    background: #000;
    color: #fff;
    opacity: .9;
    padding: 14px 0;
    margin: 14px auto;
    border-radius: 12px;
    transition: box-shadow 0.2s, background 0.2s, transform 0.1s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    cursor: pointer;
    border: none;
}

.button:hover {
    background: #ff7a00;
    color: #fff;
    opacity: 1;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 2px 8px rgba(255,122,0,0.10);
}

.padding-top-50 {
    padding-top: 15px;
}
.padding-bottom-50 {
    padding-bottom: 50px;
}
.padding-bottom-100 {
    padding-bottom: 100px;
}
.padding-top-25 {
    padding-top: 25px;
}
.padding-top-15 {
    padding-top: 5px;
}

.social-spacing img, .social-spacing i {
    transition: transform 0.2s, filter 0.2s;
}
.social-spacing:hover img, .social-spacing:hover i {
    filter: drop-shadow(0 0 6px #ff7a00);
    transform: scale(1.15) rotate(-3deg);
}

@media (max-width: 768px) {
    .section {
        width: 98%;
        max-width: 100vw;
        padding: 0 2vw;
    }
    .container {
        max-width: 99vw;
        padding: 0 3vw;
    }
    .avy {
        width: 90px;
        height: 90px;
    }
    h1 {
        font-size: 1.3rem;
    }
    h2 {
        font-size: 1rem;
    }
    .button {
        font-size: 1rem;
        padding: 12px 0;
    }
    .social-spacing {
        margin-left: 6px;
        margin-right: 6px;
    }
}

/* Container und Grundlayout */
.container {
  max-width: 480px;
  margin: 0 auto;
  padding: 24px 0 0 0;
}
.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 18px;
}
.profile-pic-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 8px;
}
.profile-pic {
  transition: transform 0.18s cubic-bezier(.4,2,.6,1), box-shadow 0.18s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}
.profile-pic:hover {
  transform: scale(1.08) translateY(-4px);
  box-shadow: 0 8px 32px rgba(255,122,0,0.18);
  border: 3px solid #000;
}
.name-script {
  position: relative;
  display: inline-block;
  text-align: center;
}
.name-script::after {
  content: '|';
  color: #ff7a00;
  font-weight: 700;
  font-size: 1.7rem;
  margin-left: 2px;
  display: inline-block;
  vertical-align: 0;
  animation: blink 1s linear infinite;
  font-family: inherit;
}
@keyframes blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}
.claim {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #444;
  margin-bottom: 12px;
  text-align: center;
}
.socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
}
.social-spacing img, .social-spacing i {
  transition: transform 0.2s, filter 0.2s;
}
.social-spacing:hover img, .social-spacing:hover i {
  filter: drop-shadow(0 0 6px #ff7a00);
  transform: scale(1.15) rotate(-3deg);
}
.section-block {
  margin-bottom: 28px;
}
.section-label {
  font-family: 'Courier New', Courier, monospace;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: #ff7a00;
  text-align: left;
  text-transform: uppercase;
}
.section-label.int {
  color: #ff7a00;
}
.scene-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
  margin-bottom: 12px;
  padding: 14px 16px 10px 16px;
  text-align: left;
  transition: box-shadow 0.18s, border 0.18s, transform 0.18s cubic-bezier(.4,2,.6,1);
  border: 1.5px solid #ff7a00;
  cursor: pointer;
}
.scene-card:hover {
  box-shadow: 0 4px 12px rgba(255,122,0,0.10);
  border: 1.5px solid #000;
  transform: translateY(-2px) scale(1.01);
}
.scene-label {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.95rem;
  font-weight: 700;
  color: #ff7a00;
  margin-bottom: 2px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.scene-label.ext {
  color: #ff7a00;
}
.scene-title {
  font-family: 'Courier New', Courier, monospace;
  font-size: 1.08rem;
  font-weight: 700;
  color: #000 !important;
  margin-bottom: 2px;
}
.scene-title a {
  color: #000 !important;
  text-decoration: none;
}
.scene-title a:hover {
  text-decoration: underline;
}
.scene-logline {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.98rem;
  color: #ff7a00;
  font-style: italic;
  margin-bottom: 0;
}
.footer {
  margin-top: 32px;
  text-align: center;
  color: #111;
  font-size: 0.95rem;
  padding-bottom: 16px;
}
.footer-links a {
  color: #ff7a00;
  font-family: 'Courier New', Courier, monospace;
  margin: 0 4px;
  font-size: 1rem;
}
.footer-gag {
  margin-top: 6px;
  font-size: 0.95rem;
  color: #111;
  font-family: 'Courier New', Courier, monospace;
}
@media (max-width: 600px) {
  .container {
    max-width: 99vw;
    padding: 10px 4vw 0 4vw;
  }
  .profile-pic {
    width: 90px;
    height: 90px;
  }
  .name-script, .blinking-cursor {
    font-size: 1.1rem;
  }
  .claim {
    font-size: 0.95rem;
  }
  .scene-card {
    padding: 12px 8px 8px 12px;
  }
  .section-label {
    font-size: 0.98rem;
  }
}
.scene-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.scene-card-link:visited,
.scene-card-link:active {
  color: inherit;
}
.scene-card-link .scene-card {
  /* alle bisherigen Styles bleiben erhalten */
}
.agenturprofil-card .scene-card {
  border: 2.5px solid #ff7a00;
  box-shadow: 0 2px 8px rgba(255,122,0,0.10);
  background: #fff;
}
.agenturprofil-card .scene-card:hover {
  border: 2.5px solid #000;
  box-shadow: 0 4px 12px rgba(255,122,0,0.10);
  transform: translateY(-2px) scale(1.01);
}
.section-label.artikel {
  color: #ff7a00;
}