@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Source+Sans+Pro:wght@400;600;700&family=IBM+Plex+Sans:wght@400;600;700&family=Montserrat:wght@400;600;700&display=swap');

.landing-bg {
  background: url('Assets/Teck Picture.png') center center/cover no-repeat fixed;
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}
.overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(20, 30, 50, 0.7);
  z-index: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
}
.main-content {
  display: flex;
  align-items: stretch;
  justify-content: center;
  height: calc(100vh - 80px - 20px);
  position: relative;
  z-index: 1;
  padding-top: 80px;
}
.intro {
  flex: 2;
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 15%;
  padding-bottom: 0;
  position: relative;
  height: 100%;
}
.intro h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin: 0 0 20px 0;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.intro p {
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0 0 30px 0;
  color: #b3d8ff;
}
#typewriter {
  min-height: 2.5rem;
  height: 2.5rem;
  display: inline-block;
  overflow: hidden;
}

.summary-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
  color: #fff;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 100px;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
  align-self: center;
}

.summary-btn:hover {
  background: linear-gradient(135deg, #ff5252, #ff7043);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6);
}

.summary-btn i {
  font-size: 1.2rem;
}

.contact-card {
  flex: 1;
  background: rgba(24, 28, 38, 0.92);
  border-radius: 0;
  padding: 48px 30px 48px 30px;
  margin-left: 60px;
  margin-top: -80px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  min-width: 320px;
  max-width: 360px;
  height: 100vh;
  justify-content: center;
  padding-top: 92px;
  text-align: center;
}
.contact-card img {
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
  margin-bottom: 28px;
  background: #fff;
  align-self: center;
}
.contact-card .name {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #4da3ff;
  text-align: center;
  width: 100%;
  padding-left: 0;
}
.contact-card .desc-tags {
  font-size: 1.1rem;
  color: #b3d8ff;
  margin-bottom: 22px;
  text-align: center;
  width: 100%;
  padding-left: 0;
}
.contact-card .socials {
  display: flex;
  gap: 18px;
  margin: 18px 0 28px 0;
  align-self: center;
}
.contact-card .socials a {
  color: #4da3ff;
  font-size: 1.5rem;
  transition: color 0.2s;
}
.contact-card .socials a:hover {
  color: #fff;
}
.contact-card .resume-btn {
  background: #1a2a4d;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 0;
  transition: all 0.3s ease;
  align-self: center;
  box-shadow: 0 4px 15px rgba(26, 42, 77, 0.3);
}
.contact-card .resume-btn:hover {
  background: #2c3e50;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 42, 77, 0.4);
}

@media (max-width: 1250px) {
  .main-content {
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 80px;
    height: auto;
    align-items: center;
  }
  .intro {
    padding-top: 120px;
    padding-bottom: 40px;
    justify-content: flex-start;
    flex: 1;
  }
  .contact-card {
    display: none !important;
  }
}

.logo-home-btn img {
  height: 80px;
  width: auto;
}

.nav-menu {
  padding-right: 30px;
} 