/* Navbar */
.navbar {
  background-color: #333;
  color: white;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar .nav-links {
  list-style-type: none;
  display: flex;
  gap: 20px;
}

.navbar .nav-links li a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}

.navbar .nav-links li a:hover {
  color: yellow;
}

/* Hero Section */
.hero-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #f0f0f0;
}

.hero-section h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.hero-section p {
  font-size: 1.2em;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #333;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.btn:hover {
  background-color: #555;
}

/* About Section */
.about-section {
  display: flex;
  gap: 20px;
  padding: 40px 20px;
  background-color: #fff;
}

.about-image img {
  width: 200px;
  height: auto;
  border-radius: 10px;
}

.about-content {
  flex: 1;
}

/* Skills & Contacts Section (Initially hidden) */
.skills-section,
.contacts-section {
  display: none;
  padding: 20px;
  background-color: #eef;
}

.skills-list,
.contacts-list {
  list-style-type: none;
  padding-left: 0;
  font-size: 1.1em;
  line-height: 1.8em;
}
