body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, sans-serif;
  background: linear-gradient(135deg, #0f0f0f, #1e1e1e);
  color: #fff;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px;
  min-height: 100vh;
}

.content {
  max-width: 600px;
}

h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

h3 {
  font-size: 24px;
  color: #b0b0b0;
  margin-bottom: 20px;
}

p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.buttons {
  display: flex;
  gap: 20px;
}

.btn {
  padding: 14px 28px;
  background: #ff6b00;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn:hover {
  background: #ff8533;
  transform: translateY(-3px);
}

.resume-btn {
  background: transparent;
  border: 2px solid #ff6b00;
}

.resume-btn:hover {
  background: #ff6b00;
}

.image img {
  width: 350px;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(255, 107, 0, 0.4);
}

.hero-image {
  max-width: 600px;
  margin-top: 50px;
}

.hero-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.hero-image img:hover {
  transform: scale(1.05);
}

/* Шапка */
.main-header {
  width: 100%;
  padding: 20px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
}

.nav-bar ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-bar a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}

.nav-bar a:hover {
  color: #ffcc00;
}

/* Герой-секция */


/* Футер */
.main-footer {
  background: rgba(0, 0, 0, 0.8);
  padding: 30px;
  text-align: center;
  color: #ccc;
  margin-top: 60px;
}

.main-footer p {
  margin: 5px 0;
}

.socials {
  margin-top: 10px;
}

.socials a {
  color: #ffcc00;
  margin: 0 10px;
  text-decoration: none;
  transition: color 0.3s;
}

.socials a:hover {
  color: #ffaa00;
}
