* {margin:0;padding:0;box-sizing:border-box;}

body {
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
  min-height: 100vh;
  background: url("./imgs/bckground.png") center center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.wrapper {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 40px 20px;
  text-align: center;
  background: rgba(0,0,0,0.65);
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.6);
}

/* Avatar obrázek */
.avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
}
.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card {
  background: rgba(255,255,255,0.08);
  padding: 20px;
  border-radius: 10px;
  margin: 20px 0;
  text-align: left;
}
.card h1 {font-size: 1.6rem; margin-bottom: 10px; text-align:center;}
.card h2 {font-size: 1.2rem; font-weight:400; margin-bottom:15px; text-align:center;}
.card p {margin: 10px 0; line-height: 1.6;}

.services {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 20px 0;
  gap: 15px;
}
.services div {
  flex: 1;
  min-width: 150px;
  text-align: center;
  background: rgba(255,255,255,0.08);
  padding: 10px;
  border-radius: 8px;
}

.buttons {
  display: flex;
  justify-content: space-between;  
  flex-wrap: wrap;                
  gap: 15px;                      
  margin-top: 25px;
}

.btn {
  flex: 1 1 22%;
  padding: 12px 28px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1); 
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
  transition: all 0.45s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
  display: inline-block;
  text-align: center;  
  margin: 5px 0;  
}

@media (max-width: 768px) {
  .btn {
    flex: 1 1 48%; 
  }
}

@media (max-width: 500px) {
  .btn {
    flex: 1 1 100%; 
  }
}


.btn:hover {
  background: rgba(255, 255, 255, 0.3); /* světlejší při hoveru */
  transform: translateY(-6px) scale(1.1); /* větší animace */
  box-shadow: 0 12px 28px rgba(0,0,0,0.6), 
              0 0 18px rgba(255,255,255,0.25); /* přidán jemný glow */
}

.logo {
  max-width: 180px;   /* zmenší logo */
}




/* Responzivita */
@media (max-width: 700px) {
  .card {text-align: center;}
  .btn {width: 100%;}
}


.card.notice {
  text-align: center;
  background: rgba(119, 117, 117, 0.144); /* jemně červený podklad, můžeš změnit */
  border: 2px dashed rgba(58, 58, 58, 0.4);       /* nebo solid, pokud nechceš čárkovaný */
}

.card.notice h2 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: bold;
  color: #ffffff;
}
