@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; /* světle béžové pozadí jako původní dojem */
    color: #222;
    line-height: 1.6;
}

/* HEADER */

.site-header {
    background: #000; /* černý top jako původně */
    color: #fff;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

#logo h1 span {
    font-weight: 700;
    color: #f5d7a1; /* jemný zlatavý akcent místo modré */
}

#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 CONTENT */

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

/* INTRO SECTION */

.intro h1 {
    margin-top: 0;
    font-size: 26px;
}

.intro-wrapper {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.avatar {
    width: 160px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.text-link {
    color: #c28b2c;
    font-weight: 600;
    text-decoration: none;
}

.text-link:hover {
    text-decoration: underline;
}

/* SKILLS */

.skills h2 {
    margin-top: 40px;
    font-size: 22px;
}

.skill-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.skill-list li {
    background: #fdf7ec;
    border-radius: 6px;
    padding: 10px 12px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

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

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

.button-row {
    margin-top: 10px;
}

/* FOOTER */

footer {
    text-align: center;
    padding: 15px 10px;
    background: #000;
    color: #fff;
    font-size: 13px;
}
