body {
  margin: 0;
  padding: 0;
  /* font-family: Arial, sans-serif; */
  font-family: 'Roboto', sans-serif;

/* font-family: 'PT Sans', sans-serif; */



  /* color: #FBF7F5; */
  color: #e0dbd1;
  background: url('images/Archon_1_16-9.png') no-repeat center center fixed;
  background-size: cover;
  
}

pre {
  white-space: pre-wrap;   /* erlaubt Zeilenumbrüche */
  word-break: break-all;   /* bricht auch lange Wörter */
}

footer a {
  color: #C0C0C0;          /* silbergrau */
  text-decoration: none;   /* keine Unterstreichung */
}

footer a:visited {
  color: #C0C0C0;          /* gleiche Farbe auch nach Klick */
}

footer a:hover {
  color: #C0C0C0;          /* beim Hover unverändert */
  text-decoration: none;   /* weiterhin kein Strich */
}

footer a:active {
  color: #C0C0C0;          /* auch beim Klick unverändert */
}

/* Mobile: Bild an Viewport-Höhe anpassen */
/* Mobile */
@media (max-width: 768px) {
  body {
    background-attachment: scroll; /* fixed entfernen für Mobile */
    background-size: auto 100%;    /* Höhe = 100%, Breite automatisch */
    min-height: 100vh;             /* sicherstellen, dass Body die volle Höhe einnimmt */
  }
}

.bg-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;             /* volle Bildschirmhöhe */
  background: url('images/Archon_1_16-9.png') center center no-repeat;
  background-size: cover;     /* oder contain, wenn kein Zuschneiden gewünscht */
  z-index: -1;                /* hinter allem anderen */
}

header {
  text-align: center;
  padding: 10px;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1000px;
  background: rgba(55, 32, 15, 0.8);
  z-index: 1000;
}

main {
  margin-top: 260px;
}

/* Mobile / Tablet */
@media (max-width: 768px) {
  main {
    margin-top: 150px; /* oder kleiner Wert passend zum mobilen Header */
  }
}

.logo {
  display: block;
  margin: 0 auto 15px auto;
  max-width: 100%;
  height: auto;
}

/* Optional: noch strengere Begrenzung auf kleinen Bildschirmen */
@media (max-width: 600px) {
  header {
    left: 0;
    transform: none;
  }

  .logo {
    width: 100%;
  }
}

h1 {
  font-family: 'Goudy Old Style', sans-serif;
  font-size: 6em;
  background: url('images/FineGold.png') no-repeat center center;
  background-size: cover;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: 3px 3px 0px rgba(216, 173, 83, 0.0),
               6px 6px 15px rgba(216, 173, 83, 0.5);
  margin-top: 10px;
  margin-bottom: 10px;
}

.social-links {
  margin-bottom: 20px;
}

.social-links a {
  margin: 0 15px;
  text-decoration: none;
  color: #e0dbd1;
  transition: all 0.3s ease;
}

.social-links a:hover {
  font-weight: bold;
  color: #FFD700;
  text-shadow: 0 0 8px #FFD700, 0 0 16px #FFA500;
}

  .plain-link {
    color: inherit;          /* übernimmt die normale Textfarbe */
    text-decoration: none;   /* entfernt die Unterstreichung */
    cursor: pointer;         /* optional: zeigt Klickbarkeit */
  }

  .plain-link:hover {
    text-decoration: underline; /* optional: Unterstreichung nur beim Hover */
  }

#news-updates {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  background-color: rgba(55, 32, 15, 0.6);
  border-radius: 8px;
  margin-top: 10px;
}

#news-updates h2 {
    font-size: 2rem;
    margin-top: 0px;
    margin-bottom: 15px;

}

.update {
  margin-bottom: 20px;
  padding: 15px;
  border: 1px solid #C0C0C0;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.1);
}

.update img {
  max-width: 100%;
  border-radius: 5px;
}

.side-img {
  float: left;
  margin: 0 15px 15px 0;
  max-width: 150px;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #413f3f;
  color: #C0C0C0;
}

/* Sondereditionen */
#special-editions {
  max-width: 1000px;
  margin: 20px auto;
  padding: 20px;
  background-color: rgba(55, 32, 15, 0.6);
  border-radius: 8px;
}

#special-editions h2 {
    font-size: 2rem;
    margin-top: 0px;
  margin-bottom: 15px;
}

.edition-scroll {
  display: flex;
  justify-content: center;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: thin;
  padding-top: 10px;
}

.edition-scroll::-webkit-scrollbar {
  height: 8px;
}

