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

body {
  font-family: Arial, sans-serif;
  background: black;
  color: white;
  overflow-x: hidden;
}

/* BACKGROUND */
#bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* HERO */
.hero-container {
  text-align: center;
  padding: 60px 20px;
}

.profile-pic {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid red;
  box-shadow: 0 0 20px rgba(255,0,0,0.5);
  margin-bottom: 20px;
}

h1 {
  font-size: 2.5rem;
}

h3 {
  margin-top: 10px;
  opacity: 0.8;
}

p {
  max-width: 700px;
  margin: 20px auto;
  opacity: 0.9;
}

/* SOCIALS */
.socials a {
  color: red;
  margin: 0 10px;
  text-decoration: none;
  font-weight: bold;
}

.socials a:hover {
  color: white;
}

/* SECTIONS */
section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
}

/* PROJECTS */
.project.empty {
  background: rgba(255, 0, 0, 0.05);
  border: 1px dashed rgba(255, 0, 0, 0.4);
  text-align: center;
  padding: 40px;
  font-style: italic;
  opacity: 0.9;
}

/* CONTACT */
form {
  display: flex;
  flex-direction: column;
}

input, textarea {
  padding: 12px;
  margin-bottom: 10px;
  border: none;
  border-radius: 6px;
}

button {
  padding: 12px;
  background: red;
  color: white;
  border: none;
  cursor: pointer;
}

button:hover {
  background: darkred;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  h1 {
    font-size: 1.8rem;
  }
}