* {

  margin: 0;

  padding: 0;

  box-sizing: border-box;

}

body {

  font-family: 'Inter', sans-serif;

  background: #0f1115;

  color: white;

  min-height: 100vh;


.banner {

  width: 100%;

  height: 550px;

  overflow: hidden;

  position: relative;

}

.banner img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  object-position: center -100px;

}

.banner::after {

  content: "";

  position: absolute;

  inset: 0;

  background: rgba(0,0,0,0.5);

}


.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center -30px;
  filter: brightness(0.7);
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px 60px;
}

.hero {
  text-align: center;
  margin-top: -100px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.hero-image {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #0f1115;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  background: #222;
}

.hero h1 {
  font-size: 54px;
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 12px;
}

.hero p {
  color: #a0a7b5;
  font-size: 20px;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.socials a {
  text-decoration: none;
  color: white;
  background: rgba(255,255,255,0.06);
  padding: 14px 24px;
  border-radius: 14px;
  transition: 0.25s;
  border: 1px solid rgba(255,255,255,0.08);
}

.socials a:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-2px);
}

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

.card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  min-height: 280px;
  text-decoration: none;
  color: white;
  display: flex;
  align-items: flex-end;
}

.card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  transition: 0.3s ease;
}

.card:hover .card-overlay {
  background: rgba(0,0,0,0);
}

.card-content {
  position: relative;
  z-index: 2;
  padding: 28px;
}

.fallback-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.card h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.card p {
  color: #b7bfcb;
  font-size: 15px;
  line-height: 1.5;
}

footer {
  text-align: center;
  margin-top: 70px;
  color: #777;
  font-size: 14px;
}
