/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* PAGE BACKGROUND */
body {
  min-height: 200vh;
  background:
    radial-gradient(circle at top left, #1f3b73, transparent 30%),
    radial-gradient(circle at bottom right, #5b21b6, transparent 30%),
    #0f172a;

  font-family: Arial, sans-serif;
  color: white;
}

/* GLASS NAVBAR */
.navbar {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);

  width: 90%;
  max-width: 1100px;

  padding: 16px 28px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border-radius: 20px;

  /* GLASS EFFECT */
  background: rgba(255, 255, 255, 0.06);

  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);

  box-shadow:
    0 0 20px rgba(99, 102, 241, 0.15),
    0 8px 32px rgba(0, 0, 0, 0.3);

  z-index: 1000;
}

/* LOGO */
.logo {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 2px;

  background: linear-gradient(
    90deg,
    #60a5fa,
    #8b5cf6
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* LINKS */
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  border-radius: 10px;
  text-decoration: none;
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  font-weight: 500;

  transition: all 0.3s ease;
  position: relative;
}

/* HOVER EFFECT */
.nav-links a:hover {
  color: rgb(122, 187, 244);
  transform: translateY(-2px);
}

/* UNDERLINE ANIMATION */
.nav-links a::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: -6px;

  width: 0%;
  height: 2px;

  background: rgb(64, 162, 233);

  transition: width 0.3s ease;
}

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

/* BUTTON */
.nav-btn {
  padding: 10px 18px;

  border: none;
  border-radius: 12px;

  background: rgba(255,255,255,0.12);

  color: white;
  cursor: pointer;

  transition: all 0.3s ease;
}

.nav-btn:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

/* MOBILE */
@media (max-width: 768px) {
  .nav-links {
   padding: 2px 2px 2px 14px;
   margin: 10px 10px 10px 10px;
   border: none;
   gap: 10px;
  }

  .navbar {
    padding: 14px 20px;
  }
}

/* ===== Layout ===== */

header {
  text-align: center;
  padding: 150px 20px 80px;
}

header h1 {
  font-size: clamp(3rem, 8vw, 6rem);

  background:
    linear-gradient(
      90deg,
      #60a5fa,
      #8b5cf6
    );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  margin-bottom: 15px;
}

header p {
  color: #94a3b8;
  max-width: 600px;
  margin: auto;
  line-height: 1.7;
}

/* ===== Sections ===== */
main {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

section {
  margin-bottom: 50px;
}

section h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
  display: inline-block;
  padding-bottom: 8px;
  border-bottom: 2px solid
  rgba(96,165,250,.4);
  align-items: center;
  gap: 10px;
  letter-spacing: 0.5px;
}

.planned {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

#contact-me h3 {
  text-align: center;
  align-items: center;
  font-size: 25px;
  color: #8baef5;
  font-weight: 700;
  
}

.compact {
  padding: 14px 18px;
}

.compact h3 {
  margin: 0;
}

.compact span {
  color: #94a3b8;
  font-size: 0.9rem;
}

/* ===== Subtle "status feel" (optional later) =====  */
.site-link {
  font-size: 18px;
  text-align: center;
  padding: 10px;
  margin: 10px;
  margin-top: 20px;
  gap: 10px;
  color: rgb(251, 248, 248);
  background-color: #3b649a;
  text-decoration: none;
}

.site-link a {
  color:rgb(127, 236, 255);
}

.site-link:hover {
  color: rgb(233, 242, 252);
  transition: 0.3s ease;
}

/* Container styling */
        .social-icons {
            display: flex;
            gap: 15px;
            justify-content: center;
            margin-top: 50px;
        }

        /* Icon styling */
        .social-icons a {
            text-decoration: none;
            color: rgb(108, 96, 243);
            background-color: #1f1f1f;
            padding: 12px;
            border-radius: 50%;
            font-size: 30px;
            transition: background-color 0.3s ease;
        }

        /* Hover effect */
        .social-icons a:hover {
            background-color: #8baef5;
        }

/* ===== Smooth page feel ===== */
html {
  scroll-behavior: smooth;
}

.hero-status {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}

.status-card {
  padding: 24px;
  border-radius: 18px;

  background: rgba(255,255,255,0.05);

  border: 1px solid rgba(255,255,255,0.08);

  backdrop-filter: blur(12px);
}

.status-card h2 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.status-card p {
  color: #94a3b8;
}

.projects-grid {
  display: grid;

  grid-template-columns:
  repeat(auto-fit, minmax(280px, 1fr));

  gap: 18px;
}

