/* IMPORT FONT (similar to screenshot aesthetic) */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* GLOBAL RESET */
body {
  margin: 0;
  padding: 0;
  font-family: 'Space Grotesk', sans-serif;
  color: #e7e7e7;
  background-color: #000000;
}

/* HEADER */
.header {
  text-align: center;
  font-size: 48px;
  font-weight: 600;
  padding: 20px 20px;
  background: linear-gradient(to bottom, #000, #0D0E0E 100%);
  letter-spacing: 1px;
}

/* SECTION TITLE */
.section-title {
  font-size: 38px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 600;
  letter-spacing: 2px;
  border-bottom: 2px solid #56a6ff;
  display: inline-block;
}

.section {
    padding-top: 5px;
    padding-bottom: 5px;
}

/* Welcome: blue tint */
.section-welcome {
    background: linear-gradient(to bottom, #0D0E0E, #131415 100%);
}

/* Work Experience: purple tint */
.section-work {
    /* background-color: #131415; */
    background: linear-gradient(to bottom, #131415, #0D0E0E 100%);
}

/* Projects: teal tint */
.section-projects {
    background-color: #0D0E0E;
}

/* Prototypes: dark grey tint blending to base color */
.section-prototypes {
  background: linear-gradient(to bottom, #0D0E0E, #131415 100%);
  padding-bottom: 100px;
}


/* TITLE BLOCK */
.welcome-title {
    margin-bottom: 10px;
}

.welcome-title h2 {
    font-size: 48px;
    font-weight: 700;
    margin: 0;
}

.welcome-line {
    width: 60px;
    height: 4px;
    background-color: #4db3ff;
}

/* CARDS (Projects, Work Experience) */
.work-card,
.project-card {
  flex-direction: column;
  background: #141418;
  border: 1px solid #1f1f23;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.work-card:hover,
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.55);
}

/* COMPANY LOGOS */
.company-logo {
  width: 130px;
  height: 130px;
  object-fit: contain;
  margin-bottom: 20px;
}

/* PROJECT IMAGES */
.game-btn img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #222;
  transition: transform 0.3s ease;
}

.game-btn:hover {
  transform: scale(1.03);
}

.badge-icon {
  position: absolute;
  bottom: 8px;
  right: 8px;

  width: 36px;
  height: 36px;

  background: #000;
  border-radius: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;

  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  pointer-events: none;
  transition: transform 0.3s ease;
}

.badge-icon img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

/* PROJECT TITLE */
.project-title {
  text-align: center;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* PROJECT SKILLS BELOW IMAGES */
.project-skills {
  text-align: center;
}

.skill-tag {
  display: inline-block;
  color: #f7f7f7;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  margin: 0 4px;
  box-shadow: 0 2px 6px #00000050;
}
