/* history.css - Styles for Furux Stadium History page with updated color scheme */

/* History Hero Section */
.history-hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.history-hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.history-hero .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) contrast(1.1);
}

.history-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.6), rgba(0, 0, 0, 0.8));
  z-index: -1;
}

.history-hero .hero-content {
  max-width: 900px;
  padding: 0 2rem;
  animation: fadeInUp 1.2s ease-out;
}

.history-hero .hero-title {
  font-size: 4.5rem;
  color: #ffffff;
  margin-bottom: 2rem;
  line-height: 1.1;
}

.history-hero .hero-subtitle {
  font-size: 1.4rem;
  color: #e5e7eb;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
}

.hero-stats .stat-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 120px;
}

.hero-stats .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #facc15;
  margin-bottom: 0.5rem;
}

.hero-stats .stat-label {
  font-size: 0.9rem;
  color: #e5e7eb;
  font-weight: 500;
}

/* Origins Section */
.origins {
  padding: 8rem 0;
  background: linear-gradient(135deg, #e5e7eb, #d1d5db);
}

.origins-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.story-timeline {
  position: relative;
}

.story-timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 4rem;
  padding-left: 5rem;
}

.timeline-marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.timeline-content h3 {
  color: #1e3a8a;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.timeline-date {
  display: inline-block;
  background: #facc15;
  color: #1a1a1a;
  padding: 0.3rem 1rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.timeline-content p {
  color: #4b5563;
  line-height: 1.8;
  font-size: 1.1rem;
}

.origins-visual {
  position: sticky;
  top: 2rem;
}

.visual-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.visual-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.visual-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 2rem;
  color: #e5e7eb;
}

.visual-overlay h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.visual-overlay p {
  opacity: 0.9;
  margin: 0;
}

/* Evolution Section */
.evolution {
  padding: 8rem 0;
  background: #ffffff;
}

.evolution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.evolution-phase {
  background: #f0f4f8;
  border-radius: 12px;
  padding: 3rem 2rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(250, 204, 21, 0.1);
}

.evolution-phase:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  border-color: rgba(250, 204, 21, 0.3);
}

.phase-header {
  text-align: center;
  margin-bottom: 2rem;
}

.phase-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
  color: #ffffff;
}

.phase-header h3 {
  color: #1e3a8a;
  margin-bottom: 0.5rem;
}

.phase-period {
  background: #1e3a8a;
  color: #ffffff;
  padding: 0.3rem 1rem;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 600;
}

.phase-content h4 {
  color: #1e3a8a;
  margin-bottom: 1rem;
}