.edition-scroll::-webkit-scrollbar-thumb {
  background: #D1793B;
  border-radius: 4px;
}

.edition {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #FBF7F5;
    text-decoration: none;
    padding: 5px;
    border: 1px solid #C0C0C0;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, color 0.3s ease;
}

.edition img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 8px;
}

.edition:hover {
  transform: scale(1.1);
  color: #FFD700;
}

/* Jetzt-Bestellen-Sektion */
#order-book {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  background-color: rgba(55, 32, 15, 0.6);
  border-radius: 8px;
  margin-top: 10px;
}

#order-book h2 {
  font-size: 2rem;
  margin-top: 0px;
  margin-bottom: 15px;
}

.order-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
      padding: 15px;
    border: 1px solid #C0C0C0;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, color 0.3s ease;
}

.order-left {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.order-left img {
    display: block; 
  max-width: 250px;
  height: auto;
  margin-bottom: 00px;
}

.order-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: #D1793B;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.order-link:hover {
  background-color: #FFD700;
  color: #000;
  transform: scale(1.05);
}

.order-right {
  flex: 2 1 400px;
  text-align: left;
  line-height: 1.6;
  vertical-align: top;
  margin-top: 0px;
}

.order-right .order-link {
    display: inline-block;  /* wichtig, damit margin auto wirkt */
    margin: 20px auto 0;    /* oben Abstand, horizontal zentriert */
    
}

.section {
    max-width: 1000px;
    margin: 20px auto;         /* mittig, mit Abstand */
    padding: 20px;
    background-color: rgba(55, 32, 15, 0.6);
    border-radius: 8px;
}

/* Overlay */
#modal p {
  white-space: pre-wrap; /* Erlaubt echte Zeilenumbrüche im Text */
}

/* Modal Image anpassen */
#modal img {
    max-width: 100%;   /* nie breiter als der Modal-Container */
    max-height: 300px; /* maximale Höhe, skaliert proportional */
    width: auto;       /* proportional skalieren */
    height: auto;      /* proportional skalieren */
    display: block;
    margin: 0 auto 15px auto; /* zentriert und Abstand nach unten */
    border-radius: 5px; /* optional, sieht hübsch aus */
}

.modal {
  display: none; 
  position: fixed; 
  z-index: 2000; 
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto; 
  background-color: rgba(18, 9, 1, 0.7); 
}

.modal-content {
  background-color: rgb(55, 32, 15);
  margin: 10% auto; 
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 600px;
  text-align: center;
}

.modal-content img {
  max-width: 100%;
  height: auto;
  margin: 15px 0;
}

.close {
  color: #fff;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  margin-top: -10px;
}

.close:hover {
  color: #FFD700;
}

.two-column {
  display: flex;
  gap: 20px; /* Abstand zwischen den Spalten */
}

.left-column, .right-column {
  flex: 1; /* beide Spalten gleich breit */
}

.left-column {
  text-align: left; /* kannst du ändern auf center, wenn du Bilder einfügst */
}


/* Container für den gesamten ausklappbaren Bereich */
.expandable-container {
    font-family: sans-serif;
    margin-bottom: 20px;
}

/* Wrapper für den Inhalt, der ein- und ausgeklappt wird */
.content-wrapper {
    /* Initiale Höhe, ca. 5 Zeilen. Passen Sie den Wert bei Bedarf an. */
    max-height: 115px;
    overflow: hidden;
    position: relative;
    /* Sanfter Übergang für das Ausklappen */
    transition: max-height 0.5s ease-in-out;
}

/* CSS-Klasse, die hinzugefügt wird, um den Inhalt vollständig anzuzeigen */
.content-wrapper.expanded {
    /* Großer Wert, um sicherzustellen, dass der gesamte Inhalt passt */
    max-height: 2000px;
}

/* Optional: Fügt einen leichten Schatten am Ende des eingeklappten Textes hinzu,
    um visuell anzuzeigen, dass es mehr zu lesen gibt. */
.content-wrapper:not(.expanded)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    /* background: linear-gradient(to bottom, transparent, rgba(55, 32, 15, 0.6)); */
}

/* Stil für den Button */
.toggle-button {
    background-color: #e0dbd1;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 8px 16px;
    cursor: pointer;
    margin-top: 10px;
    font-weight: bold;
    color:#D1793B
}

.toggle-button:hover {
    background-color: #e0e0e0;
    color: #D1793B;
}

/* Entfernt den oberen Abstand des ersten Elements im Update-Div */
.update > h3:first-child {
    margin-top: 0;
}