
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #f0f0f5;
  min-height: 100vh;
}



header {
  background-color: transparent; 
  color: #f0f0f5;
  box-shadow: none;
}

.logo {
  font-weight: bold;
  font-size: 1.2rem;
  color: #c996cc; 
}

nav button {
    background: none;
    border: 2px solid #c996cc;
    color: #c996cc;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

nav button:hover {
  color: #c996cc;
}

.intro h1 {
  color: #c996cc;
}

.highlight {
  color: #e27ca4; 
}

.intro p {
  color: #ccc;
}

.socials a {
  color: #c996cc;
}

.modal-content {
  background: #1e1e2f;
  color: #ddd;
}

.close {
  color: #bbb;
}

.close:hover {
  color: #fff;
}



.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.intro h1 {
  font-size: 2.5rem;
  color: #3f3d56;
}

.highlight {
  color: #7a6bbd;
}

.intro p {
  margin: 1rem 0;
  font-size: 1.1rem;
  color: #555;
}

.socials a {
  margin-right: 1rem;
  color: #7a6bbd;
  text-decoration: none;
  font-weight: 600;
}

.profile-img img {
  border-radius: 50%;
  width: 250px;
  border: 4px solid #dcd6f7;
}


.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  position: relative;
  animation: fadeIn 0.3s ease-in-out;
}

.modal-content h2 {
  color: #3f3d56;
  margin-bottom: 1rem;
}

.modal-content p,
.modal-content li {
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
}

.modal-content ul {
  padding-left: 1.2rem;
}

.close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: #999;
  transition: color 0.3s;
}

.close:hover {
  color: #333;
}


@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}




@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    padding: 3rem 1.5rem;
    text-align: center;
  }

  .profile-img img {
    width: 200px;
    margin-top: 2rem;
  }

  .intro h1 {
    font-size: 2rem;
  }

  .intro p {
    font-size: 1rem;
  }

  .socials a {
    margin-right: 0.8rem;
    font-size: 0.9rem;
  }
}


@media (max-width: 600px) {
  .hero {
    padding: 2rem 1rem;
  }

  .intro h1 {
    font-size: 1.6rem;
  }

  .intro p {
    font-size: 0.9rem;
  }

  .profile-img img {
    width: 150px;
    margin-top: 1.5rem;
  }

  .socials a {
    margin-right: 0.5rem;
    font-size: 0.85rem;
  }


  .modal-content {
    width: 95%;
    padding: 1.5rem;
  }
}


@media (max-width: 400px) {
  .intro h1 {
    font-size: 1.3rem;
  }

  .intro p {
    font-size: 0.85rem;
  }

  .profile-img img {
    width: 120px;
  }
}
