@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #f2e9dd;
    color: #222;
    line-height: 1.6;
}

/* HEADER */
.site-header {
    background: #000;
    color: #fff;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#logo h1 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
}

#logo h1 span {
    color: #f5d7a1;
}

#logo small {
    display: block;
    font-size: 13px;
    opacity: 0.8;
    margin-top: 4px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

nav li.active a {
    border-bottom: 2px solid #f5d7a1;
    padding-bottom: 3px;
}

.contact-button {
    padding: 8px 16px;
    border-radius: 4px;
    background: #f5d7a1;
    color: #000;
    font-weight: 600;
}

/* MAIN */
main {
    max-width: 1000px;
    margin: 40px auto;
    padding: 40px 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

/* HERO */
.skills-hero h1 {
    margin: 0;
    font-size: 28px;
}

.skills-hero p {
    margin-top: 6px;
    color: #444;
}

/* GRID */
.skills-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

/* SKILL CARDS */
.skill-card {
    background: #fdf7ec;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}

.skill-card h2 {
    margin-top: 0;
    font-size: 20px;
}

/* SKILL ROWS */
.skill-row {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
}

.skill-name {
    width: 140px;
    font-weight: 600;
    color: #222;
}

.skill-meta {
    flex: 1;
    color: #444;
    font-size: 14px;
}

/* MICRO GRAPH */
.skill-graph {
    width: 140px;
    height: 6px;
    background: #e6e6e6;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 6px;
}

.skill-graph-fill {
    height: 100%;
    background: #c28b2c; /* zlatavá barva stránky */
    border-radius: 4px;
}

/* BADGES */
.skill-badges {
    margin-top: 14px;
}

.badge {
    display: inline-block;
    background: #f5d7a1;
    padding: 6px 10px;
    border-radius: 6px;
    margin: 4px;
    font-size: 13px;
    font-weight: 600;
}

/* ASIDE */
.aside-card {
    background: #fdf7ec;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.aside-card h3 {
    margin-top: 0;
}

.primary-button {
    display: inline-block;
    padding: 8px 16px;
    background: #c28b2c;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.primary-button:hover {
    background: #a8741f;
}

.cta-row {
    margin-top: 14px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.mini-note {
    margin-top: 10px;
    font-size: 14px;
    color: #333;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 15px 10px;
    background: #000;
    color: #fff;
    font-size: 13px;
}
/* Úpravy pro mobily (zařízení do šířky 768px) */
@media (max-width: 768px) {
  
  /* Navigace se naskládá pod sebe */
  .site-header nav ul {
    flex-direction: column;
    align-items: center;
    padding: 0;
  }

  .site-header nav li {
    margin: 10px 0;
  }

 