/* Styl pro hero sekci na kontaktní stránce */
.contact-hero {
    background: url('../images/contact_hero.webp') no-repeat center center/cover;
    padding: 4rem 1rem;
    text-align: center;
    color: #fff;
    font-family: 'Roboto', sans-serif;
}

.contact-hero h1 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.2rem;
    color: #ffffff;
}

/* Styl pro sekci s formulářem */
.contact-form-section {
    padding: 3rem 1rem;
    background-color: #fff;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-family: 'Roboto', sans-serif;
}

.contact-form-section h2 {
    text-align: center;
    font-size: 2rem;
    color: #333;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.5rem;
}

input, textarea {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

input:focus, textarea:focus {
    border-color: #ff2800;
    outline: none;
}

.btn-submit {
    display: block;
    width: 100%;
    padding: 0.8rem;
    background-color: #ff2800;
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #d61f00;
}

/* Sekce s kontaktními informacemi */
.contact-info {
    padding: 3rem 1rem;
    text-align: center;
    font-family: 'Roboto', sans-serif;
}

.contact-info h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 1rem;
    color: #555;
    margin: 0.5rem 0;
}
