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);
}

.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: 
  linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
  url('Oda-shqiptare.jpg');
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 2rem;
  border-radius: 12px;
}

.hero h2 {
  font-family: 'Orbitron', sans-serif;
  color: #a00000;
  margin: 0;
  font-weight: 700;
  font-size: 2.5rem;
}

.hero p {
  font-size: 1.5rem;
  color: #a00000;
  max-width: 700px;
}

.hero a {
  background: #a00000;
  color: #000000;
  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;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    grid-auto-rows: 180px;
    gap: 12px;
    padding: 20px;
}

.photo-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

/* Bigger square */
.photo-grid img.big {
    grid-column: span 2;
    grid-row: span 2;
}

/* Tall photo */
.photo-grid img.tall {
    grid-row: span 2;
}

/* Wide photo */
.photo-grid img.wide {
    grid-column: span 2;
}

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;
}
}

