/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #1a1a1d;
  color: #fff;
  text-align: center;
  overflow-x: hidden;
}

.social-links {
  position: fixed;
  top: 40%;
  left: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.social-links a {
  color: #bfa6ad;
  font-size: 20px;
  transition: 0.3s;
}
.social-links a:hover {
  color: #fff;
}
.icon-thm {
  width: 20px;
  height: 20px;
  filter: invert(100%); 
  transition: 0.3s;
}

.icon-thm:hover {
  filter: invert(100%);
}


.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 600;
}

.subtitle {
  font-size: 1rem;
  color: #c9d1d9;
  margin-top: 5px;
}


.buttons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.btn-outline {
  border: 1px solid #bfa6ad;
  padding: 10px 20px;
  color: #bfa6ad;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #bfa6ad;
  color: #1a1a1d;
}

.btn-fill {
  background: #bfa6ad;
  padding: 10px 20px;
  color: #1a1a1d;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-fill:hover {
  background: #fff;
  color: #1a1a1d;
}

.profile {
  margin-top: 40px;
  background: linear-gradient(180deg, #ccc, #1a1a1d);
  border-radius: 150px 150px 0 0;
  width: 280px;
  height: 380px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.profile img {
  width: 100%;
  border-radius: 0;
}

.scroll-text {
  position: fixed;
  right: -185px;
  bottom: 40%;
  transform: rotate(90deg);
  font-size: 0.9rem;
  color: #bfa6ad;
  letter-spacing: 2px;
}

/* ========================= */
/* Mobile Responsive Layout  */
/* ========================= */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .subtitle {
    font-size: 0.9rem;
  }

  .profile {
    width: 220px;
    height: 300px;
  }

  .buttons {
    flex-direction: column;
    gap: 10px;
  }

  .social-links {
    position: fixed;
    bottom: 20px;
    top: auto;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: row;
    gap: 25px;
  }

  .scroll-text {
    display: none; /* Hide on mobile */
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .subtitle {
    font-size: 0.8rem;
  }

  .profile {
    width: 180px;
    height: 240px;
  }

  .buttons a {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}