.card {
  background: rgba(255,255,255,0.05);

  border: 1px solid rgba(255,255,255,0.08);

  border-radius: 18px;

  padding: 22px;

  margin: 20px;

  transition: all 0.3s ease;

  cursor: pointer;

  backdrop-filter: blur(12px);

  position: relative;
}

.card:hover {
  transform: translateY(-5px);

  border-color: rgba(96,165,250,0.5);

  box-shadow:
    0 0 25px rgba(96,165,250,0.15);
}

.card h3 {
  margin-bottom: 15px;
}

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

.card span {
  color: #94a3b8;
  font-size: 0.95rem;
}

.vault {
  margin-top: 15px;
}

.vault summary {
  cursor: pointer;

  padding: 14px 18px;

  border-radius: 12px;

  background: rgba(255,255,255,0.05);

  border: 1px solid rgba(255,255,255,0.08);

  margin-bottom: 20px;
}

.vault[open] summary {
  margin-bottom: 25px;
}

.project-image {
    width: 100%;
    height: 180px;

    object-fit: cover;

    border-radius: 12px;

    margin: 5px;
}

.support-section {
    padding: 8rem 2rem;
    display: flex;
    justify-content: center;
}

.support-content {
    max-width: 800px;
    width: 100%;
    text-align: center;

    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);

    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;

    padding: 3rem;
}

.support-tag {
    display: inline-block;

    padding: .4rem 1rem;

    border: 1px solid rgba(255,255,255,.15);
    border-radius: 999px;

    font-size: .9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.support-content h2 {
    margin-top: 1rem;
    font-size: clamp(2rem, 5vw, 3.5rem);
}

.support-content p {
    color: #bdbdbd;
    line-height: 1.8;
    max-width: 600px;
    margin: 1rem auto;
}

.support-goals {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;

    margin: 2.5rem 0;
}

.goal-item {
    min-width: 160px;

    padding: 1rem;

    background: rgba(255,255,255,.04);

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
}

.goal-item span {
    font-size: 2rem;
    display: block;
    margin-bottom: .5rem;
}

.goal-item p {
    margin: 0;
}

.donate-btn {
    display: inline-block;

    padding: 1rem 2rem;
    margin: 5px;
    border-radius: 999px;

    text-decoration: none;
    font-weight: 600;

    color: white;

    background: linear-gradient(
        135deg,
        #6d5dfc,
        #4f46e5
    );

    transition: all .3s ease;
}

.donate-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(79,70,229,.4);
}

#about {
  margin: 80px 0;
}

.about-content {
  display: grid;

  grid-template-columns:
  2fr 1fr;

  gap: 40px;

  align-items: center;
}

.about-text h2 {
  margin-bottom: 20px;
}

.about-text p {
  color: #94a3b8;

  line-height: 1.8;

  margin-bottom: 16px;
}

.about-stats {
  display: grid;
  gap: 15px;
}

.about-image img {
  width: 250px;
  border-radius: 999px;
  display: block;
}

.stat-card {
  padding: 20px;

  border-radius: 16px;

  background: rgba(255,255,255,.05);

  border: 1px solid rgba(255,255,255,.08);

  text-align: center;
}

.stat-card h3 {
  font-size: 2rem;

  color: #60a5fa;
}

.stat-card span {
  color: #94a3b8;
}

.footer {

    margin-top: 100px;

    padding: 60px 30px 30px;

    border-top:
    1px solid rgba(255,255,255,.08);

    background:
    rgba(255,255,255,.02);
}

.footer-content {

    max-width: 1100px;

    margin: auto;

    display: grid;

    grid-template-columns:
    2fr 1fr 1fr;

    gap: 40px;
}

.footer-brand p {

    color: #94a3b8;

    margin-top: 10px;

    line-height: 1.6;
}

.footer-links {

    display: flex;

    flex-direction: column;

    gap: 12px;
}

.footer-links a {

    text-decoration: none;

    color: #cbd5e1;

    transition: .3s;
}

.footer-links a:hover {

    color: #60a5fa;
}

.footer-socials {

    display: flex;

    gap: 15px;
}

.footer-socials a {

    font-size: 1.4rem;

    color: #cbd5e1;

    transition: .3s;
}

.footer-socials a:hover {

    color: #60a5fa;

    transform: translateY(-3px);
}

.footer-bottom {

    text-align: center;

    margin-top: 40px;

    padding-top: 20px;

    border-top:
    1px solid rgba(255,255,255,.05);

    color: #64748b;

    font-size: .9rem;
}