* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: #0b0b0f;
  color: #ffffff;
}

/* HERO */
.hero {
  height: 100vh;
  background: url("https://images.unsplash.com/photo-1507874457470-272b3c8d8ee2")
    center/cover no-repeat;
  position: relative;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #000 45%, rgba(0, 0, 0, 0.35));
}

/* NAV */
.navbar {
  position: relative;
  z-index: 2;
  padding: 30px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(45deg, #9b5cff, #ffb347);
  -webkit-background-clip: text;
  color: transparent;
}

.wave {
  opacity: 0.7;
}

/* CONTENT */
.content {
  position: relative;
  z-index: 2;
  padding: 60px;
  max-width: 820px;
}

h1 {
  font-size: 54px;
  font-weight: 700;
  line-height: 1.1;
}

.subtitle {
  margin: 18px 0 45px;
  letter-spacing: 1px;
  opacity: 0.85;
}

/* CARDS */
.cards {
  display: flex;
  gap: 30px;
}

.card {
  flex: 1;
  padding: 32px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
}

.icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.card h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.card p {
  font-size: 12px;
  opacity: 0.8;
}

.purple {
  box-shadow: 0 0 25px #9b5cff33;
}
.blue {
  box-shadow: 0 0 25px #2dd4ff33;
}
.pink {
  box-shadow: 0 0 25px #ff4ecd33;
}

/* CONTACT */
.contact-section {
  margin-top: 55px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact h4 {
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.contact p {
  font-size: 13px;
  opacity: 0.8;
}

/* SOCIAL ICONS */
.socials a {
  margin-left: 20px;
  font-size: 20px;
  color: #ffffff;
  opacity: 0.85;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease,
    color 0.25s ease;
}

.socials a:hover {
  transform: scale(1.3);
  opacity: 1;
  color: #9b5cff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .cards {
    flex-direction: column;
  }

  .content {
    padding: 40px;
  }
}
