body {
  font-family: Tahoma, sans-serif;
  margin: 0;
  background-color: #f4f4f4;
  color: #222;
}

header {
  background-color: #1a1a1a;
  color: white;
  padding: 20px;
  text-align: center;
}

nav {
  background-color: #333;
  overflow: hidden;
}

nav a {
  float: left;
  display: block;
  color: white;
  padding: 14px 20px;
  text-decoration: none;
}

nav a:hover {
  background-color: #575757;
}

.content {
  margin: 20px;
  padding: 20px;
  background-color: white;
}

img {
  max-width: 100%;
  height: auto;
}
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.gallery a {
  text-align: center;
  text-decoration: none;
  color: #222;
  transition: transform 0.3s ease;
}

.gallery img.thumbnail {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.gallery a:hover img.thumbnail {
  transform: scale(1.8);        /* palielinājums galerijas bildēm */
}
.social-links {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.social-links img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.social-links a:hover img {
  transform: scale(1.2);
}
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px;
  background-color: #f9f9f9;
}

.profile-container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.left-column {
  width: 35%;
}

.main-photo {
  width: 100%;
  border-radius: 8px;
}

.thumbnail-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.thumb {
  width: 22%;
  border-radius: 6px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.thumb:hover {
  transform: scale(2.5);
  z-index: 10;
  position: relative;
}

.right-column {
  width: 60%;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.social-links a:hover img {
  transform: scale(1.2);
}

#mainHeader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #1a1a1a;
  display: flex;
  justify-content: space-between; /* sadala navigāciju un logo */
  align-items: center;
  padding: 20px 40px;
  z-index: 1000;
}

.logo-container {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 1001;
}

.logo {
  height: 200px;
}

#mainHeader.shrink .logo {
  height: 100px;
}

