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

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f7f7f9;
  color: #222;
  line-height: 1.6;
}

header {
  background: linear-gradient(120deg, #7b2ff2, #f357a8);
  color: white;
  padding-bottom: 40px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 10%;
}

.logo {
  font-size: 2em;
  font-weight: bold;
  letter-spacing: 2px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

nav ul li a:hover {
  color: #ffe3ec;
}

.hero {
  text-align: center;
  margin-top: 60px;
}

.hero h1 {
  font-size: 2.8em;
  margin-bottom: 12px;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 24px;
}

.cta {
  display: inline-block;
  padding: 12px 32px;
  background: white;
  color: #7b2ff2;
  border-radius: 24px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  transition: background 0.2s, color 0.2s;
}

.cta:hover {
  background: #ffe3ec;
  color: #f357a8;
}

main {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 16px;
}

section {
  margin-bottom: 64px;
}

h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.project-card {
  background: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 3px 18px rgba(123,47,242,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}

.project-card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 6px 36px rgba(123,47,242,0.11);
}

.project-card h3 {
  margin-bottom: 10px;
  color: #7b2ff2;
}

.project-card a {
  color: #f357a8;
  text-decoration: underline;
  font-weight: 500;
}

.socials {
  margin-top: 18px;
}

.socials a {
  margin-right: 18px;
  color: #7b2ff2;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.socials a:hover {
  color: #f357a8;
}

footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  font-size: 1em;
  margin-top: 40px;
}

@media (max-width: 700px) {
  nav {
    flex-direction: column;
    gap: 20px;
    padding: 16px 4%;
  }
  .hero {
    margin-top: 32px;
  }
  main {
    padding: 24px 4px;
  }
}

.top-banner {
  width: 100%;
  background: linear-gradient(90deg, #f357a8 0%, #7b2ff2 100%);
  color: #fff;
  text-align: center;
  padding: 12px 0;
  font-size: 1.1em;
  font-weight: 500;
  letter-spacing: 1px;
  position: relative;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(123,47,242,0.08);
}
