/* Modern Contact Page Styles */
.kontakt-container {
    min-height: 100vh;
    background: white;
}

.hero-section {
    text-align: center;
    padding: 100px 20px 80px;
    background: linear-gradient(135deg, var(--zbarva) 0%, var(--hbarva) 100%);
    color: white;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 30px 30px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="white" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-section h1 {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.hero-section p {
    font-size: 1.4rem;
    font-weight: 300;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.kontakt-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px 100px;
}

.kontakt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Kontaktní informace */
.kontakt-info h2,
.kontakt-form h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--bold);
    margin-bottom: 40px;
    letter-spacing: -0.01em;
}

.kontakt-blok {
    display: flex;
    align-items: flex-start;
    margin-bottom: 32px;
    padding: 24px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.06);
}

.kontakt-blok:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.kontakt-icon {
    width: 50px;
    height: 50px;
    background: var(--modra_pozadi);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--modra_hlavni);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.kontakt-blok:hover .kontakt-icon {
    background: var(--modra_hlavni);
    color: white;
    transform: scale(1.1);
}

.kontakt-text h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--bold);
    margin-bottom: 8px;
}

.kontakt-text p {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.6;
    margin: 0;
}

.kontakt-text a {
    color: var(--zbarva);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.kontakt-text a:hover {
    color: var(--hbarva);
}

/* Sociální sítě */
.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link.facebook {
    background: #1877f2;
    color: white;
    border-color: #1877f2;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-link.youtube {
    background: #ff0000;
    color: white;
    border-color: #ff0000;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Foto v levém sloupci */
.kontakt-info .kontakt-foto {
    text-align: center;
    margin-bottom: 30px;
}

.kontakt-info .foto-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.kontakt-info .foto-img:hover {
    transform: scale(1.02);
}

/* Pravý sloupec - provozovna */
.kontakt-extra {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.firma-info h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--bold);
    margin-bottom: 30px;
    letter-spacing: -0.01em;
}

/* Kompaktní blok pro identifikační údaje */
.kontakt-blok.kompaktni {
    padding: 20px;
    margin-bottom: 20px;
}

.kontakt-blok.kompaktni .kontakt-text p {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Poznámka o flexibilních službách */
.poznamka {
    background: var(--modra_pozadi);
    border: 1px solid var(--modra_ramecek);
    border-radius: 12px;
    padding: 16px;
    margin-top: 20px;
}

.poznamka p {
    font-size: 0.9rem;
    color: var(--modra_hlavni);
    margin: 0;
    line-height: 1.5;
}

/* Animace při načítání */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.kontakt-blok {
    animation: slideInUp 0.6s ease-out forwards;
}

.kontakt-blok:nth-child(1) { animation-delay: 0.1s; }
.kontakt-blok:nth-child(2) { animation-delay: 0.2s; }
.kontakt-blok:nth-child(3) { animation-delay: 0.3s; }
.kontakt-blok:nth-child(4) { animation-delay: 0.4s; }
.kontakt-blok:nth-child(5) { animation-delay: 0.5s; }

.kontakt-form {
    animation: slideInUp 0.6s ease-out forwards;
    animation-delay: 0.3s;
}

/* Responsivní design */
@media (max-width: 1024px) {
    .kontakt-content {
        padding: 0 30px 80px;
    }
    
    .kontakt-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 20px 60px;
    }
    
    .hero-section h1 {
        font-size: 2.8rem;
    }
    
    .hero-section p {
        font-size: 1.2rem;
    }
    
    .kontakt-content {
        padding: 0 20px 60px;
    }
    
    .kontakt-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .kontakt-form {
        padding: 30px;
    }
    
    .kontakt-info h2,
    .kontakt-form h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .kontakt-blok {
        padding: 20px;
        margin-bottom: 24px;
    }
    
    .kontakt-icon {
        width: 45px;
        height: 45px;
        margin-right: 16px;
    }
    
    .social-links {
        flex-direction: column;
        gap: 8px;
    }
    
    .social-link {
        display: block;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 60px 15px 40px;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .hero-section p {
        font-size: 1.1rem;
    }
    
    .kontakt-content {
        padding: 0 15px 50px;
    }
    
    .kontakt-form {
        padding: 25px;
    }
    
    .kontakt-blok {
        padding: 18px;
        flex-direction: column;
        text-align: center;
    }
    
    .kontakt-icon {
        margin-right: 0;
        margin-bottom: 12px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 14px;
    }
    
    .submit-btn {
        padding: 14px 20px;
        font-size: 1rem;
    }
}
