/* ---------- Background ---------- */
body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  color: white;
  background: url("background.jpg") center/cover no-repeat fixed;
  position: relative;
}

.background-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: -1;
}

/* ---------- Header ---------- */
.site-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px;
}

.profile-pic {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid #73000a;
}

.header-text {
  display: flex;
  flex-direction: column;
}

.name-banner {
  background: #73000a;
  padding: 10px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.subtitle-banner {
  background: black;
  padding: 6px 16px;
  font-size: 0.9rem;
}

/* ---------- Buttons ---------- */
.cta-button,
.btn {
  margin-left: auto;
  background: #73000a;
  color: white;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.cta-button:hover,
.btn:hover {
  background: #9e0012;
}

/* ---------- Sections ---------- */
.content-section {
  max-width: 900px;
  margin: 40px auto;
  background: black;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.content-section h2 {
  font-family: 'Montserrat', sans-serif;
  margin-top: 0;
}

/* ---------- Projects ---------- */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.project-card {
  background: #111;
  padding: 25px;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-6px);
}

/* ---------- Social Links ---------- */
.social-links {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 25px;
}

.social-links a {
  color: #9e0012;
  font-weight: 600;
  text-decoration: none;
}

.social-links a:hover {
  text-decoration: underline;
}

/* ---------- Footer ---------- */
footer {
  text-align: center;
  padding: 30px;
  font-size: 0.9rem;
  opacity: 0.8;
}
