/* Define the primary color palette */
:root {
  --dark-purple: #210535;
  --purple: #430d4b;
  --medium-purple: #7b337d;
  --light-purple: #c874b2;
  --light-pink: #f5d5e0;
  --white: #ffffff;
}

/* Apply background gradient */
body {
  background: var(--dark-purple);
  color: var(--light-pink);
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* General element styles */
* {
  box-sizing: border-box;
}

/* Header and hero styles */
header.hero {
  background: url("nebula.jpg") no-repeat center center/cover;
  height: calc(100vh - 60px);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--white);
  position: relative;
  padding: 0 20px;
}

header.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  z-index: 2;
  max-width: 600px;
}

.hero-content .icon {
  width: 200px;
  height: 200px;
  margin-bottom: 20px;
  border-radius: 50%;
  border: 2px solid var(--light-pink);
  padding: 5px;
}

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

.hero-content h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.hero-content h3 {
  font-size: 1.4rem;
  margin-top: 20px;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1rem;
  margin-top: 10px;
  margin-bottom: 15px;
}

.about-us {
  margin-bottom: 20px;
}

.about-us p {
  margin: 5px 0;
}

.hero-content a {
  color: var(--light-pink);
  text-decoration: none;
  font-weight: bold;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.social-links a {
  color: var(--white);
  font-size: 1.4rem;
  width: 40px;
  height: 40px;
  border: 2px solid var(--light-pink);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
  background: var(--light-pink);
  color: var(--dark-purple);
}

footer {
  background: var(--dark-purple);
  color: var(--light-pink);
  padding: 10px;
  text-align: center;
  font-size: 0.8rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero-content .icon {
    width: 150px;
    height: 150px;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-content h2 {
    font-size: 1.4rem;
  }

  .hero-content h3 {
    font-size: 1.2rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }

  .social-links a {
    font-size: 1.2rem;
    width: 35px;
    height: 35px;
  }

  footer {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .hero-content .icon {
    width: 120px;
    height: 120px;
  }

  .hero-content h1 {
    font-size: 1.2rem;
  }

  .hero-content h2 {
    font-size: 1.2rem;
  }

  .hero-content h3 {
    font-size: 1rem;
  }

  .hero-content p {
    font-size: 0.8rem;
  }

  .social-links {
    gap: 8px;
  }

  .social-links a {
    font-size: 1rem;
    width: 30px;
    height: 30px;
  }

  footer {
    font-size: 0.6rem;
  }
}
