/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #d4b08c; 
  color: #2e1f14;
  line-height: 1.6;
}

/* Butoni Kthehu mbrapa */
.back-btn {
  position: fixed;
  top: 20px;
  left: 20px;
  background-color: #ca8e52; 
  color: #fff;
  border: none;
  outline: none;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
  text-decoration: none;
  z-index: 1000;
}
.back-btn:hover {
  background-color: #b2733f;
  transform: translateX(-3px);
}

/* Kontejneri i CV-së */
.cv-container {
  display: flex;
  width: 90%;
  max-width: 1100px;
  margin: 80px auto;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Sidebar majtas */
.sidebar {
  width: 28%;
  background: #8c6b4f;
  color: #fff;
  padding: 30px 20px;
}
.sidebar h2 {
  margin: 20px 0 10px;
  font-size: 16px;
  border-bottom: 1px solid #fff;
  padding-bottom: 5px;
}
.sidebar ul {
  list-style: none;
  margin-bottom: 20px;
}
.sidebar ul li {
  margin: 8px 0;
}

/* Përmbajtja kryesore djathtas */
.main-content {
  width: 72%;
  padding: 30px;
}
.main-content h1 {
  font-size: 28px;
  margin-bottom: 5px;
  color: #3e2c23;
}
.main-content h3 {
  font-size: 18px;
  color: #a97c50;
  margin-bottom: 15px;
}
.main-content section {
  margin-bottom: 30px;
}
.main-content h2 {
  color: #3e2c23;
  margin-bottom: 15px;
  border-bottom: 2px solid #a97c50;
  display: inline-block;
  padding-bottom: 4px;
}

/* Seksioni i fotove të librave */
.photo-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}
.photo-section img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  border: 2px solid #3e2c23;
  object-fit: contain;
  transition: transform 0.3s, box-shadow 0.3s;
}
.photo-section img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Librat dhe arsimimi */
.experience article {
  margin-bottom: 20px;
}
.experience h3 {
  color: #a97c50;
  margin-bottom: 8px;
}

/* Teksti i profilit */
.profile p {
  margin-bottom: 15px;
  text-align: justify;
}

@media (max-width: 900px) {
  .cv-container {
    flex-direction: column;
    margin: 50px auto;
  }
  .sidebar, .main-content {
    width: 100%;
    padding: 20px;
  }
  .photo-section {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  .photo-section img {
    width: 45%;
    margin-bottom: 15px;
  }
}

@media (max-width: 600px) {
  .cv-container {
    margin: 30px auto;
  }
  .photo-section img {
    width: 90%;
  }
  .main-content h1 {
    font-size: 24px;
  }
  .main-content h3 {
    font-size: 16px;
  }
  .sidebar h2 {
    font-size: 14px;
  }
}