/* Base Styles and Variables */
:root {
  --primary-color: #8a2be2; /* Purple */
  --secondary-color: #5d3fd3; /* Lighter purple */
  --accent-color: #b19cd9; /* Lavender */
  --dark-color: #2a2a2a; /* Dark gray for text */
  --light-color: #ffffff; /* White background */
  --card-bg: #ffffff; /* Card background */
  --header-bg: #6a0dad; /* Header background - deeper purple */
  --footer-bg: #6a0dad; /* Footer background - deeper purple */
  --border-radius: 8px; /* Rounded corners */
  --box-shadow: 0 2px 10px rgba(138, 43, 226, 0.1); /* Subtle purple shadow */
  --transition: all 0.3s ease; /* Smooth transitions */
}

/* Reset and Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  background-color: var(--light-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-color);
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header Styles */
header {
  background-color: var(--header-bg);
  color: white;
  padding: 1rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(106, 13, 173, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  height: 50px;
  margin-right: 0.5rem;
}

header h1 {
  font-size: 1.8rem;
  margin-bottom: 0;
  color: white;
}

/* Navigation Styles */
nav {
  display: flex;
  align-items: center;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 1.5rem;
}

.nav-links a {
  color: white;
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: white;
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Main content spacing */
main {
  margin-top: 2rem;
}

/* Planned Features Section */
.planned-features {
  padding: 3rem 1rem;
  text-align: center;
}

.planned-features h2 {
  margin-bottom: 1rem;
  font-size: 2.5rem;
  color: var(--primary-color);
}

.section-intro {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  color: #666;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border: 1px solid rgba(138, 43, 226, 0.1);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(138, 43, 226, 0.2);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  color: var(--secondary-color);
}

.status-badge {
  display: inline-block;
  color: var(--dark-color);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.35rem 0.8rem;
  border-radius: 50px;
  margin-top: 1rem;
}

/* "Coming Soon" badge - pale green */
.feature-card:nth-child(1) .status-badge {
  background-color: #98fb98; /* Pale green */
  color: #2a552a;
}

/* "In Development" badge - yellow */
.feature-card:nth-child(2) .status-badge {
  background-color: #ffeb3b; /* Yellow */
  color: #806600;
}

/* "Planned" badge - pale grey */
.feature-card:nth-child(3) .status-badge,
.feature-card:nth-child(4) .status-badge {
  background-color: #e0e0e0; /* Pale grey */
  color: #555555;
}

.get-involved {
  margin-top: 3rem;
  padding: 2rem;
  background-color: #f8f5ff;
  border-radius: var(--border-radius);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.get-involved h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

/* Recent Updates Section */
.recent-updates {
  padding: 3rem 1rem;
  background-color: #f8f5ff; /* Very light purple background */
  text-align: center;
}

.recent-updates h2 {
  margin-bottom: 2rem;
  font-size: 2.5rem;
  color: var(--primary-color);
}

.updates-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.update-card {
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--box-shadow);
  text-align: left;
  border-left: 4px solid var(--primary-color);
}

.update-date {
  color: var(--secondary-color);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.update-card h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
}

/* About Content Section */
.about-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.about-content {
  padding-top: 2rem;
}

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

.about-section h2 {
  color: var(--primary-color);
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.about-section h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 60px;
  background-color: var(--accent-color);
}

.about-section p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.developer-info {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  margin-top: 1.5rem;
}

.developer-image {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-color);
}

/* Contact Section */
.contact-section {
  background-color: #f8f5ff;
  padding: 4rem 1rem;
  text-align: center;
  margin-top: 2rem;
}

.contact-container {
  max-width: 700px;
  margin: 0 auto;
}

.contact-section h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.contact-section p {
  margin-bottom: 2rem;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.contact-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  background-color: white;
  border-radius: var(--border-radius);
  min-width: 120px;
  transition: var(--transition);
  box-shadow: var(--box-shadow);
}

.contact-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(138, 43, 226, 0.2);
}

.contact-link i {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
  color: var(--primary-color);
}

.contact-link span {
  font-weight: 600;
  color: var(--dark-color);
}

/* Footer Styles */
footer {
  background-color: var(--footer-bg);
  color: white;
  padding: 3rem 1rem 1.5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
}

.footer-section h3 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #e0ccff; /* Light purple */
}

.footer-section a:hover {
  color: white;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: #e0ccff; /* Light purple */
  font-size: 1.5rem;
}

.social-links a:hover {
  color: white;
}

.copyright {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.9rem;
  color: #d1b3ff; /* Lighter purple */
}

.copyright p:first-child {
  margin-bottom: 0.5rem;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    background-color: var(--header-bg);
    width: 100%;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
    display: none;
    box-shadow: 0 2px 10px rgba(106, 13, 173, 0.3);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 0.5rem 0;
  }

  .developer-info {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-section h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .about-section {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .developer-image {
    width: 150px;
    height: 150px;
  }
}
