/* ======= Dark Glassmorphism Theme for About Page ======= */

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #0f0f0f;
  color: black;
}

header {
  background: #000000;
  color: #ffcc00;
  padding: 30px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  border-bottom: 2px solid #ffcc00;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.05);
}

header h1 {
  font-size: 2.5rem;
  margin: 0;
}

header p {
  font-size: 1.1rem;
  color: #ddd;
}

.about-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  margin: 40px auto;
  gap: 40px;
  max-width: 1200px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

.about-section img {
  width: 500px;
  max-width: 90%;
  border-radius: 15px;
  border: 2px solid #ffffff30;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.1);
}

.about-text {
  max-width: 600px;
}

.about-text h2 {
  color: #ffcc00;
  margin-bottom: 20px;
  font-size: 1.8rem;
  border-bottom: 1px solid #444;
  padding-bottom: 10px;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #d0d0d0;
  margin-bottom: 15px;
}

footer {
  background-color: #000000;       /* black background */
  color: #f1f1f1;                  /* light text for visibility */
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  border-top: 1px solid #333;
  font-size: 0.95rem;
}
