/* Základní reset a písmo */
body { 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
    margin: 0; 
    padding: 0; 
    background-color: #f4f4f4; 
    color: #333; 
    line-height: 1.6;
}

/* Hlavička a patička */
.header, .footer { 
    background-color: #2c3e50; 
    color: white; 
    padding: 20px 0; 
    text-align: center; 
}
.header h1 {
    margin: 0;
    font-size: 2.5em;
}
a {
	color: white;
	text-decoration: none;
}
.footer p {
    margin: 0;
    font-size: 0.8em;
}

/* Kontejner obsahu */
.container { 
    width: 90%; 
    max-width: 1000px;
    margin: auto; 
    overflow: hidden; 
    padding: 20px 0; 
}

/* Obecné sekce */
.section { 
    padding: 40px 20px; 
    margin-bottom: 20px;
    border-radius: 8px;
    background: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    text-align: center; 
}
.section h2 {
    color: #e74c3c;
    margin-bottom: 25px;
    border-bottom: 2px solid #f4f4f4;
    padding-bottom: 10px;
}

/* Sekce s výzvou k akci (CTA) */
.cta-section { 
    background-color: #e74c3c; 
    color: white; 
    padding: 50px; 
    margin-top: 30px; 
    box-shadow: 0 6px 15px rgba(231, 76, 60, 0.4);
}
.cta-section h2 { 
    color: white; 
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
}
.cta-section .lead {
    font-size: 1.2em;
    font-weight: bold;
}

/* Seznam vizí */
.vision ul {
    list-style-type: none;
    padding: 0;
    max-width: 600px;
    margin: 20px auto;
    text-align: left;
}
.vision ul li {
    background: #ecf0f1;
    margin-bottom: 10px;
    padding: 12px;
    border-left: 5px solid #2ecc71;
    border-radius: 3px;
    font-size: 1.1em;
}

/* Obrázky montáží */
.montage-images {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}
.montage-images img { 
    max-width: 100%; 
    width: 300px; /* Pevná šířka pro konzistentní vzhled */
    height: auto; 
    border-radius: 8px; 
    transition: transform 0.3s ease;
}
.montage-images img:hover {
    transform: scale(1.05);
}

/* Styly kontaktního formuláře */
.contact-form-wrapper { 
    max-width: 500px; 
    margin: 20px auto; 
    padding: 25px; 
    background: #fcfcfc; 
    border-radius: 5px; 
    text-align: left; 
    border: 1px solid #ddd;
}
.contact-form-wrapper label {
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: bold;
}
.contact-form-wrapper input[type="email"], 
.contact-form-wrapper input[type="text"], 
.contact-form-wrapper textarea { 
    width: 100%; 
    padding: 12px; 
    margin-bottom: 15px; 
    border: 1px solid #ccc; 
    border-radius: 4px; 
    box-sizing: border-box; 
    transition: border-color 0.3s;
}
.contact-form-wrapper input:focus, .contact-form-wrapper textarea:focus {
    border-color: #e74c3c;
    outline: none;
}
.contact-form-wrapper button { 
    background-color: #2ecc71; 
    color: white; 
    padding: 12px 20px; 
    border: none; 
    border-radius: 4px; 
    cursor: pointer;
    font-size: 1.1em;
    width: 100%;
    transition: background-color 0.3s;
}
.contact-form-wrapper button:hover {
    background-color: #27ae60;
}
.direct-contact {
    margin-top: 20px;
    font-size: 1.1em;
}