/* ============================================================ */
/* VALHALLA OTAKU — CSS Spécifique À Propos */
/* ============================================================ */

.about-main {
  padding: 4rem 2rem 8rem;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

@media (max-width: 600px) {
  .about-main {
    padding: 2rem 1rem 6rem;
    gap: 3rem;
  }
}

.about-section {
  background: var(--ash);
  border: 1px solid var(--gold-dim);
  border-radius: 4px;
  padding: 3rem;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  overflow-wrap: break-word;
}

@media (max-width: 600px) {
  .about-section {
    padding: 2rem 1.5rem;
  }
}

.section-label {
  position: absolute;
  top: -12px;
  left: 2rem;
  background: var(--ink);
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 2px;
  padding: 0 1rem;
  border-left: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
}

@media (max-width: 600px) {
  .section-label {
    left: 1.5rem;
    font-size: 0.7rem;
    padding: 0 0.8rem;
  }
}

.section-title {
  font-family: 'Cinzel', serif;
  color: var(--parchment);
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

@media (max-width: 600px) {
  .section-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

.concept-content p {
  color: #ccc;
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.concept-content p:last-child {
  margin-bottom: 0;
  text-align: center;
  font-style: italic;
  color: var(--gold);
  font-weight: bold;
}

html[data-theme="light"] .concept-content p {
  color: #333;
}
html[data-theme="light"] .concept-content p:last-child {
  color: var(--gold-dim);
}

/* ============================================================ */
/* SECTION DÉVELOPPEUR */
/* ============================================================ */

.dev-card {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (max-width: 600px) {
  .dev-card {
    flex-direction: column;
    text-align: center;
  }
}

.dev-image-frame {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 4px solid var(--gold);
  padding: 4px;
  position: relative;
  flex-shrink: 0;
  background: var(--ink);
}

.dev-image-frame::after {
  content: '';
  position: absolute;
  top: -10px; left: -10px; right: -10px; bottom: -10px;
  border: 1px dashed var(--gold-dim);
  border-radius: 50%;
  animation: rotateFrame 20s linear infinite;
  pointer-events: none;
}

@keyframes rotateFrame {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.dev-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.dev-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--gold);
  font-size: 4rem;
}

.dev-info {
  flex-grow: 1;
}

.dev-name {
  font-family: 'Cinzel', serif;
  color: var(--parchment);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

html[data-theme="light"] .dev-name {
  color: var(--parchment); /* En light theme parchment est '#1a1410' */
}

.dev-role {
  color: var(--gold);
  font-weight: bold;
  letter-spacing: 1px;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.dev-bio {
  color: #ccc;
  line-height: 1.6;
}

html[data-theme="light"] .dev-bio {
  color: #444;
}

/* ============================================================ */
/* SOCIAL LINKS */
/* ============================================================ */

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-btn:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(201, 168, 76, 0.4);
}

html[data-theme="light"] .social-btn {
  background: var(--ash);
}
html[data-theme="light"] .social-btn:hover {
  background: var(--gold);
  color: #fff;
}
