@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #f5f5f5;
  color: #1a1a1a;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== SECTION 1: HERO / ANIMATED COMPONENT ===== */
#hero {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #f5f5f5;
  overflow: hidden;
}



/* ===== SECTION 2: VALUES ===== */
#values {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 60px;
}

.values-mission {
  font-size: 1.05rem;
  color: #aaa;
  margin-bottom: 80px;
  max-width: 550px;
  line-height: 1.7;
  font-weight: 400;
}

.value-block {
  margin-bottom: 70px;
}

.value-block h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.value-block p {
  font-size: 1rem;
  color: #999;
  max-width: 600px;
  line-height: 1.8;
  font-weight: 400;
}

/* ===== SECTION 3: WE HELP WITH ===== */
#projects {
  width: 100%;
  padding: 24px 40px 120px;
}

#projects > h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 100px;
  color: #1a1a1a;
}

.project {
  margin-bottom: 120px;
}

.project:last-child {
  margin-bottom: 0;
}

.project-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
}

.project h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: #1a1a1a;
}

.project-screenshots {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.project-screenshots::-webkit-scrollbar {
  height: 4px;
}

.project-screenshots::-webkit-scrollbar-track {
  background: #e0e0e0;
  border-radius: 2px;
}

.project-screenshots::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 2px;
}

.project-screenshots img {
  height: 500px;
  width: auto;
  border-radius: 20px;
  scroll-snap-align: start;
  flex-shrink: 0;
  object-fit: cover;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.placeholder-screen {
  height: 500px;
  width: 230px;
  border-radius: 20px;
  scroll-snap-align: start;
  flex-shrink: 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  position: relative;
}

.placeholder-screen::after {
  content: '';
  position: absolute;
  inset: -40px;
  background: inherit;
  filter: blur(40px) saturate(1.4);
}

.project-link,
.project-coming-soon {
  display: inline-block;
  font-size: 0.8rem;
  color: #bbb;
  letter-spacing: 0.12em;
  font-weight: 400;
  text-transform: uppercase;
}

.project-link {
  text-decoration: none;
  transition: color 0.2s;
}

.project-link:hover {
  color: #888;
}

/* ===== SECTION 4: FOOTER ===== */
#footer {
  width: 100%;
  height: 55vh;
  position: relative;
  overflow: hidden;
  background: #f5f5f5;
}

.footer-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

.footer-tagline {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 300;
  color: #1a1a1a;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}

.footer-email-btn {
  display: inline-block;
  padding: 16px 48px;
  border: 1.5px solid #1a1a1a;
  border-radius: 100px;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: inherit;
  letter-spacing: 0.06em;
  z-index: 1;
  transition: background 0.3s, color 0.3s;
}

.footer-email-btn:hover {
  background: #1a1a1a;
  color: #f5f5f5;
}

.footer-logo {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 70vh;
  font-weight: 800;
  color: #ececec;
  line-height: 0.8;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  #values {
    padding: 80px 24px;
  }

  .value-block {
    margin-bottom: 50px;
  }

  #projects {
    padding: 24px 24px 80px;
  }

  .project-screenshots img {
    height: 350px;
  }

  .placeholder-screen {
    height: 350px;
    width: 161px;
    border-radius: 14px;
  }

}
