body {
  margin: 0;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  background: linear-gradient(135deg, #ffffff, #021945);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 60px;
  background-color: #0b2a5b;
  height: 145px;
  color: white;
}

.Logo img {
  height: 90px;
  width: auto;
  margin-left: -30px;
  margin-top: -25px;
}


.Home {
  display: inline-block;
  padding: 8px 15px;
  background-color: #eaeae6;
  border-radius: 8px;
  text-decoration: none;
  color: #0b2a5b;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  margin-bottom: 35px;
}

.Home:hover {
  background-color: #dcdcd7;
  color: #d4800a;
  text-decoration: none;
}

.Home.active {
  background-color: #fff;
  color: 021945;
}

.mini_header{
  height: 5px;
  position: relative;              /* povinné pre ::after */
  width: 100%;
  background-color: #0b2a5b;        /* nová modrá */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 10px;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}
.mini_header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg,transparent,#dd8914,#ffab37,#d4800a,transparent);
  box-shadow:
    0 0 6px rgba(96, 165, 250, 0.8),
    0 0 12px rgba(59, 130, 246, 0.6);
  pointer-events: none;
  z-index: 1;
}
@keyframes ledGlow {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}




/* ===== CONTENT ===== */
.profile-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
}

.profile-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  width: 100%;
  max-width: 600px;
  border: 2px solid #e9d5ff;
  box-shadow: 0 10px 28px rgba(147, 51, 234, 0.15);
}

.profile-img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #0b2a5b;
  margin-bottom: 20px;
}

h1 {
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  color: #0b2a5b;
}

.title {
  color: #0b2a5b;
  font-size: 15px;
  margin-bottom: 20px;
}

.bio, .contact {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.5;
  margin: 20px 0 25px;
}

a {
  color: #0b2a5b;
  font-weight: 600;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ===== FOOTER ===== */
.main-footer {
  background-color: #0b2a5b;
  color: white;
  padding: 40px 0 20px;
  margin-top: auto;
}

.footer-content {
  max-width: 900px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding: 0 20px;
}

.footer-section h4 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin: 6px 0;
  font-size: 15px;
}

.footer-section a {
  color: #ffeaff;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-section a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  opacity: 0.8;
}
.mini_logo {
  height: 1.5em; 
  width: auto; 
  margin-right: 5px;
}
@media (max-width: 992px) {
  header {
    padding: 15px 30px;
    height: auto;
  }

  .Logo img {
    margin: 0;
    height: 70px;
  }

  .Home {
    margin-bottom: 0;
  }

  .profile-card {
    padding: 30px;
  }
}
@media (max-width: 768px) {
  header {
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    text-align: center;
  }
  .Logo{
    justify-content: center;
    margin-top: 10px;
  }
  .Logo img{
    height: 80px;
    margin: 0;
  }
  .header-right {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .profile-wrapper {
    padding: 40px 15px;
  }

  .profile-card {
    max-width: 100%;
    padding: 30px 20px;
  }

  h1 {
    font-size: 24px;
  }

  .bio,
  .contact {
    font-size: 14px;
  }

  .footer-content {
    text-align: center;
  }
}
@media (max-width: 480px) {
  .profile-img {
    width: 130px;
    height: 130px;
  }

  h1 {
    font-size: 22px;
  }

  .title {
    font-size: 14px;
  }

  .bio,
  .contact {
    font-size: 13px;
  }

  .Home {
    padding: 6px 20px;
    font-size: 14px;
  }

  .footer-bottom {
    font-size: 13px;
  }
}
