/* About Modal Styles */
.about-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.about-modal-container {
  width: 90%;
  max-width: 800px;
  height: 85vh;
  background: #0a0a0a;
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: scale(0.95) translateY(20px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.8);
}

.about-modal-backdrop.active .about-modal-container {
  transform: scale(1) translateY(0);
}

/* Modal Internal Scroll Progress */
.modal-scroll-track {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.05);
  z-index: 10;
}

.modal-scroll-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  box-shadow: 0 0 10px var(--primary);
  transition: width 0.1s linear;
}

/* Close Button */
.about-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  padding: 0;
  line-height: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--glass-border);
  color: #fff;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transform: rotate(0deg);
  transform-origin: center center;
  transition: 0.3s;
}

.about-close-btn:hover {
  background: var(--primary);
  transform: rotate(90deg);
}

/* Modal Content Area */
.about-modal-content {
  flex: 1;
  overflow-y: auto;
  padding: 3rem 4rem;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) #0a0a0a;
}

.about-modal-content::-webkit-scrollbar {
  width: 6px;
}

.about-modal-content::-webkit-scrollbar-track {
  background: #0a0a0a;
}

.about-modal-content::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
}

/* Typography & Content Styles */
.about-hero {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--glass-border);
}

.about-hero h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.about-lead {
  font-size: 1.2rem;
  color: var(--text-alt);
  max-width: 600px;
  margin: 0 auto;
}

.about-section {
  margin-bottom: 3rem;
}

.about-section h3 {
  font-family: "Syne", sans-serif;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-section h3::before {
  content: "";
  display: block;
  width: 4px;
  height: 20px;
  background: var(--gold);
  border-radius: 2px;
}

.about-section p {
  color: var(--text-alt);
  line-height: 1.7;
  font-size: 1.05rem;
}

.about-section strong {
  color: #fff;
}

.about-list {
  list-style: none;
  padding: 0;
}

.about-list li {
  margin-bottom: 1rem;
  padding-left: 20px;
  position: relative;
  color: var(--text-alt);
}

.about-list li::before {
  content: "◈";
  position: absolute;
  left: 0;
  color: var(--primary-bright);
  font-size: 0.8rem;
  top: 3px;
}

@media (max-width: 768px) {
  .about-modal-container {
    width: 100%;
    height: 100%;
    border-radius: 0;
  }

  .about-modal-content {
    padding: 4rem 1.5rem 2rem;
  }

  .about-hero h2 {
    font-size: 2.2rem;
  }
}

.about-map-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--primary-bright);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid transparent;
  transition: 0.3s;
}

.about-map-link:hover {
  border-color: var(--primary-bright);
  transform: translateX(5px);
}

.about-map-embed {
  width: 100%;
  height: 300px;
  border-radius: 12px;
  margin-top: 1.5rem;
  border: 1px solid var(--glass-border);
}
