body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  background-color: #1c0f17;
  color: #ffb300;
          -webkit-font-smoothing: none;
        -moz-osx-font-smoothing: none;
  font-smoothing: none;
  text-rendering: optimizeSpeed;
  color: #f3eee1;
  font-size: 18px;
  font-family: 'Times New Roman', Times, serif, 'Times New Roman', Times, serif;
}

.hero-img{
    display: flex;
    justify-content: center;
    margin-top: 100px;
    margin-bottom: 40px;
}

/*Nav Start*/
.nav-grid-wrapper {
  display: grid;
  grid-template-columns: 100%;
 /* justify-items: center;*/ /* Zentriert absolut alles auf der horizontalen Achse */
  width: 100%;
}
  
.nav-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px 40px;
  flex-wrap: wrap;
  margin-top: 15px;
  padding: 20px 0 10px 0;
  box-sizing: border-box;
}

.nav-module {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 80px;
  height: 48px;
}

.text-nav-link {
  display: block;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 60px;
  width: 100%;
  color: #f3eee1; 
  font-size: 18px;
  font-weight: normal;
  text-decoration: none; 
  position: relative;
  overflow: visible;
}
/*Nav End*/

/*Footer Start*/
.footer-grid-wrapper {
  display: grid;
  grid-template-columns: 100%;
 /* justify-items: center;*/ /* Zentriert absolut alles auf der horizontalen Achse */
  width: 100%;
}
  
.footer-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px 40px;
  flex-wrap: wrap;
  padding: 20px 0 10px 0;
  box-sizing: border-box;
}

.footer-module {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 80px;
  height: 48px;
}

.text-footer-link {
  display: block;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 60px;
  width: 100%;
  color: #f3eee1; 
  font-size: 18px;
  font-weight: normal;
  text-decoration: none; 
  position: relative;
  overflow: visible;
}
/*Footer End*/
.home-button:hover {
  background-image: url(../img/home-button.png);
  position: relative;
  background-size: 70px auto; 
  background-position: center 45%;
  background-repeat: no-repeat; 
}

.art-button:hover {
  background-image: url(../img/art-button.png);
  position: relative;
  background-size: 45px auto; 
  background-position: center 45%;
  background-repeat: no-repeat; 
}

.about-button:hover {
  background-image: url(../img/about-button.png);
  position: relative;
  background-size: 60px auto; 
  background-position: center 45%;
  background-repeat: no-repeat; 
}

.blog-button:hover {
  background-image: url(../img/blog-button.png);
  position: relative;
  background-size: 50px auto; 
  background-position: center 45%;
  background-repeat: no-repeat; 
}

.blog-button:active {
background-image: url(../img/blog-button.png);
}

.privacy-button:hover {
  background-image: url(../img/privacy-button.png);
  position: relative;
  background-size: 70px auto; 
  background-position: center 30%;
  background-repeat: no-repeat; 
}

.imprint-button:hover {
  background-image: url(../img/imprint-button.png);
  position: relative;
  background-size: 75px auto; 
  background-position: center 40%;
  background-repeat: no-repeat; 
}

.contact-button:hover {
  background-image: url(../img/contact-button.png);
  position: relative;
  background-size: 80px auto; 
  background-position: center 45%;
  background-repeat: no-repeat; 
}

.text-nav-link:visited {
  color: #bf55ec; 
}

/* 
  Hier löschen wir alle Browser-Vorgaben radikal.
  'all: unset' wirft alle Standard-Ränder und Margins der <hr> weg.
*/
.nav-devider {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 10px;
}

.nav-devider img{
  width: 100%;
  max-width: 415px;
  height: auto;
  
}

/* Mobile Ansicht */
@media (max-width: 768px) {
  .nav-container {
    gap: 15px 30px;
    padding: 15px 0 5px 0;
    width: 100%; /* Geändert von 90% auf 100%, um Verschiebungen zur Linie zu verhindern */
  }

  .text-nav-link {
    font-size: 18px;
    padding: 5px 10px;
  }


}

/** BLOG CSS BEGINN **/



/*BLOG MAIN PAGE*/

/*Headline*/
.hl1 {
    display: flex;
    justify-content: center;
    padding-bottom: 15px;
    padding-top: 5px;
    font-size: 40px;
}

/* Main container List Blog Post */
.blog-post-list {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* WICHTIG: Hier nehmen wir den Standard-Abstand der Liste weg! */
.blog-post-list ul {
    width: 100%;
    max-width: 900px; /* Hier kannst du einstellen, wie breit dein Blog sein soll */
    padding: 0;       /* LÖSCHT die Schlagseite nach links */
    margin: 0;
}

/* Die Trennlinie nutzt nun die volle Breite der Liste */
.blog-devider {
  border: none;
  border-top: 3px dotted #F4F1EA; /* Kreideweiß und gestrichelt */
  opacity: 0.15;
}

.blog-post-container {
  display: flex;       
  align-items: flex-start; 
  gap: 20px;           
  margin: 25px 0;
  padding: 0 10px; /* Ein kleiner Sicherheitsabstand zum Rand */
}

.blog-image {
  display: block;      
  max-width: 80px;  /* Feste Breite in Pixeln, damit das Bild nicht zu winzig wird */
  height: auto;        
  flex-shrink: 0; 
  /* border: 3px solid #186d79; Schmutziges Türkis als Rahmen */
  padding: 2px;     
}

.blog-description {
  flex: 1;             
}
.blog-description a{
    color: #5ce4d2;
}

.list-element {
  list-style: none;    
  margin-bottom: -20px; /* Abstand zum nächsten Blog-Post */
}



/*BLOG POST PAGE*/

.blog-nav{
    display:flex; 
    justify-content: center; 
    margin-top: 50px;
}


.blog-post-style{
    display: block;
    margin: auto;
    width: 700px;
    height: 975px;
    margin-top: 40px;
    margin-bottom: 50px;
    background-color: #F9F6EE;
    color: black;
    border: 2px outset #F9F6EE;
;
 
}


/*Devider*/
.blog-post-style hr{
    width: 78%;
}
.blog-hl1 {
  display: flex;
  justify-content: center;
  padding-top: 50px;
  padding-bottom: 10px;
  font-size: 40px;
}

.blog-text{
  display: flex;
  width: 550px;
  flex-wrap: wrap;
  padding: 20px 0px 20px 75px;
}

.blog-pagina{
  display: flex;
  justify-content: center;
  margin-top: 35px;
  font-weight: bold;
}

/** BLOG CSS END **/



/* FOOOTER CSS BEGINN */

.footer{
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 10px;
  padding-top: 120px;
  width: 100%;
}
.footer ul{
  display: flex;
  flex-direction: row;
  list-style: none;
  gap: 30px;
}

/* FOOOTER CSS END */