body {
    background: #0d0d0d;
    font-family: Arial, sans-serif;
    color: white;
}

.languages {
    width: 100%;
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 20px;
}

.languages h2 {
    font-size: 2.4rem;
    margin-bottom: 30px;
}

.lang-container {
    background: #111;
    padding: 30px;
    border-radius: 14px;
    display: flex;
    justify-content: space-between;
    gap: 25px;
    flex-wrap: wrap;
}

.lang-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #0f0f0f;
    padding: 20px 25px;
    border-radius: 14px;
    flex: 1;
    min-width: 250px;
    border: 1px solid #222;
}

.lang-card img {
    width: 50px;
    height: 50px;
}

.lang-card h3 {
    font-size: 1.1rem;
    margin: 0;
}

.lang-card p {
    font-size: 0.9rem;
    opacity: 0.7;
    margin: 0;
}









/* O MNE – BLOG STRÁNKA */
.about-container{
    width:min(900px, 90%);
    margin:40px auto;
}

.about-card{
    background:#111827;
    padding:40px;
    border-radius:16px;
    border:1px solid rgba(255,255,255,0.1);
    box-shadow:0 0 20px rgba(0,0,0,0.3);
}

.profile-img{
    width:180px;
    height:180px;
    border-radius:50%;
    display:block;
    margin:0 auto 20px auto;
    object-fit:cover;
    border:4px solid #1f2937;
}

h1{
    text-align:center;
}

.name-highlight{
    color:#7abaff;
}

.intro{
    text-align:center;
    margin-bottom:30px;
    font-size:16px;
    line-height:1.6;
}

.interests{
    list-style:none;
    padding:0;
    margin-bottom:30px;
}

.interests li{
    font-size:15px;
    padding:6px 0;
}

.social-links{
    margin-top:40px;
    display:flex;
    justify-content:center;
    gap:20px;
}

.social-links a{
    color:#7abaff;
    text-decoration:none;
    font-weight:bold;
}

.social-links a:hover{
    text-decoration:underline;
}













body{
    margin:0;
    font-family: Arial, sans-serif;
    background:#0f1522;
    color:white;
}

/* NAVIGACE */
.nav{
    width:100%;
    background:#111827;
    border-bottom:1px solid rgba(255,255,255,0.1);
    padding:10px 0;
}

.nav-content{
    width:min(1200px, 95%);
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.nav-left .logo{
    font-size:30px;
    font-weight:bold;
    color:#7abaff;
    text-decoration:none;
}

.nav-right{
    display:flex;
    gap:20px;
}

.nav-right a{
    color:#c8d2e0;
    text-decoration:none;
    font-size:20px;
}

.nav-right a:hover{
    color:white;
}

/* MAIN */
main{
    padding:40px;
}

/* FOOTER */
.footer{
    width:100%;
    padding:14px 20px;
    background:#111827;
    border-top:1px solid rgba(255,255,255,0.1);
    text-align:center;
    font-size:14px;
    color:#c8d2e0;
    margin-top:40px;
}

.links{
    margin-top:4px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
}

.link{
    display:flex;
    align-items:center;
    gap:6px;
    text-decoration:none;
    color:#7abaff;
}

.icon{
    width:20px;
    height:20px;
}

.link:hover{
    text-decoration:underline;
}