/* ======= ŠTÝLY PRE GAUČE A STOLIČKY, S.R.O. ======= */

body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5efe6; /* jemná krémová farba pozadia */
    color: #333;
}

header {
    background-color: #4b382a;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
}

.logo h1 {
    font-size: 1.4em;
    margin: 0;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #d1a571;
}

.hero {
    background-color: #f5efe6; /* krémové pozadie */
    background-image: none;
    color: #4b382a;
    text-align: center;
    padding: 120px 20px;
}

.hero h2 {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: #4b382a;
}

.hero p {
    max-width: 700px;
    margin: 0 auto 25px auto;
    font-size: 1.1em;
    color: #5a4638;
}

.btn {
    background-color: #d1a571;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s;
}

.btn:hover {
    background-color: #b9874f;
    transform: scale(1.05);
}

.about {
    padding: 60px 15%;
    text-align: center;
}

.about h3 {
    color: #4b382a;
    font-size: 2em;
    margin-bottom: 20px;
}

.about p {
    line-height: 1.6em;
    font-size: 1.1em;
}

footer {
    background-color: #4b382a;
    color: white;
    text-align: center;
    padding: 15px 0;
    font-size: 0.9em;
}