.phase-content p {
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.phase-achievements {
  list-style: none;
}

.phase-achievements li {
  padding: 0.5rem 0;
  color: #4b5563;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.phase-achievements i {
  color: #facc15;
}

/* Methodology Section */
.methodology {
  padding: 8rem 0;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  color: #ffffff;
}

.methodology-overview {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.methodology-overview h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.methodology-overview p {
  font-size: 1.2rem;
  line-height: 1.8;
  opacity: 0.9;
}

.methodology-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.pillar-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 3rem 2rem;
  border-radius: 12px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
}

.pillar-icon {
  font-size: 3rem;
  color: #facc15;
  margin-bottom: 2rem;
}

.pillar-card h4 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.pillar-card p {
  opacity: 0.9;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.pillar-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.metric {
  background: rgba(250, 204, 21, 0.2);
  color: #ffffff;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Milestones Section */
.milestones {
  padding: 8rem 0;
  background: linear-gradient(135deg, #e5e7eb, #d1d5db);
}

.milestones-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.milestones-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  transform: translateX(-50%);
  border-radius: 2px;
}

.milestone-item {
  position: relative;
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
}

.milestone-item:nth-child(odd) {
  flex-direction: row;
}

.milestone-item:nth-child(even) {
  flex-direction: row-reverse;
}

.milestone-year {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 2;
  flex-shrink: 0;
}

.milestone-content {
  flex: 1;
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 0 2rem;
  transition: transform 0.3s ease;
}

.milestone-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.milestone-content h3 {
  color: #1e3a8a;
  margin-bottom: 1rem;
}

.milestone-content p {
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.milestone-stats {
  display: flex;
  gap: 1rem;
}

.milestone-stats span {
  background: #facc15;
  color: #1a1a1a;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Awards Section */
.awards {
  padding: 8rem 0;
  background: #ffffff;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.award-card {
  background: #f0f4f8;
  padding: 3rem 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid rgba(250, 204, 21, 0.1);
}

.award-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  border-color: rgba(250, 204, 21, 0.3);
}

.award-icon {
  font-size: 3rem;
  color: #facc15;
  margin-bottom: 1.5rem;
}

.award-card h3 {
  color: #1e3a8a;
  margin-bottom: 0.5rem;
}

.award-year {
  display: inline-block;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  color: #ffffff;
  padding: 0.3rem 1rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.award-card p {
  color: #4b5563;
  line-height: 1.8;
}

/* Legacy Section */
.legacy {
  padding: 8rem 0;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  color: #ffffff;
}

.legacy-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.legacy-impact h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.legacy-impact p {
  font-size: 1.2rem;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 3rem;
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.impact-item {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.impact-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #facc15;
  margin-bottom: 0.5rem;
}

.impact-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

.legacy-stories {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.story-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.story-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.story-image {
  height: 150px;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-content {
  padding: 1.5rem;
}

.story-content h4 {
  margin-bottom: 1rem;
}

.story-content p {
  opacity: 0.9;
  line-height: 1.8;
  font-size: 0.95rem;
}

/* Team Section */
.team {
  padding: 8rem 0;
  background: linear-gradient(135deg, #e5e7eb, #d1d5db);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.team-member {
  background: #ffffff;
  border-radius: 12px;
  padding: 3rem 2rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.member-image {
  margin-bottom: 2rem;
}

.member-avatar {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 2.5rem;
  color: #ffffff;
}

.member-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.member-info h3 {
  color: #1e3a8a;
  margin-bottom: 0.5rem;
}

.member-role {
  display: inline-block;
  background: #facc15;
  color: #1a1a1a;
  padding: 0.3rem 1rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.member-info p {
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.member-achievements {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.member-achievements span {
  background: #1e3a8a;
  color: #ffffff;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Innovation Section */
.innovation {
  padding: 8rem 0;
  background: #ffffff;
}

.innovation-projects {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.project-card {
  background: #f0f4f8;
  padding: 3rem 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid rgba(250, 204, 21, 0.1);
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  border-color: rgba(250, 204, 21, 0.3);
}

.project-icon {
  font-size: 3rem;
  color: #facc15;
  margin-bottom: 2rem;
}

.project-card h3 {
  color: #1e3a8a;
  margin-bottom: 1rem;
}

.project-card p {
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.project-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.feature-tag {
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  color: #ffffff;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Future Vision Section */
.future-vision {
  padding: 8rem 0;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  color: #ffffff;
}

.vision-roadmap {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.vision-roadmap::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  transform: translateX(-50%);
  border-radius: 2px;
}

.roadmap-item {
  position: relative;
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
}

.roadmap-item:nth-child(odd) {
  flex-direction: row;
}

.roadmap-item:nth-child(even) {
  flex-direction: row-reverse;
}

.roadmap-year {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 2;
  flex-shrink: 0;
}

.roadmap-content {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 12px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin: 0 2rem;
  transition: transform 0.3s ease;
}

.roadmap-content:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.roadmap-content h3 {
  margin-bottom: 1rem;
}

.roadmap-content p {
  opacity: 0.9;
  line-height: 1.8;
}

      /* Accordion Styles */
      .accordion {
        margin: 2rem 0;
      }
      .accordion-item {
        border-bottom: 1px solid #4b5563;
      }
      .accordion-header {
        background: #f0f4f8;
        padding: 1rem;
        cursor: pointer;
        font-size: 1.2rem;
        font-weight: 600;
        color: #1e3a8a;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: background 0.3s ease;
      }
      .accordion-header:hover {
        background: #e5e7eb;
      }
      .accordion-header i {
        color: #facc15;
        transition: transform 0.3s ease;
      }
      .accordion-header.active i {
        transform: rotate(180deg);
      }
      .accordion-content {
        max-height: 0;
        overflow: hidden;
        padding: 0 1rem;
        background: #ffffff;
        transition: max-height 0.3s ease, padding 0.3s ease;
      }
      .accordion-content.active {
        max-height: 200px;
        padding: 1rem;
      }
      .accordion-content p {
        font-size: 1rem;
        color: #4b5563;
      }


/* Responsive Design */
@media (max-width: 1024px) {
  .origins-content,
  .legacy-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .origins-visual {
    position: static;
  }
  
  .impact-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .history-hero .hero-title {
    font-size: 3rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .milestone-item,
  .roadmap-item {
    flex-direction: column !important;
    text-align: center;
  }
  
  .milestone-content,
  .roadmap-content {
    margin: 1rem 0 !important;
  }
  
  .milestones-timeline::before,
  .vision-roadmap::before {
    left: 50px;
  }
  
  .milestone-year,
  .roadmap-year {
    position: relative;
    left: 0;
  }
  
  .timeline-item {
    padding-left: 4rem;
  }
  
  .timeline-marker {
    left: 0px;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .story-timeline::before {
    left: 25px;
  }
}

@media (max-width: 480px) {
  .history-hero .hero-title {
    font-size: 2.5rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .evolution-grid,
  .awards-grid,
  .team-grid,
  .innovation-projects {
    grid-template-columns: 1fr;
  }
  
  .methodology-pillars {
    grid-template-columns: 1fr;
  }
  .history-hero {
    height:  165vh;
  }
}

/* Animation Classes */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}



.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}



.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s ease-out;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

