body {
  font-family: 'Roboto', sans-serif;
  background-color: #fff;
  color: #f0f0f0;
  line-height: 1.6;
  padding: 1rem;
}

header {
  top: 0;
  background: #f0f0f053;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(121, 0, 0, 0.4);
}

.active{
  font-weight: bold;
  color: #a00000;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

header img {
  width: 175px;
  height: auto;
}

header h1 {
  font-family: 'Orbitron', sans-serif;
  color: rgb(0, 0, 0);
  margin: 0;
  font-weight: 700;
  font-size: 1.8rem;
}

nav a {
  color: rgb(0, 0, 0);
  margin-left: 1.5rem;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: rgb(177, 0, 0);
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 90vh;
  background-image: url('cq5dam.thumbnail.cropped.1500.844.jpeg');
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 2rem;
  border-radius: 12px;
}

.hero h2 {
  font-family: 'Orbitron', sans-serif;
  color: #ffffff;
  margin: 0;
  font-weight: 700;
  font-size: 2.5rem;
}

.hero p {
  font-size: 1.5rem;
  color: #ffffff;
  max-width: 700px;
}

.hero a {
  background: #a00000;
  color: #ffffff;
  padding: 0.8rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  margin-top: 1.5rem;
  font-weight: bold;
  transition: background 0.3s ease, color 0.3s ease;
  box-shadow: 0 2px 8px rgba(121, 0, 0, 0.4);
}

.hero a:hover {
  background: rgb(0, 0, 0);
  color: #fff;
  box-shadow: 0 4px 14px rgba(121, 0, 0, 0.4);
}

.section {
  background-color: #f0f0f0;
  border-radius: 8px;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section h3 {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  border-left: 5px solid #a00000;
  padding-left: 1rem;
  font-weight: 700;
  color: #000;
}

.section p {
  color: #000;
}

.section li {
  color: #000;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  }

.portfolio-item {
  background: #f0f0f0;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.portfolio-item:hover {
  transform: scale(1.05);
}

.portfolio-item img {
  width: 100%;
  height: auto;
}

.portfolio-item a {
    display: block;
    text-align: center;
    background: #a00000;
    color: #f0f0f0;
    padding: 0.5rem;
    text-decoration: none;
}

footer {
  text-align: center;
  background: #f0f0f0;
  padding: 1.2rem;
  font-size: 0.9rem;
  color: #000;
  margin-top: 3rem;
}

.hamburger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: #a00000;
}

@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 1rem;
  }

nav.show-menu {
  display: flex;
}

.hamburger {
  display: block;
}

nav a, .download-cv {
  margin: 0.5rem 0;
}

header {
  flex-direction: column;
  align-items: flex-start;
}

.header-left {
  width: 100%;
  justify-content: space-between;
}
}

