/* =====================================================
   ROADMAP.CSS - Event Timeline Page Styles
   Matches the main website theme and branding
   ===================================================== */

/* ===========================================
   BASE STYLES & THEME CONSISTENCY
   =========================================== */

/* Ensure consistent background and base styling */
body {
  background-color: #000000 !important;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Particles background (same as main site) */
#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* ===========================================
   HEADER WITH LOGO (ITELF on the right)
   =========================================== */

.roadmap-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: rgba(10, 14, 39, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
}

.header-logo {
  height: 50px;
  transition: transform 0.3s ease;
}

.header-logo:hover {
  transform: scale(1.05);
}

.header-logo img {
  height: 100%;
  width: auto;
  display: block;
}

/* Right logo  (ITELF) — shown in the header */
.right-logo img {
  max-width: 180px;
  filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.4));
}

/* Ensure any left-logo (if present in markup) is hidden — SproutIT moved into the Roadmap card */
.left-logo {
  display: none !important;
}

/* ===========================================
   MAIN ROADMAP CONTAINER
   =========================================== */

.roadmap-container {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  padding: 120px 20px 80px;
  min-height: 100vh;
}

/* ===========================================
   TITLE SECTION (contains SproutIT logo)
   =========================================== */

.roadmap-title-section {
  text-align: center;
  margin-bottom: 80px;
  padding: 40px 30px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

/* Animated background effect */
.roadmap-title-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg,
              rgba(0, 212, 255, 0.05) 25%,
              rgba(0, 150, 255, 0.08) 50%,
              rgba(0, 212, 255, 0.05) 75%);
  background-size: 200% 200%;
  animation: titleMove 8s linear infinite;
  z-index: 0;
}

@keyframes titleMove {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 200%; }
}

.roadmap-main-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  background: linear-gradient(135deg, #00d4ff 0%, #ffffff 50%, #00d4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  letter-spacing: -1px;
  position: relative;
  z-index: 2;
}

.roadmap-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: #a0a9c0;
  font-weight: 300;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.roadmap-date {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 1.1rem;
  color: #00d4ff;
  background: rgba(0, 212, 255, 0.1);
  padding: 10px 20px;
  border-radius: 25px;
  border: 1px solid rgba(0, 212, 255, 0.3);
  display: inline-flex;
  position: relative;
  z-index: 2;
}

.roadmap-date i {
  font-size: 1.2rem;
}

/* SproutIT logo inside the title section (centered, larger, glowing) */
.sproutit-logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  z-index: 2;
}

.sproutit-logo {
  max-width: 330px; /* ~50% bigger from small header size */
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.7));
  transition: transform 0.35s ease, filter 0.35s ease;
  animation: sproutLogoPulse 3.5s ease-in-out infinite;
}

@keyframes sproutLogoPulse {
  0%   { transform: translateY(0); filter: drop-shadow(0 0 12px rgba(0,212,255,0.55)); }
  50%  { transform: translateY(-4px); filter: drop-shadow(0 0 28px rgba(0,212,255,0.95)); }
  100% { transform: translateY(0); filter: drop-shadow(0 0 12px rgba(0,212,255,0.55)); }
}

/* ===========================================
   TIMELINE STRUCTURE
   =========================================== */

.timeline-container {
  position: relative;
  margin: 40px 0;
}

/* Main timeline line */
.timeline-line {
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, 
              rgba(0, 212, 255, 0.8) 0%,
              rgba(0, 212, 255, 0.6) 50%,
              rgba(0, 212, 255, 0.4) 100%);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
}

/* ===========================================
   TIMELINE ITEMS
   =========================================== */

.timeline-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  padding-left: 80px;
}

/* Timeline marker (dot) */
.timeline-marker {
  position: absolute;
  left: 0;
  top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #00d4ff;
  border: 4px solid rgba(0, 0, 0, 0.8);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
  position: relative;
  z-index: 3;
  transition: all 0.3s ease;
}

/* Glow effect around dot */
.timeline-glow {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, transparent 70%);
  animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}

/* ===========================================
   EVENT CARDS
   =========================================== */

.timeline-content {
  flex: 1;
  margin-left: 20px;
}

.timeline-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Subtle shimmer effect */
.timeline-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.08), transparent);
  transition: left 0.6s ease;
}

