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

body {
  font-family: 'Verdana', sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
}

a {
  color: #004b7d;
  text-decoration: none;
}

header {
  background: #ffffff;
  padding: 20px 40px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo {
  font-weight: bold;
  font-size: 1.5rem;
}

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

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90vh;
  text-align: center;
  padding: 0 20px;
  background: linear-gradient(to right, #6a11cb, #2575fc);
  color: white;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn {
  background: white;
  color: #2575fc;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  transition: 0.3s ease;
}

.btn:hover {
  background: #d1e4fa;
}

.section {
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.project-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.project-card:hover {
  transform: translateY(-5px);
  background: #d1e4fa;
}

/*art section i dont freaking know*/
footer {
  text-align: center;
  padding: 30px 20px;
  background: #f1f1f1;
  font-size: 0.9rem;
}
.art-link {
  margin-top: 40px;
  padding: 30px;
  background: #f0f4ff;
  border-radius: 10px;
}

.art-link h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.art-link p {
  font-size: 1rem;
  margin-bottom: 15px;
}
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
  align-items: center;
}

/*contact*/


.contact-links a:hover {
  color: #1a52b8;
  transform: translateY(-2px);
}

.contact-links i {
  font-size: 1rem;
}
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
  align-items: center;
}

.contact-links a {
  font-size: 1rem;
  text-decoration: none;
  color: #2575fc;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-links a:hover {
  color: #1a52b8;
  transform: translateY(-2px);
}

.contact-item {
  font-size: 1.2rem;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
}
#typed-text::after {
  content: "|";
  animation: blink 0.8s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
html {
  scroll-behavior: smooth;
}