/* Reset a základní styly */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #F9F9F9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typografie */
h1, h2, h3 {
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    color: #B7410E;
}

h3 {
    font-size: 1.5rem;
    color: #333333;
}

p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* Hero sekce */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #F9F9F9 0%, #E5E5E5 100%);
    padding: 80px 0;
    position: relative;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 500px;
}

.hero-title {
    color: #333333;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #666666;
    margin-bottom: 2rem;
    font-weight: 400;
}

.cta-button {
    display: inline-block;
    background-color: #B7410E;
    color: white;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(183, 65, 14, 0.3);
}

.cta-button:hover {
    background-color: #9A3508;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(183, 65, 14, 0.4);
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.scroll-arrow {
    display: block;
    animation: bounce 2s infinite;
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
}

.scroll-arrow:hover {
    opacity: 0.7;
    transform: scale(1.1);
}

.scroll-arrow svg {
    width: 32px;
    height: 32px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Služby */
.services {
    padding: 100px 0;
    background-color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-image {
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 8px;
}

.service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    color: #B7410E;
    margin-bottom: 15px;
}

.service-card p {
    color: #666666;
    font-size: 1rem;
}

/* Reference / důvěryhodnost */
.about {
    padding: 100px 0;
    background-color: #F9F9F9;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.benefits-list {
    list-style: none;
    margin-top: 30px;
}

.benefits-list li {
    padding: 15px 0;
    font-size: 1.1rem;
    position: relative;
    padding-left: 30px;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #B7410E;
    font-weight: bold;
    font-size: 1.2rem;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Kontakt */
.contact {
    padding: 100px 0;
    background-color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.company-info h3 {
    color: #B7410E;
    font-size: 2rem;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.info-item .label {
    font-weight: 600;
    margin-right: 10px;
    min-width: 50px;
}

.contact-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.info-item a {
    color: #B7410E;
    text-decoration: none;
}

.info-item a:hover {
    text-decoration: underline;
}

.registry-link {
    color: #666666 !important;
    font-size: 0.9rem;
}

/* Formulář */
.contact-form {
    background: #F9F9F9;
    padding: 40px;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E5E5E5;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #B7410E;
}

/* Honeypot - skrytý pro uživatele, viditelný pro boty */
.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

/* Captcha styling */
.captcha-group {
    background: #F0F0F0;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #E5E5E5;
}

.captcha-group label {
    color: #B7410E;
    font-weight: 600;
}

#captcha-question {
    font-weight: 700;
    color: #333333;
}

.submit-button {
    background-color: #B7410E;
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background-color: #9A3508;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background-color: #F9F9F9;
    padding: 20px 0;
    border-top: 1px solid #E5E5E5;
}

.footer-credit {
    text-align: center;
    font-size: 0.9rem;
    color: #999999;
    margin: 0;
}

.footer-credit a {
    color: #B7410E;
    text-decoration: none;
    font-weight: 500;
}

.footer-credit a:hover {
    text-decoration: underline;
}

/* Responzivní design */
@media (max-width: 768px) {
    .hero .container,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero {
        padding: 60px 0;
        text-align: center;
    }

    .hero-image img {
        height: auto;
        object-fit: contain;
    }

    .scroll-indicator {
        display: none;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services,
    .about,
    .contact {
        padding: 60px 0;
    }
}
