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

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

body {
  background-color: #f9fafb;
  color: #111;
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 60px;
  border-bottom: 1px solid #e5e7eb;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dot {
  width: 15px;
  height: 15px;
  background-color: #fbbf24;
  border-radius: 50%;
}

.role {
  font-size: 14px;
  font-weight: 400;
  color: #6b7280;
  margin-left: 8px;
}

.nav-right a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
  margin-left: 25px;
  transition: color 0.3s;
}

.nav-right a:hover {
  color: #2563eb;
}

/* Hero Section */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  gap: 80px;
  padding: 0 60px;
}

.profile-img img {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(100%);
}

.intro-text h1 {
  font-size: 70px;
  font-weight: 800;
  margin-bottom: 10px;
}

.intro-text h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.intro-text p {
  color: #4b5563;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 30px;
  max-width: 400px;
}

/* Buttons */
.buttons {
  display: flex;
  gap: 20px;
}

button {
  border: none;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  font-weight: 700;
  cursor: pointer;
  font-size: 16px;
  color: #111;
  transition: transform 0.2s ease;
}

button:hover {
  transform: scale(1.05);
}

.resume {
  background-color: #fbbf24;
}

.projects {
  background-color: #f87171;
}

.contact {
  background-color: #67e8f9;
}
body {
  background: #f5f5f5;
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
}
.container {
  max-width: 420px;
  margin: 85px auto 0 auto;
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 6px 42px rgba(44, 44, 44, 0.13);
  padding: 40px 30px 32px 30px;
  text-align: center;
}
.avatar-contact {
  margin: -70px auto 28px auto;
  width: 124px;
  height: 124px;
  border-radius: 50%;
  background: #71dbdb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.6em;
  color: #fff;
  box-shadow: 0 6px 20px rgba(44,44,44,0.13);
  border: 7px solid #fff;
}
.contact-title {
  font-size: 2.25em;
  font-weight: 800;
  color: #232323;
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}
.contact-desc {
  color: #222;
  font-size: 1.09em;
  margin-bottom: 33px;
}
form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 22px;
}
input, textarea {
  font-family: inherit;
  font-size: 1.08em;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1.2px solid #d1d9df;
  outline: none;
  resize: none;
  background: #f8fbfa;
}
input:focus, textarea:focus {
  border-color: #71dbdb;
}
textarea { min-height: 70px; }
button {
  background: #f4b400;
  color: #232323;
  font-size: 1.12em;
  font-weight: bold;
  padding: 14px 0;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 2px 8px #f4b40036;
  transition: background 0.16s, color 0.16s;
}
button:hover {
  background: #f75646;
  color: #fff;
}
.contact-info {
  margin: 12px 0 0 0;
  color: #232323;
  font-size: 1.13em;
}
.socials {
  margin-top: 8px;
}
.social-link {
  display: inline-block;
  margin: 0 11px;
  color: #f75646;
  font-weight: bold;
  font-size: 1.5em;
  transition: color 0.16s;
  text-decoration: none;
}
.social-link:hover {
  color: #f4b400;
}
@media (max-width: 550px) {
  .container {
      margin: 30px 4vw 0 4vw;
      padding: 25px 4vw 22px 4vw;
  }
  .avatar-contact {
      width: 78px;
      height: 78px;
      font-size: 2.2em;
  }
  .contact-title {
      font-size: 1.3em;
  }
}