/* @override */

/* Reset Reloaded, Eric Meyer, http://meyerweb.com/eric/thoughts/2007/05/01/reset-reloaded/ */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  /*font-weight: inherit;*/
  font-style: inherit;
  font-size: 100%;
  font-family: inherit;
  vertical-align: baseline;
}
:focus {
  outline: 0;
}
body {
  line-height: 1;
  color: black;
  background: white;
}
ol,
ul {
  list-style: none;
}
table {
  border-collapse: separate;
  border-spacing: 0;
}
caption,
th,
td {
  text-align: left;
  font-weight: normal;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}
blockquote,
q {
  quotes: "" "";
}

/* Globales */
body {
  font-family: Georgia, serif;
  background: #ffffff url('../images/black_paper.png');
  font-size: 100%;
  color: #4a4a4a;
}

@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (-moz-device-pixel-ratio: 2) {
  body {
    background: url('../images/black_paper_@2X.png');
    background-size: 256px 256px;
  }
}

a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none;
}

a:link {
  color: #0092ff;
  background: transparent;
  border-bottom: 1px solid;
}

a:visited {
  color: #147926;
  background: transparent;
  border-bottom: 1px solid transparent;
}

a:hover {
  color: #17b12c;
  background: transparent;
  border-bottom: 1px solid #17b12c;
  transition: all 0.5s ease-in;
}

a:active {
  background: #ffffe0;
  border-bottom: 1px solid transparent;
}

a:focus {
  outline: 1px dotted #666;
  border-bottom: 1px solid transparent;
}

.net li a {
  font-size: 130%;
  float: left;
  margin: 0 20px 0 0;
  padding: 0;
  display: block;
}

.net li a:link,
.net li a:visited {
  color: #fff;
  border-bottom: 2px solid #fff;
}

.net li a:hover {
  color: #17b12c !important;
  background: transparent;
  border-bottom: 1px solid #17b12c;
  transition: all 0.5s ease-in;
}

/* Text */
p {
  font-family: "chaparral-pro", serif;
  font-style: normal;
  font-weight: 300;
  font-size: 120%;
  line-height: 1.5em;
  margin-top: 0.8em;
  margin-bottom: 1.2em;
}

#links p {
  font-size: 110%;
  float: left;
  clear: both;
}

h1 {
  font-family: 'Noticia Text', serif;
  font-weight: bold;
  font-size: 300%;
  line-height: 1.2em;
  color: #606060;
  margin: 0;
  padding: 40px 0 0 0;
}

h2 {
  font-family: 'Noticia Text', serif;
  font-style: normal;
  font-weight: 100;
  font-size: 120%;
  margin: 0 0 40px 0;
  padding: 0;
  color: #606060;
}

h3 {
  font-family: 'Noticia Text', serif;
  font-style: normal;
  font-weight: bold;
  font-size: 110%;
  margin: 0 0 20px 0;
  padding: 0;
  color: #606060;
}

strong {
  background: #e3f5ff;
  color: #313131;
  font-weight: bold !important;
}

em {
  font-weight: normal;
  font-style: italic;
}

img,
a img {
  border: 0;
}

.logo {
  margin: 0px auto;
  text-align: center;
  background: url('images/mh.png') no-repeat;
  width: 75px;
  height: 69px;
}

@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (-moz-device-pixel-ratio: 2) {
  .logo {
    background: url('images/mh@2x.png') no-repeat;
    background-size: 75px 69px;
  }
}

#logo {
  margin: 0 0 30px 0;
  display: block;
}

#about {
  background: #fff;
  width: 100%;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

#about div.info {
  background: #fff;
  max-width: 1200px;
  margin: 0 auto;
  width: 90%;
}

#about img {
  width: 300px; /* Stellt sicher, dass das Bild innerhalb des Kreises ist */
  height: 300px;
  border-radius: 50%; /* Rundet das Bild ab */
  margin: 0 auto; /* Zentriert das Bild */
  display: block;
  position: relative;
  z-index: 2; /* Bild bleibt über dem grauen Kreis */
}

div.portrait {
  width: 300px;
  height: 300px;
  background: #eee;
  padding: 5px;
  margin: 0 auto; /* Zentriert das Bild */
  border-radius: 50%; /* Macht den Kreis perfekt rund */
  position: relative;
  z-index: 1; /* Stellt sicher, dass das Bild vor dem Hintergrund liegt */
}

/* Hintergrundkreis */
div.portrait::before {
  content: "";
  width: 306px; /* Hintergrundkreis nur 3px größer als das Bild */
  height: 306px;
  background: #ddd; /* Grauer Hintergrundkreis */
  border-radius: 50%;
  position: absolute;
  top: 50%; 
  left: 50%; 
  transform: translate(-50%, -50%); /* Perfekt zentriert hinter dem Bild */
  z-index: 0; /* Hintergrund liegt hinter dem Bild */
}