.timeline-card:hover::before {
  left: 100%;
}

.timeline-card:hover {
  transform: translateY(-5px) translateX(10px);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.15);
  border-color: rgba(0, 212, 255, 0.3);
}

/* Event time */
.event-time {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #00d4ff;
  background: rgba(0, 212, 255, 0.1);
  padding: 5px 12px;
  border-radius: 12px;
  display: inline-block;
  margin-bottom: 15px;
  border: 1px solid rgba(0, 212, 255, 0.3);
}

/* Event title */
.event-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.3;
}

/* Event description */
.event-description {
  color: #b0b8d0;
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

/* Event location */
.event-location {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #a0a9c0;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.event-location i {
  color: #00d4ff;
  width: 16px;
}

/* Hide any per-card SproutIT logo blocks (in case the HTML still contains them).
   We want SproutIT only in the title section. */
.timeline-card .event-card-logo {
  display: none !important;
}

/* ===========================================
   EVENT STATUS INDICATORS
   =========================================== */

.event-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 15px;
  display: inline-flex;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 20px; /* Added spacing */
}

/* Completed status */
.event-status.completed {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.timeline-item[data-status="completed"] .timeline-dot {
  background: #22c55e;
  box-shadow: 0 0 15px rgba(34, 197, 94, 0.6);
}

.timeline-item[data-status="completed"] .timeline-glow {
  background: radial-gradient(circle, rgba(34, 197, 94, 0.3) 0%, transparent 70%);
}

/* Current/In Progress status */
.event-status.current {
  background: rgba(255, 193, 7, 0.1);
  color: #ffc107;
  border: 1px solid rgba(255, 193, 7, 0.3);
  animation: statusBlink 2s ease-in-out infinite;
}

.timeline-item[data-status="current"] .timeline-dot {
  background: #ffc107;
  box-shadow: 0 0 15px rgba(255, 193, 7, 0.6);
  animation: currentDotPulse 1.5s ease-in-out infinite;
}

.timeline-item[data-status="current"] .timeline-glow {
  background: radial-gradient(circle, rgba(255, 193, 7, 0.3) 0%, transparent 70%);
}

@keyframes statusBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes currentDotPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* Upcoming status */
.event-status.upcoming {
  background: rgba(107, 114, 128, 0.1);
  color: #9ca3af;
  border: 1px solid rgba(107, 114, 128, 0.3);
}

.timeline-item[data-status="upcoming"] .timeline-dot {
  background: #6b7280;
  box-shadow: 0 0 15px rgba(107, 114, 128, 0.4);
}

.timeline-item[data-status="upcoming"] .timeline-glow {
  background: radial-gradient(circle, rgba(107, 114, 128, 0.2) 0%, transparent 70%);
}

/* ===========================================
   FEATURED EVENT STYLING (Current Day Gold Glow)
   =========================================== */

.timeline-card.featured-event {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(255, 150, 0, 0.12));
  border: 2px solid rgba(255, 215, 0, 0.4);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2),
              inset 0 0 20px rgba(255, 215, 0, 0.1);
  animation: featuredGlow 3s ease-in-out infinite;
  position: relative;
}

.timeline-card.featured-event::before {
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.15), transparent);
}

.timeline-card.featured-event:hover {
  box-shadow: 0 25px 50px rgba(255, 215, 0, 0.3),
              inset 0 0 30px rgba(255, 215, 0, 0.15);
  border-color: rgba(255, 215, 0, 0.6);
}

.timeline-card.featured-event .event-title {
  color: #ffd700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.timeline-card.featured-event .event-time {
  background: rgba(255, 215, 0, 0.15);
  color: #ffd700;
  border-color: rgba(255, 215, 0, 0.4);
}

@keyframes featuredGlow {
  0%, 100% {
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2),
                inset 0 0 20px rgba(255, 215, 0, 0.1);
  }
  50% {
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.35),
                inset 0 0 30px rgba(255, 215, 0, 0.15);
  }
}

/* Event highlight badge */
.event-highlight {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 215, 0, 0.15);
  color: #ffd700;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(255, 215, 0, 0.3);
  display: inline-flex;
  margin-top: 10px;
}

.event-highlight i {
  font-size: 0.9rem;
}

/* ===========================================
   BACK TO HOME BUTTON
   =========================================== */

