/* --------------------------------------------------
   ZÁKLADNÍ NASTAVENÍ TĚLA A BAREV
-------------------------------------------------- */
body {
  font-family: 'Inter', sans-serif;
  background-color: #12121c;
  color: #eae6d8;
  margin: 0;
  padding: 0;
}

/* --------------------------------------------------
   HLAVNÍ KONTEJNER
-------------------------------------------------- */
.gamia-container {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 2rem 1rem;
  background-color: #1e1d2b;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

/* --------------------------------------------------
   HLAVIČKA
-------------------------------------------------- */
.gamia-header {
  text-align: center;
  margin-bottom: 2rem;
}

.gamia-logo {
  width: 220px;
  max-width: 80%;
  border-radius: 16px;
  object-fit: cover;
  border: 3px solid #d1c7b0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  margin-bottom: 1rem;
}

.gamia-header h1 {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
}

.gamia-header p {
  font-size: 1.1rem;
  color: #b8b2a3;
  margin: 0;
}

/* --------------------------------------------------
   NAVIGACE
-------------------------------------------------- */
.gamia-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
  border-bottom: 1px solid #3a394b;
}

.gamia-nav a {
  padding: 0.75rem 1rem;
  color: #b8b2a3;
  text-decoration: none;
  transition: color 0.3s;
}

.gamia-nav a:hover,
.gamia-nav a.active {
  color: #d1c7b0;
  border-bottom: 2px solid #d1c7b0;
}

/* --------------------------------------------------
   OBECNÉ SEKCE
-------------------------------------------------- */
.gamia-section {
  margin-bottom: 3rem;
  padding: 2rem;
  background-color: #2a293a;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
  transition: opacity 0.5s;
  opacity: 0;
}

.gamia-section.fade-in {
  opacity: 1;
}

.gamia-section .section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.gamia-section .section-intro {
  text-align: center;
  margin-bottom: 2rem;
  color: #b8b2a3;
}

/* --------------------------------------------------
   SEZNAM (LIST)
-------------------------------------------------- */
.gamia-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.list-item {
  background-color: #2a293a;
  border: 1px solid #3a394b;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}

.list-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

/* --------------------------------------------------
   ACCORDION
-------------------------------------------------- */
.gamia-accordion {
  margin-top: 2rem;
}

.accordion-item {
  margin-bottom: 1rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  background-color: #2a293a;
}

.accordion-header {
  width: 100%;
  padding: 1rem 1.5rem;
  background-color: #3a394b;
  color: #eae6d8;
  text-align: left;
  font-size: 1.2rem;
  cursor: pointer;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
}

.accordion-header:hover {
  background-color: #4a485c;
}

.accordion-icon {
  transition: transform 0.3s;
}

.accordion-header.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  display: none;
  padding: 1rem 1.5rem;
  background-color: #262533;
  color: #eae6d8;
  line-height: 1.6;
}

/* --------------------------------------------------
   BANNER (OBRÁZEK)
-------------------------------------------------- */
.gamia-banner {
  text-align: center;
  margin: 2rem 0;
}

.gamia-banner-wrapper {
  max-width: 800px;
  width: 100%;
  margin: 2rem auto;
  padding: 0 1rem;
  text-align: center;
}

.gamia-banner-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 2px solid #3a394b;
  box-shadow: 0 6px 16px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}

.gamia-banner-img:hover {
  transform: scale(1.02);
}

/* --------------------------------------------------
   TIMELINE
-------------------------------------------------- */
.gamia-timeline {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.timeline-node {
  background-color: #3a394b;
  color: #eae6d8;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  margin: 0.5rem;
  transition: background-color 0.3s;
}

.timeline-node:hover,
.timeline-node:focus {
  background-color: #4a485c;
}

/* --------------------------------------------------
   CHAPTERS
-------------------------------------------------- */
.gamia-chapters .chapter {
  display: none;
  padding: 1.5rem;
  background-color: #2a293a;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
  margin-bottom: 2rem;
  transition: opacity 0.5s ease;
}

.gamia-chapters img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1rem auto;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.5);
}

/* --------------------------------------------------
   DOVEDNOSTI (TRAITS)
-------------------------------------------------- */
.gamia-traits {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .gamia-traits {
    grid-template-columns: repeat(3, 1fr);
  }
}

.trait {
  background-color: #2a293a;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
  text-align: center;
}

.trait img {
  max-width: 100%;
  height: auto;
  margin: 1rem 0;
  border-radius: 50%;
  border: 2px solid #3a394b;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

/* --------------------------------------------------
   ATTUNEMENT SECTIONS
-------------------------------------------------- */
.gamia-attunement {
  margin-top: 3rem;
  padding: 2rem;
  background-color: #2a293a;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
}

.gamia-attunement img {
  max-width: 100%;
  height: auto;
  margin-top: 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}