#about img:hover {
  opacity: 1;
}

#media {
  position: relative;
  min-width: 300px;
  height: 400px;
  float: left;
  display: table-cell;
  margin: 0 60px 0 0;
}

#mh {
  width: 95%;
  min-width: 20%;
}

div.teaser {
  position: absolute;
  width: 150px;
  height: 150px;
  overflow: hidden;
  bottom: 0;
  right: 0;
  background: transparent url(images/cover.png) 0 0 no-repeat;
}

div.teaser p {
  position: absolute;
  width: 40px;
  height: 40px;
  background: #17b12c;
  color: #fff;
  border-radius: 100%;
  text-align: center;
  font-size: 130%;
  line-height: 2em;
  padding: 5px;
  overflow: hidden;
  bottom: 50px;
  right: 0;
  border: 3px solid #58db6a;
}

div.teaser p:hover {
  background: #20779b;
  border: 3px solid #74b9d6;
}

#wrapper {
  margin: 2em auto 0 auto;
}

#links {
  color: #858585;
  padding: 5px 5%;
}

.net li {
  padding: 20px 0 !important;
  float: left;
}

.net {
  display: block;
  margin: 1.5em 0 0 0;
  padding: 0 0 2em 0;
  font-family: "museo", sans-serif;
  font-weight: 400;
  font-size: 90%;
}

[class^="icon-"]:before,
[class*=" icon-"]:before {
  margin-right: 0.3em !important;
}

#links span {
  display: block;
  float: left;
  margin-right: 20px;
}

#links [class^="ss-"]:before,
#links [class*=" ss-"]:before {
  font-size: 16px;
}



#portfolio-section {
  background-color: #f9f9f9;
  padding: 15px;
  border-radius: 5px;
  margin-top: 20px;
  margin-bottom: 20px;
}

@media screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 480px) {
  #about img {
    opacity: 1;
    max-width: 260px;
  }
  div.portrait {
    max-width: 260px;
    max-height: 260px;
    border: 2px solid #fff;
  }
}

@media screen and (-webkit-min-device-pixel-ratio: 2) {
  #about img {
    opacity: 1;
  }
}

@media screen and (max-width: 800px) {
  ul.net,
  ul.net li {
    float: left;
    clear: both;
    width: 100%;
    text-align: center;
  }
  ul.net li {
    padding: 0 !important;
    margin: 0 !important;
  }
  .net li a {
    display: block;
    margin: 0 0 20px 0;
    font-weight: 200;
    width: 100%;
    padding: 20px 0 30px 0;
  }
  h1 {
    padding: 40px 5% 0 5%;
    font-size: 260%;
    line-height: 1.2em;
    text-align: center;
  }
  h2 {
    text-align: center;
  }
  #mh {
    clear: both;
    float: left;
    width: 95% !important;
  }
  #links p {
    clear: both;
    float: left;
    padding: 0 0 30px 0;
  }
}

@media screen and (max-width: 480px) {
  #about {
    width: 100%;
    max-width: 480px;
    float: left;
    clear: both;
  }
  #links {
    padding: 5px 5%;
  }
  ul.net,
  ul.net li {
    float: left;
    clear: both;
    width: 100%;
    text-align: center;
  }
  ul.net li {
    padding: 0 !important;
    margin: 0 !important;
  }
  .net li a {
    display: block;
    margin: 0 0 20px 0;
    font-weight: 200;
    width: 100%;
    padding: 20px 0 30px 0;
  }
  h1 {
    padding: 40px 5% 0 5%;
    font-size: 200%;
    line-height: 1.2em;
    text-align: center;
  }
  h2 {
    text-align: center;
  }
  div.portrait {
    width: 200px;
    height: 200px;
    border-radius: 100%;
    float: left;
  }
  #about img {
    width: 200px;
    height: 200px;
  }
  #media {
    position: relative;
    width: 100px;
    height: 300px;
    float: left;
    display: table-cell;
    margin: 0;
  }
  #media:hover {
    opacity: 1;
  }
  #mh {
    width: 95%;
    min-width: 20%;
  }
  div.teaser {
    position: absolute;
    width: 200px;
    height: 150px;
  }
  div.teaser p {
    position: absolute;
    width: 40px;
    height: 40px;
    bottom: 50px;
    left: 0;
  }
  #links p {
    clear: both;
    float: left;
    padding: 0 0 30px 0;
  }
}

/* Clearfix */
.cf:before,
.cf:after {
  content: "";
  display: table;
}
.cf:after {
  clear: both;
}
/* Clearfix IE 6/7 via hasLayout */
.cf {
  zoom: 1;
}