.back-to-home {
  text-align: center;
  margin: 60px 0 40px;
}

.back-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: #00d4ff;
  padding: 15px 30px;
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.back-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.back-button:hover::before {
  left: 100%;
}

.back-button:hover {
  color: #ffffff;
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 212, 255, 0.2);
}

.back-button i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.back-button:hover i {
  transform: translateX(-3px);
}

/* ===========================================
   LIVE UPDATES NOTICE
   =========================================== */

.live-updates-notice {
  margin: 40px 0;
}

.notice-card {
  background: rgba(34, 197, 94, 0.05);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  backdrop-filter: blur(15px);
  animation: noticePulse 4s ease-in-out infinite;
}

.notice-card i {
  font-size: 1.5rem;
  color: #22c55e;
  flex-shrink: 0;
}

.notice-content h4 {
  font-family: 'Orbitron', sans-serif;
  color: #22c55e;
  font-size: 1.1rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.notice-content p {
  color: #a0a9c0;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

@keyframes noticePulse {
  0%, 100% {
    border-color: rgba(34, 197, 94, 0.2);
    background: rgba(34, 197, 94, 0.05);
  }
  50% {
    border-color: rgba(34, 197, 94, 0.3);
    background: rgba(34, 197, 94, 0.08);
  }
}

/* ===========================================
   FOOTER
   =========================================== */

.site-footer {
  background: linear-gradient(178deg, #01030d 0%, #05070d 50%, #04203c 100%);
  padding: 60px 20px 30px; /* Increased top padding */
  color: #a0a9c0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #00d4ff, transparent);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex; /* Use Flexbox for better alignment */
  justify-content: space-between; /* Distributes columns evenly */
  align-items: flex-start; /* Aligns columns to the top */
  flex-wrap: wrap; /* Allows columns to wrap on smaller screens */
  gap: 40px;
}

/* Set widths for each column */
.footer-about {
  flex: 2; /* Takes up twice the space of the others */
  min-width: 300px; /* Prevents it from getting too squished */
}

.footer-links,
.footer-contact {
  flex: 1; /* Each takes up 1 part of the space */
  min-width: 220px;
  display: flex;
  flex-direction: column;
}

.footer-about h3 {
  font-family: 'Orbitron', sans-serif;
  color: #00d4ff;
  font-size: 1.5rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.footer-tagline {
  font-size: 1rem;
  color: #b0b8d0;
  margin-bottom: 12px;
  font-weight: 300;
}

.footer-description {
  font-size: 0.9rem;
  color: #a0a9c0;
  line-height: 1.5;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  font-size: 1.1rem;
  color: #a0a9c0;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  color: #00d4ff;
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-2px);
}

.footer-links h4,
.footer-contact h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  color: #00d4ff;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #a0a9c0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #00d4ff;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px; /* Increased gap for better spacing */
}

.contact-item {
  display: flex;
  align-items: flex-start; /* Aligns icon with the first line of text */
  gap: 10px;
  font-size: 0.9rem;
  text-align: left;
}

.contact-item i {
  color: #00d4ff;
  margin-top: 3px; /* Adjusts icon position */
}

.contact-item a {
    color: #a0a9c0;
    text-decoration: none;
}

.contact-item a:hover {
    color: #00d4ff;
    text-decoration: underline;
}

.contact-phone .contact-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  padding-top: 30px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
  color: #888fa7;
}

.footer-bottom-links {
  display: flex;
  gap: 15px;
  align-items: center;
}

.footer-bottom-links a {
  color: #a0a9c0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #00d4ff;
}

/* ===========================================
   FINALE DAY SCHEDULE (Inside Timeline Card)
   =========================================== */
.event-schedule {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.event-schedule h4 {
  font-family: 'Orbitron', sans-serif;
  color: #00d4ff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
  text-align: left;
}

.event-schedule ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px; /* Adds space between items */
}

.event-schedule ul li {
  padding: 8px 10px;
  font-size: 0.9rem;
  color: #d0d8f0; /* Slightly brighter text */
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-left: 3px solid #00d4ff;
}

.event-schedule ul li span {
  font-weight: 600;
  color: #ffffff;
  background-color: rgba(0, 212, 255, 0.1);
  padding: 4px 8px;
  border-radius: 6px;
  white-space: nowrap;
}

/* ===========================================
   RESPONSIVE DESIGN
   =========================================== */

/* Tablet styles */
@media (max-width: 768px) {
  .roadmap-header {
    padding: 0 20px;
    height: 70px;
  }
  
  .header-logo {
    height: 40px;
  }
  
  .right-logo img {
    max-width: 130px;
  }
  
  .roadmap-container {
    padding: 100px 15px 60px;
  }
  
  .roadmap-title-section {
    padding: 30px 20px;
    margin-bottom: 60px;
  }
  
  .timeline-line {
    left: 20px;
  }
  
  .timeline-item {
    padding-left: 60px;
  }
  
  .timeline-marker {
    left: -10px;
  }
  
  .timeline-content {
    margin-left: 15px;
  }
  
  .timeline-card {
    padding: 25px;
  }
  
  .event-title {
    font-size: 1.2rem;
  }
  
  .back-button {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  /* SproutIT logo size on tablet */
  .sproutit-logo {
    max-width: 250px;
  }

  .event-schedule ul li {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

/* Mobile styles */
@media (max-width: 480px) {
  .roadmap-header {
    padding: 0 15px;
    height: 60px;
  }
  
  .header-logo {
    height: 35px;
  }
  
  .right-logo img {
    max-width: 100px;
  }
  
  .roadmap-container {
    padding: 80px 12px 50px;
  }
  
  .roadmap-title-section {
    padding: 25px 15px;
    margin-bottom: 50px;
  }
  
  .roadmap-main-title {
    font-size: 2rem;
  }
  
  .roadmap-subtitle {
    font-size: 1rem;
  }
  
  .roadmap-date {
    font-size: 0.95rem;
    padding: 8px 15px;
  }
  
  .timeline-line {
    left: 15px;
  }
  
  .timeline-item {
    padding-left: 45px;
    margin-bottom: 35px;
  }
  
  .timeline-marker {
    left: -12px;
  }
  
  .timeline-dot {
    width: 16px;
    height: 16px;
  }
  
  .timeline-glow {
    width: 30px;
    height: 30px;
  }
  
  .timeline-content {
    margin-left: 10px;
  }
  
  .timeline-card {
    padding: 20px;
  }
  
  .event-title {
    font-size: 1.1rem;
    line-height: 1.4;
  }
  
  .event-description {
    font-size: 0.9rem;
  }
  
  .event-time {
    font-size: 0.8rem;
    padding: 4px 10px;
  }
  
  .event-status {
    font-size: 0.75rem;
    padding: 4px 8px;
  }
  
  .notice-card {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }
  
  .notice-card i {
    font-size: 1.2rem;
  }
  
  .back-button {
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  /* SproutIT logo size on small mobile */
  .sproutit-logo {
    max-width: 200px;
  }
}

/* Extra small mobile */
@media (max-width: 375px) {
  .roadmap-header {
    padding: 0 10px;
  }
  
  .header-logo {
    height: 30px;
  }
  
  .right-logo img {
    max-width: 85px;
  }
  
  .roadmap-container {
    padding: 70px 10px 40px;
  }
  
  .timeline-item {
    padding-left: 40px;
  }
  
  .timeline-card {
    padding: 15px;
  }
  
  .event-title {
    font-size: 1rem;
  }
  
  .event-description {
    font-size: 0.85rem;
  }
}

/* ===========================================
   LANDSCAPE MOBILE FIXES
   =========================================== */

@media (max-height: 500px) and (orientation: landscape) {
  .roadmap-title-section {
    padding: 20px;
    margin-bottom: 40px;
  }
  
  .roadmap-main-title {
    font-size: 2rem;
  }
  
  .roadmap-subtitle {
    font-size: 0.9rem;
  }
  
  .timeline-item {
    margin-bottom: 30px;
  }
  
  .timeline-card {
    padding: 20px;
  }
}

/* ===========================================
   ACCESSIBILITY IMPROVEMENTS
   =========================================== */

/* Focus styles for keyboard navigation */
.back-button:focus,
.timeline-card:focus {
  outline: 2px solid #00d4ff;
  outline-offset: 2px;
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .timeline-card {
    border-width: 2px;
  }
  
  .event-status {
    border-width: 2px;
  }
  
  .back-button {
    border-width: 2px;
  }
}

.footer-social a {
    text-decoration: none;
}
