:root {
    --accent-color: #8B4513;
}

.profile-section {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    margin-top: -50px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.profile-image-container {
    max-width: 85%;
    margin: 0 auto;
}

.profile-image {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 1rem;
}

.text-section {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-top: 1rem;
    text-align: left;
    line-height: 1.6;
}

.dog-subtitle {
    font-size: 1.8rem;
    opacity: 0.95;
}

/* Nové styly */
.section-title {
    color: var(--accent-color);
    margin-bottom: 1.2rem;
    font-weight: 600;
    border-bottom: 2px solid #f0e6dd;
    padding-bottom: 0.5rem;
}

.parents-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.parents-image-container:hover {
    transform: scale(1.02);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
}

.parents-image-container:hover .image-overlay {
    opacity: 1;
}

.zoom-icon {
    color: white;
    font-size: 2rem;
    background-color: rgba(0,0,0,0.3);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.parent-link {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.parent-link:hover {
    text-decoration: underline;
}

.download-btn {
    background-color: var(--accent-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.download-btn:hover {
    background-color: #6b3009;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

@media (max-width: 992px) {
    .dog-subtitle {
        font-size: 1.3rem;
        max-width: 70%;
        margin: auto;
    }

    .parents-image-container {
        max-width: 90% !important;
    }
}
