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

* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow: hidden;
  height: 100vh;
}

body {
  background-color: #f8f9fa;
  overflow: hidden;
  margin: 0;
  padding: 0;
  height: 100vh;
  width: 100vw;
  position: fixed;
}

.hero-section {
  background-color: #ffffff;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
}

.image-carousel {
  position: relative;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.image-carousel img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 12px;
  transition: opacity 0.8s ease-in-out;
  opacity: 1;
}

.content-wrapper {
  padding: 20px;
}

.greeting {
  font-size: 20px;
  font-weight: 500;
  color: #666;
  margin-bottom: 10px;
}

.name {
  font-size: 55px;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
  line-height: 1.2;
}

.description {
  font-size: 17px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 10px;
  font-weight: 400;
}

.social-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-buttons .btn {
  padding: 8px 18px;
  font-size: 17px;
  font-weight: 500;
  border-radius: 6px;
  background-color: #1a1a1a;
  border: none;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.social-buttons .btn:hover {
  background-color: #333;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
  .name {
    font-size: 40px;
  }

  .description {
    font-size: 15px;
  }

  .greeting {
    font-size: 16px;
  }

  .image-carousel {
    height: 300px;
    margin-bottom: 30px;
  }

  .social-buttons {
    gap: 10px;
  }

  .social-buttons .btn {
    padding: 7px 15px;
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 20px 15px;
  }

  .name {
    font-size: 32px;
  }

  .description {
    font-size: 14px;
  }

  .image-carousel {
    height: 250px;
    margin-bottom: 25px;
  }

  .social-buttons .btn {
    padding: 6px 12px;
    font-size: 12px;
  }
}
