* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #0b1220;
  color: #e5e7eb;
  line-height: 1.5;
}

/* ОБГОРТКА */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}

/* NAV */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

/* HERO */
.hero {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 100px;
}

.hero img {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #38bdf8;
}

.hero h1 {
  font-size: 38px;
  margin-bottom: 5px;
}

.hero p {
  color: #94a3b8;
  margin-top: 6px;
}

/* BUTTON */
.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 18px;
  background: #38bdf8;
  color: #0b1220;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.2s;
}

.btn:hover {
  opacity: 0.85;
}

/* СЕКЦІЇ */
section {
  margin-top: 120px;
}

h2 {
  font-size: 26px;
  margin-bottom: 25px;
}

/* SKILLS */
.skills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skill {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 14px;
}

/* PROJECTS */
.projects {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.project {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s;
}

.project:hover {
  transform: translateY(-6px);
  border-color: #38bdf8;
}

/* 🔥 ФОТО В ПРОЄКТАХ (ВАЖЛИВО ВИПРАВЛЕНЕ) */
.project img {
  width: 100%;
  height: 180px;
  object-fit: contain;   /* щоб НЕ обрізало */
  background: #0b1220;
  padding: 10px;
}

/* КОНТЕНТ */
.project-content {
  padding: 15px;
}

.project h3 {
  margin-bottom: 8px;
}

.project p {
  color: #94a3b8;
  font-size: 14px;
}

/* BUTTON */
.project button {
  margin-top: 12px;
  padding: 8px 12px;
  border: none;
  border-radius: 6px;
  background: #38bdf8;
  color: #0b1220;
  cursor: pointer;
  font-weight: bold;
}

.project button:hover {
  opacity: 0.85;
}

/* CONTACTS (ВИПРАВЛЕНО + ЦЕНТРУВАННЯ) */
.contacts {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.contact-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 30px;
  border-radius: 12px;
  min-width: 240px;
  text-align: center;
  transition: 0.3s;
}

.contact-card:hover {
  transform: translateY(-5px);
  border-color: #38bdf8;
}

.contact-card a {
  color: #38bdf8;
  text-decoration: none;
}

/* FOOTER */
footer {
  text-align: center;
  margin-top: 80px;
  padding: 20px;
  color: #94a3b8;
}
